cmscontextinfo.java
来自「找了很久才找到到源代码」· Java 代码 · 共 537 行 · 第 1/2 页
JAVA
537 行
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/main/CmsContextInfo.java,v $
* Date : $Date: 2007-08-30 15:17:42 $
* Version: $Revision: 1.15 $
*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) 2002 - 2007 Alkacon Software GmbH (http://www.alkacon.com)
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* For further information about Alkacon Software GmbH, please see the
* company website: http://www.alkacon.com
*
* For further information about OpenCms, please see the
* project website: http://www.opencms.org
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
package org.opencms.main;
import org.opencms.file.CmsProject;
import org.opencms.file.CmsRequestContext;
import org.opencms.file.CmsUser;
import org.opencms.i18n.CmsEncoder;
import org.opencms.i18n.CmsLocaleManager;
import java.util.Locale;
/**
* Contains user information for automated creation of a
* {@link org.opencms.file.CmsRequestContext} during system runtime.<p>
*
* @version $Revision: 1.15 $
*
* @since 6.0.0
*/
public class CmsContextInfo {
/** Name of the http session attribute the request time is stored in. */
public static final String ATTRIBUTE_REQUEST_TIME = "__org.opencms.main.CmsContextInfo#m_requestTime";
/** Indicates the request time should always be the current time. */
public static final long CURRENT_TIME = -1L;
/** Localhost ip used in fallback cases. */
public static final String LOCALHOST = "127.0.0.1";
/** The encoding to create the context with. */
private String m_encoding;
/** Indicates if the configuration if this context info can still be changed or not. */
private boolean m_frozen;
/** The locale to create the context with. */
private Locale m_locale;
/** The locale name to create the context with. */
private String m_localeName;
/** The organizational unit to create the context with. */
private String m_ouFqn;
/** The project to create the context with. */
private CmsProject m_project;
/** The user name to create the context with. */
private String m_projectName;
/** The remote ip address to create the context with. */
private String m_remoteAddr;
/** The request URI to create the context with. */
private String m_requestedUri;
/** The time for the request, used for resource publication and expiration dates. */
private long m_requestTime;
/** The site root to create the context with. */
private String m_siteRoot;
/** The user to create the context with. */
private CmsUser m_user;
/** The user name to create the context with. */
private String m_userName;
/**
* Creates a new instance, initializing the variables with some reasonable default values.<p>
*
* The default values are:<dl>
* <dt>User name</dt><dd>(configured default guest user)</dd>
* <dt>Project name</dt><dd>Online</dd>
* <dt>Requested URI</dt><dd>/</dd>
* <dt>Site root</dt><dd>/</dd>
* <dt>Locale name</dt><dd>(configured default locale name)</dd>
* <dt>Encoding</dt><dd>(configured default system encoding)</dd>
* <dt>Remote address</dt><dd>127.0.0.1</dd>
* <dt>Organizational unit</dt><dd>/</dd>
* </dl><p>
*/
public CmsContextInfo() {
setUserName(OpenCms.getDefaultUsers().getUserGuest());
setProjectName(CmsProject.ONLINE_PROJECT_NAME);
setRequestedUri("/");
setSiteRoot("/");
setLocaleName(CmsLocaleManager.getDefaultLocale().toString());
setEncoding(OpenCms.getSystemInfo().getDefaultEncoding());
setRemoteAddr(CmsContextInfo.LOCALHOST);
setRequestTime(CURRENT_TIME);
setOuFqn("");
}
/**
* Creates a new instance with all context variables initialized from the given request context.<p>
*
* @param requestContext the request context to initialize this context info with
*/
public CmsContextInfo(CmsRequestContext requestContext) {
setUserName(requestContext.currentUser().getName());
setProjectName(requestContext.currentProject().getName());
setRequestedUri(requestContext.getUri());
setSiteRoot(requestContext.getSiteRoot());
setLocale(requestContext.getLocale());
setEncoding(requestContext.getEncoding());
setRemoteAddr(requestContext.getRemoteAddress());
setRequestTime(requestContext.getRequestTime());
setOuFqn(requestContext.getOuFqn());
}
/**
* Creates a new instance with all context variables initialized.<p>
*
* @param user the user to create the context with
* @param project the project to create the context with
* @param requestedUri the request URI to create the context with
* @param siteRoot the site root to create the context with
* @param locale the locale to create the context with
* @param encoding the encoding to create the context with
* @param remoteAddr the remote ip address to create the context with
* @param requestTime the time of the request (used for resource publication / expiration date)
* @param ouFqn the fully qualified name of the organizational unit to create the context with
*/
public CmsContextInfo(
CmsUser user,
CmsProject project,
String requestedUri,
String siteRoot,
Locale locale,
String encoding,
String remoteAddr,
long requestTime,
String ouFqn) {
m_user = user;
setUserName(m_user.getName());
m_project = project;
setProjectName(m_project.getName());
setRequestedUri(requestedUri);
setSiteRoot(siteRoot);
setLocale(locale);
setEncoding(encoding);
setRemoteAddr(remoteAddr);
setRequestTime(requestTime);
setOuFqn(ouFqn);
}
/**
* Creates a new instance, initializing the user name as provided and
* all other vaiables with the same default values as in {@link #CmsContextInfo()}.<p>
*
* @param userName the user name to create the context with
*
* @see #CmsContextInfo()
*/
public CmsContextInfo(String userName) {
this();
setUserName(userName);
}
/**
* Creates a clone of this context info object.<p>
*
* @see java.lang.Object#clone()
*/
public Object clone() {
CmsContextInfo result = new CmsContextInfo();
result.m_encoding = m_encoding;
result.m_frozen = false;
result.m_locale = m_locale;
result.m_localeName = m_localeName;
result.m_project = m_project;
result.m_projectName = m_projectName;
result.m_remoteAddr = m_remoteAddr;
result.m_requestedUri = m_requestedUri;
result.m_requestTime = m_requestTime;
result.m_siteRoot = m_siteRoot;
result.m_user = m_user;
result.m_userName = m_userName;
return result;
}
/**
* Finalizes (freezes) the configuration of this context information.<p>
*
* After this entry has been frozen, any attempt to change the
* configuration of this context info with one of the "set..." methods
* will lead to a <code>RuntimeException</code>.<p>
*/
public void freeze() {
m_frozen = true;
}
/**
* Returns the encoding.<p>
*
* @return the encoding
*
* @see CmsRequestContext#getEncoding()
*/
public String getEncoding() {
return m_encoding;
}
/**
* Returns the locale.<p>
*
* @return the locale
*
* @see CmsRequestContext#getLocale()
*/
public Locale getLocale() {
return m_locale;
}
/**
* Returns the locale name.<p>
*
* @return the locale name
*
* @see CmsRequestContext#getLocale()
*/
public String getLocaleName() {
return m_localeName;
}
/**
* Returns the fully qualified name of the organizational unit.<p>
*
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?