cmsmacroresolver.java
来自「找了很久才找到到源代码」· Java 代码 · 共 827 行 · 第 1/3 页
JAVA
827 行
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/util/CmsMacroResolver.java,v $
* Date : $Date: 2007-08-13 16:29:55 $
* Version: $Revision: 1.22 $
*
* 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.util;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProperty;
import org.opencms.file.CmsResource;
import org.opencms.flex.CmsFlexController;
import org.opencms.i18n.CmsMessageContainer;
import org.opencms.i18n.CmsMessages;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.security.CmsOrganizationalUnit;
import java.util.Arrays;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import javax.servlet.jsp.PageContext;
import org.apache.commons.logging.Log;
/**
* Resolves macros in the form of <code>%(key)</code> or <code>${key}</code> in an input String.<p>
*
* Starting with OpenCms 7.0, the preferred form of a macro is <code>%(key)</code>. This is to
* avoid conflicts / confusion with the JSP EL, which also uses the <code>${key}</code> syntax.<p>
*
* The macro names that can be resolved depend of the context objects provided to the resolver
* using the <code>set...</code> methods.<p>
*
* @author Alexander Kandzior
* @author Thomas Weckert
*
* @version $Revision: 1.22 $
*
* @since 6.0.0
*/
public class CmsMacroResolver implements I_CmsMacroResolver {
/** The prefix indicating that the key represents an OpenCms runtime attribute. */
public static final String KEY_ATTRIBUTE = "attribute.";
/** Key used to specify the description of the current organizational unit as macro value. */
public static final String KEY_CURRENT_ORGUNIT_DESCRIPTION = "currentou.description";
/** Key used to specify the full qualified name of the current organizational unit as macro value. */
public static final String KEY_CURRENT_ORGUNIT_FQN = "currentou.fqn";
/** Key used to specify the current time as macro value. */
public static final String KEY_CURRENT_TIME = "currenttime";
/** Key used to specify the city of the current user as macro value. */
public static final String KEY_CURRENT_USER_CITY = "currentuser.city";
/** Key used to specify the country of the current user as macro value. */
public static final String KEY_CURRENT_USER_COUNTRY = "currentuser.country";
/** Key used to specify the display name of the current user as macro value. */
public static final String KEY_CURRENT_USER_DISPLAYNAME = "currentuser.displayname";
/** Key used to specify the email address of the current user as macro value. */
public static final String KEY_CURRENT_USER_EMAIL = "currentuser.email";
/** Key used to specify the first name of the current user as macro value. */
public static final String KEY_CURRENT_USER_FIRSTNAME = "currentuser.firstname";
/** Key used to specify the full name of the current user as macro value. */
public static final String KEY_CURRENT_USER_FULLNAME = "currentuser.fullname";
/** Key used to specify the last login date of the current user as macro value. */
public static final String KEY_CURRENT_USER_LASTLOGIN = "currentuser.lastlogin";
/** Key used to specify the last name of the current user as macro value. */
public static final String KEY_CURRENT_USER_LASTNAME = "currentuser.lastname";
/** Key used to specify the username of the current user as macro value. */
public static final String KEY_CURRENT_USER_NAME = "currentuser.name";
/** Key used to specify the street of the current user as macro value. */
public static final String KEY_CURRENT_USER_STREET = "currentuser.street";
/** Key used to specify the zip code of the current user as macro value. */
public static final String KEY_CURRENT_USER_ZIP = "currentuser.zip";
/** Key prefix used to specify the value of a localized key as macro value. */
public static final String KEY_LOCALIZED_PREFIX = "key.";
/** Identifier for "magic" parameter names. */
public static final String KEY_OPENCMS = "opencms.";
/** The prefix indicating that the key represents a page context object. */
public static final String KEY_PAGE_CONTEXT = "pageContext.";
/** Key used to specifiy the project id as macro value. */
public static final String KEY_PROJECT_ID = "projectid";
/** The prefix indicating that the key represents a Cms property to be read on the current request URI. */
public static final String KEY_PROPERTY = "property.";
/** The prefix indicating that the key represents a Cms property to be read on the current element. */
public static final String KEY_PROPERTY_ELEMENT = "elementProperty.";
/** Key used to specify the request encoding as macro value. */
public static final String KEY_REQUEST_ENCODING = "request.encoding";
/** Key used to specify the folder of the request uri as macro value. */
public static final String KEY_REQUEST_FOLDER = "request.folder";
/** Key user to specify the request locale as macro value. */
public static final String KEY_REQUEST_LOCALE = "request.locale";
/** The prefix indicating that the key represents a Http request parameter. */
public static final String KEY_REQUEST_PARAM = "param.";
/** Key used to specify the request uri as macro value. */
public static final String KEY_REQUEST_URI = "request.uri";
/** Key used to specify the validation path as macro value. */
public static final String KEY_VALIDATION_PATH = "validation.path";
/** Key used to specify the validation regex as macro value. */
public static final String KEY_VALIDATION_REGEX = "validation.regex";
/** Key used to specifiy the validation value as macro value. */
public static final String KEY_VALIDATION_VALUE = "validation.value";
/** Identified for "magic" parameter commands. */
static final String[] VALUE_NAMES_ARRAY = {"uri", "filename", "folder", "default.encoding", "remoteaddress"};
/** The "magic" commands wrapped in a List. */
public static final List VALUE_NAMES = Collections.unmodifiableList(Arrays.asList(VALUE_NAMES_ARRAY));
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsMacroResolver.class);
/** A map of additional values provided by the calling class. */
protected Map m_additionalMacros;
/** The OpenCms user context to use for resolving macros. */
protected CmsObject m_cms;
/** The JSP's page context to use for resolving macros. */
protected PageContext m_jspPageContext;
/** Indicates if unresolved macros should be kept "as is" or replaced by an empty String. */
protected boolean m_keepEmptyMacros;
/** The messages resource bundle to resolve localized keys with. */
protected CmsMessages m_messages;
/** The resource name to use for resolving macros. */
protected String m_resourceName;
/**
* Adds macro delimiters to the given input,
* for example <code>key</code> becomes <code>%(key)</code>.<p>
*
* @param input the input to format as a macro
*
* @return the input formatted as a macro
*/
public static String formatMacro(String input) {
StringBuffer result = new StringBuffer(input.length() + 4);
result.append(I_CmsMacroResolver.MACRO_DELIMITER);
result.append(I_CmsMacroResolver.MACRO_START);
result.append(input);
result.append(I_CmsMacroResolver.MACRO_END);
return result.toString();
}
/**
* Returns <code>true</code> if the given input String if formatted like a macro,
* that is it starts with <code>{@link I_CmsMacroResolver#MACRO_DELIMITER_OLD} +
* {@link I_CmsMacroResolver#MACRO_START_OLD}</code> and ends with
* <code>{@link I_CmsMacroResolver#MACRO_END_OLD}</code>.<p>
*
* @param input the input to check for a macro
* @return <code>true</code> if the given input String if formatted like a macro
*/
public static boolean isMacro(String input) {
if (CmsStringUtil.isEmpty(input) || (input.length() < 3)) {
return false;
}
return (((input.charAt(0) == I_CmsMacroResolver.MACRO_DELIMITER_OLD) && ((input.charAt(1) == I_CmsMacroResolver.MACRO_START_OLD) && (input.charAt(input.length() - 1) == I_CmsMacroResolver.MACRO_END_OLD))) || ((input.charAt(0) == I_CmsMacroResolver.MACRO_DELIMITER) && ((input.charAt(1) == I_CmsMacroResolver.MACRO_START) && (input.charAt(input.length() - 1) == I_CmsMacroResolver.MACRO_END))));
}
/**
* Returns <code>true</code> if the given input String is a macro equal to the given macro name.<p>
*
* @param input the input to check for a macro
* @param macroName the macro name to check for
*
* @return <code>true</code> if the given input String is a macro equal to the given macro name
*/
public static boolean isMacro(String input, String macroName) {
if (isMacro(input)) {
return input.substring(2, input.length() - 1).equals(macroName);
}
return false;
}
/**
* Returns a macro for the given localization key with the given parameters.<p>
*
* @param keyName the name of the localized key
* @param params the optional parameter array
*
* @return a macro for the given localization key with the given parameters
*/
public static String localizedKeyMacro(String keyName, Object[] params) {
String parameters = "";
if ((params != null) && (params.length > 0)) {
for (int i = 0; i < params.length; i++) {
if (params[i] != null) {
parameters += "|" + params[i].toString();
}
}
}
return ""
+ I_CmsMacroResolver.MACRO_DELIMITER
+ I_CmsMacroResolver.MACRO_START
+ CmsMacroResolver.KEY_LOCALIZED_PREFIX
+ keyName
+ parameters
+ I_CmsMacroResolver.MACRO_END;
}
/**
* Factory method to create a new {@link CmsMacroResolver} instance.<p>
*
* @return a new instance of a {@link CmsMacroResolver}
*/
public static CmsMacroResolver newInstance() {
return new CmsMacroResolver();
}
/**
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?