org.opencms.flex.CmsFlexRequestKey Maven / Gradle / Ivy
Show all versions of opencms-core Show documentation
/*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (c) Alkacon Software GmbH & Co. KG (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 & Co. KG, 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.flex;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsRequestContext;
import org.opencms.jsp.util.CmsJspStandardContextBean;
import org.opencms.jsp.util.CmsJspStandardContextBean.TemplateBean;
import org.opencms.loader.CmsTemplateContextManager;
import org.opencms.loader.I_CmsResourceLoader;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.util.CmsCollectionsGenericWrapper;
import org.opencms.util.CmsRequestUtil;
import org.opencms.util.CmsUUID;
import java.util.Map;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import org.apache.commons.logging.Log;
/**
* Describes the caching behaviour (or caching options) for a Flex request.
*
* @since 6.0.0
*/
public class CmsFlexRequestKey {
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsFlexRequestKey.class);
/** The current container element. */
private String m_containerElement;
/** The request context this request was made in. */
private CmsRequestContext m_context;
/** The current detail view id. */
private CmsUUID m_detailViewId;
/** Stores the device this request was made with. */
private String m_device;
/** The (Flex) Http request this key was constructed for. */
private HttpServletRequest m_request;
/** The OpenCms resource that this key is used for. */
private String m_resource;
/**
* This constructor is used when building a cache key from a request.
*
* The request contains several data items that are neccessary to construct
* the output. These items are e.g. the Query-String, the requested resource,
* the current time etc. etc.
* All required items are saved in the constructed cache - key.
*
* @param req the request to construct the key for
* @param target the requested resource in the OpenCms VFS
* @param online must be true for an online resource, false for offline resources
*/
public CmsFlexRequestKey(HttpServletRequest req, String target, boolean online) {
// store the request
m_request = req;
// fetch the cms from the request
CmsObject cms = CmsFlexController.getCmsObject(req);
// store the request context
m_context = cms.getRequestContext();
// calculate the resource name
m_resource = CmsFlexCacheKey.getKeyName(m_context.addSiteRoot(target), online);
// calculate the device
m_device = OpenCms.getSystemInfo().getDeviceSelector().getDeviceType(req);
CmsJspStandardContextBean standardContext = CmsJspStandardContextBean.getInstance(req);
// get the current container element
String templateContextKey = "";
TemplateBean templateBean = (TemplateBean)(req.getAttribute(CmsTemplateContextManager.ATTR_TEMPLATE_BEAN));
if (templateBean != null) {
templateContextKey = templateBean.getName();
}
m_containerElement = standardContext.elementCachingHash() + "_tc_" + templateContextKey;
// get the current detail view id
m_detailViewId = standardContext.getDetailContentId();
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_FLEXREQUESTKEY_CREATED_NEW_KEY_1, m_resource));
}
}
/**
* Returns the request attributes.
*
* @return the request attributes
*/
public Map getAttributes() {
Map attrs = CmsRequestUtil.getAtrributeMap(m_request);
if (attrs.size() == 0) {
return null;
}
return attrs;
}
/**
* Returns the current container element.
*
* @return the current container element
*/
public String getContainerElement() {
return m_containerElement;
}
/**
* Returns the device.
*
* @return the device
*/
public String getDevice() {
return m_device;
}
/**
* Returns the element.
*
* @return the element
*/
public String getElement() {
return m_request.getParameter(I_CmsResourceLoader.PARAMETER_ELEMENT);
}
/**
* Returns the encoding.
*
* @return the encoding
*/
public String getEncoding() {
return m_context.getEncoding();
}
/**
* Returns the ip.
*
* @return the ip
*/
public String getIp() {
return m_context.getRemoteAddress();
}
/**
* Returns the locale.
*
* @return the locale
*/
public String getLocale() {
return m_context.getLocale().toString();
}
/**
* Returns the parameters.
*
* @return the parameters
*/
public Map getParams() {
// get the params
Map params = CmsCollectionsGenericWrapper.map(m_request.getParameterMap());
if (params.size() == 0) {
return null;
}
return params;
}
/**
* Returns the port.
*
* @return the port
*/
public Integer getPort() {
return new Integer(m_request.getServerPort());
}
/**
* Returns the resource.
*
* @return the resource
*/
public String getResource() {
return m_resource;
}
/**
* Returns the schemes.
*
* @return the schemes
*/
public String getScheme() {
return m_request.getScheme().toLowerCase();
}
/**
* Returns the the current users session, or null
if the current user
* has no session.
*
* @return the current users session, or null
if the current user has no session
*/
public HttpSession getSession() {
return m_request.getSession(false);
}
/**
* Returns the site root.
*
* @return the site root
*/
public String getSite() {
return m_context.getSiteRoot();
}
/**
* Returns the uri.
*
* @return the uri
*/
public String getUri() {
String uri = m_context.addSiteRoot(m_context.getUri());
if (m_detailViewId != null) {
uri += m_detailViewId.toString() + "/";
}
return uri;
}
/**
* Returns the user.
*
* @return the user
*/
public String getUser() {
return m_context.getCurrentUser().getName();
}
}