org.opencms.workplace.tools.content.CmsPropertyChange Maven / Gradle / Ivy
Show all versions of opencms-test 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.workplace.tools.content;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProperty;
import org.opencms.file.CmsPropertyDefinition;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.file.CmsVfsException;
import org.opencms.i18n.CmsEncoder;
import org.opencms.i18n.CmsMessages;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsDialog;
import org.opencms.workplace.CmsWorkplaceSettings;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
import org.apache.commons.logging.Log;
/**
* Provides methods for the change property values dialog.
*
* @since 6.0.0
*/
public class CmsPropertyChange extends CmsDialog {
/** Value for the action: show result. */
public static final int ACTION_SHOWRESULT = 100;
/** Request parameter value for the action: show result. */
public static final String DIALOG_SHOWRESULT = "showresult";
/** The dialog type. */
public static final String DIALOG_TYPE = "propertychange";
/** Request parameter name for the property name. */
public static final String PARAM_NEWVALUE = "newvalue";
/** Request parameter name for the property name. */
public static final String PARAM_OLDVALUE = "oldvalue";
/** Request parameter name for the property name. */
public static final String PARAM_PROPERTYNAME = "propertyname";
/** Request parameter name for the property name. */
public static final String PARAM_RECURSIVE = "recursive";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsPropertyChange.class);
private List m_changedResources;
/** The error message. */
private String m_errorMessage;
private String m_paramNewValue;
private String m_paramOldValue;
private String m_paramPropertyName;
private String m_paramRecursive;
private boolean m_validationErrors;
/**
* Public constructor with JSP action element.
*
* @param jsp an initialized JSP action element
*/
public CmsPropertyChange(CmsJspActionElement jsp) {
super(jsp);
}
/**
* Public constructor with JSP variables.
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsPropertyChange(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
}
/**
* Builds the html for the property definition select box.
*
* @param cms the CmsObject
* @param selectValue the localized value for the "Please select" option
* @param attributes optional attributes for the <select> tag
* @param selectedValue the value that is currently selected
* @return the html for the property definition select box
*/
public static String buildSelectProperty(
CmsObject cms,
String selectValue,
String attributes,
String selectedValue) {
List propertyDef = new ArrayList();
try {
// get all property definitions
propertyDef = cms.readAllPropertyDefinitions();
} catch (CmsException e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e);
}
}
int propertyCount = propertyDef.size();
List options = new ArrayList(propertyCount + 1);
List values = new ArrayList(propertyCount + 1);
options.add(CmsEncoder.escapeXml(selectValue));
values.add("");
int selectedIndex = 0;
int count = 1;
for (int i = 0; i < propertyCount; i++) {
// loop property definitions and get definition name
CmsPropertyDefinition currDef = (CmsPropertyDefinition)propertyDef.get(i);
if (currDef.getName().equals(selectedValue)) {
selectedIndex = count;
}
options.add(CmsEncoder.escapeXml(currDef.getName()));
values.add(CmsEncoder.escapeXml(currDef.getName()));
count += 1;
}
CmsDialog wp = new CmsDialog(null);
return wp.buildSelect(attributes, options, values, selectedIndex);
}
/**
* Changes the property values on the specified resources.
*
* @throws JspException if problems including sub-elements occur
*/
public void actionChange() throws JspException {
// save initialized instance of this class in request attribute for included sub-elements
getJsp().getRequest().setAttribute(SESSION_WORKPLACE_CLASS, this);
try {
boolean recursive = Boolean.valueOf(getParamRecursive()).booleanValue();
if (performChangeOperation(recursive)) {
// if no exception is caused and "true" is returned change property operation was successful
setAction(ACTION_SHOWRESULT);
} else {
// "false" returned, display "please wait" screen
getJsp().include(FILE_DIALOG_SCREEN_WAIT);
}
} catch (Throwable e) {
// error while changing property values, show error dialog
includeErrorpage(this, e);
}
}
/**
* Builds the html for the result list of resources where the property was changed.
*
* @return the html for the result list
*/
public String buildResultList() {
StringBuffer result = new StringBuffer(16);
if ((getChangedResources() != null) && (getChangedResources().size() > 0)) {
// at least one resource property value has been changed, show list
for (int i = 0; i < getChangedResources().size(); i++) {
CmsResource res = (CmsResource)getChangedResources().get(i);
String resName = getCms().getSitePath(res);
result.append(resName);
result.append("
\n");
}
} else {
// nothing was changed, show message
result.append(Messages.get().getBundle(getLocale()).key(Messages.GUI_INPUT_PROPERTYCHANGE_RESULT_NONE_0));
}
return result.toString();
}
/**
* Builds the html for the property definition select box.
*
* @param attributes optional attributes for the <select> tag
* @return the html for the property definition select box
*/
public String buildSelectProperty(String attributes) {
return buildSelectProperty(
getCms(),
Messages.get().getBundle(getLocale()).key(Messages.GUI_PLEASE_SELECT_0),
attributes,
getParamPropertyName());
}
/**
* Returns the error message.
*
* @return the error message
*/
public String getErrorMessage() {
if (CmsStringUtil.isEmpty(m_errorMessage)) {
return "";
}
return m_errorMessage;
}
/**
* Returns the value of the newvalue parameter.
*
* @return the value of the newvalue parameter
*/
public String getParamNewValue() {
if (m_paramNewValue != null) {
return m_paramNewValue;
} else {
return CmsProperty.DELETE_VALUE;
}
}
/**
* Returns the value of the oldvalue parametere.
*
* @return the value of the oldvalue parameter
*/
public String getParamOldValue() {
return m_paramOldValue;
}
/**
* Returns the value of the propertyname parameter.
*
* @return the value of the propertyname parameter
*/
public String getParamPropertyName() {
return m_paramPropertyName;
}
/**
* Returns the value of the recursive parameter.
*
* @return the value of the recursive parameter
*/
public String getParamRecursive() {
return m_paramRecursive;
}
/**
* Returns the height for the result list of changed resources.
*
* @return the height for the result list of changed resources
*/
public String getResultListHeight() {
if ((getChangedResources() != null) && (getChangedResources().size() > 0)) {
int height = getChangedResources().size() * 14;
if (height > 300) {
height = 300;
}
return "" + height;
} else {
return "14";
}
}
/**
* Returns if validation errors were found.
*
* @return true if validation errors were found, otherwise false
*/
public boolean hasValidationErrors() {
return m_validationErrors;
}
/**
* Sets the value of the newvalue parameter.
*
* @param paramNewValue the value of the newvalue parameter
*/
public void setParamNewValue(String paramNewValue) {
m_paramNewValue = paramNewValue;
}
/**
* Sets the value of the oldvalue parameter.
*
* @param paramOldValue the value of the oldvalue parameter
*/
public void setParamOldValue(String paramOldValue) {
m_paramOldValue = paramOldValue;
}
/**
* Sets the value of the propertyname parameter.
*
* @param paramPropertyName the value of the propertyname parameter
*/
public void setParamPropertyName(String paramPropertyName) {
m_paramPropertyName = paramPropertyName;
}
/**
* Sets the value of the recursive parameter.
*
* @param paramRecursive the value of the recursive parameter
*/
public void setParamRecursive(String paramRecursive) {
m_paramRecursive = paramRecursive;
}
/**
* @see org.opencms.workplace.CmsWorkplace#initWorkplaceRequestValues(org.opencms.workplace.CmsWorkplaceSettings, javax.servlet.http.HttpServletRequest)
*/
@Override
protected void initWorkplaceRequestValues(CmsWorkplaceSettings settings, HttpServletRequest request) {
// fill the parameter values in the get/set methods
fillParamValues(request);
// set the dialog type
setParamDialogtype(DIALOG_TYPE);
// set the action for the JSP switch
if (DIALOG_OK.equals(getParamAction())) {
if (validateParameters()) {
// all parameters are valid, proceed
setAction(ACTION_OK);
} else {
// validation error(s), redisplay form
setAction(ACTION_DEFAULT);
}
} else if (DIALOG_WAIT.equals(getParamAction())) {
setAction(ACTION_WAIT);
} else if (DIALOG_CANCEL.equals(getParamAction())) {
setAction(ACTION_CANCEL);
} else {
setAction(ACTION_DEFAULT);
// build title for change property value dialog
setParamTitle(Messages.get().getBundle(getLocale()).key(Messages.GUI_TITLE_PROPERTYCHANGE_0));
}
}
/**
* Sets the error message.
*
* @param errorMessage the error message to set
*/
protected void setErrorMessage(String errorMessage) {
m_errorMessage = errorMessage;
}
/**
* Sets the validation error flag.
*
* @param validationErrors the validation error flag, true if validation errors were found
*/
protected void setValidationErrors(boolean validationErrors) {
m_validationErrors = validationErrors;
}
/**
* Returns the changed resources that were affected by the property change action.
*
* @return the changed resources that were affected by the property change action
*/
private List getChangedResources() {
return m_changedResources;
}
/**
* Performs the main property change value operation on the resource property.
*
* @param recursive true, if the property value has to be changed recursively, otherwise false
* @return true, if the property values are changed successfully, otherwise false
* @throws CmsException if changing is not successful
*/
private boolean performChangeOperation(boolean recursive) throws CmsException {
// on recursive property changes display "please wait" screen
if (recursive && !DIALOG_WAIT.equals(getParamAction())) {
// return false, this will trigger the "please wait" screen
return false;
}
// lock the selected resource
checkLock(getParamResource());
// change the property values
List changedResources = null;
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(getParamOldValue())) {
changedResources = getCms().changeResourcesInFolderWithProperty(
getParamResource(),
getParamPropertyName(),
getParamOldValue(),
getParamNewValue(),
recursive);
} else {
changedResources = setPropertyInFolder(
getParamResource(),
getParamPropertyName(),
getParamNewValue(),
recursive);
}
setChangedResources(changedResources);
return true;
}
/**
* Sets the given property with the given value to the given resource
* (potentially recursiv) if it has not been set before.
*
* Returns a list with all sub resources that have been modified this way.
*
* @param resourceRootPath the resource on which property definition values are changed
* @param propertyDefinition the name of the propertydefinition to change the value
* @param newValue the new value of the propertydefinition
* @param recursive if true, change recursively all property values on sub-resources (only for folders)
*
* @return a list with the {@link CmsResource}
's where the property value has been changed
*
* @throws CmsVfsException for now only when the search for the oldvalue failed.
* @throws CmsException if operation was not successful
*/
private List setPropertyInFolder(
String resourceRootPath,
String propertyDefinition,
String newValue,
boolean recursive) throws CmsException, CmsVfsException {
CmsObject cms = getCms();
// collect the resources to look up
List resources = new ArrayList();
if (recursive) {
resources = cms.readResources(resourceRootPath, CmsResourceFilter.IGNORE_EXPIRATION);
} else {
resources.add(resourceRootPath);
}
List changedResources = new ArrayList(resources.size());
CmsProperty newProperty = new CmsProperty(propertyDefinition, null, null);
// create permission set and filter to check each resource
for (int i = 0; i < resources.size(); i++) {
// loop through found resources and check property values
CmsResource res = (CmsResource)resources.get(i);
CmsProperty property = cms.readPropertyObject(res, propertyDefinition, false);
if (property.isNullProperty()) {
// change structure value
newProperty.setStructureValue(newValue);
newProperty.setName(propertyDefinition);
cms.writePropertyObject(cms.getRequestContext().removeSiteRoot(res.getRootPath()), newProperty);
changedResources.add(res);
} else {
// nop
}
}
return changedResources;
}
/**
* Sets the changed resources that were affected by the property change action.
*
* @param changedResources the changed resources that were affected by the property change action
*/
private void setChangedResources(List changedResources) {
m_changedResources = changedResources;
}
/**
* Validates the submitted form parameters.
*
* If parameters are missing, a localized error message String is created.
*
* @return true if all parameters are correct, otherwise false
*
*/
private boolean validateParameters() {
boolean allOk = true;
StringBuffer validationErrors = new StringBuffer(32);
CmsMessages messages = Messages.get().getBundle(getLocale());
// check resource parameter presence
if (CmsStringUtil.isEmptyOrWhitespaceOnly(getParamResource()) || !getCms().existsResource(getParamResource())) {
allOk = false;
validationErrors.append(messages.key(Messages.GUI_PROP_CHANGE_VALIDATE_VFS_RESOURCE_0)).append("
");
}
// check selected property name
if (CmsStringUtil.isEmptyOrWhitespaceOnly(getParamPropertyName())) {
allOk = false;
validationErrors.append(messages.key(Messages.GUI_PROP_CHANGE_VALIDATE_SELECT_PROPERTY_0)).append("
");
}
// check old property value to look up
if (CmsStringUtil.isEmptyOrWhitespaceOnly(getParamOldValue())) {
allOk = false;
validationErrors.append(messages.key(Messages.GUI_PROP_CHANGE_VALIDATE_OLD_PROP_VALUE_0)).append("
");
} else {
try {
// check if there is a place holder in the expression pattern
// remove it here, because otherwise this is no valid expression pattern
String oldValue = getParamOldValue();
if (oldValue.contains(CmsStringUtil.PLACEHOLDER_START)
&& oldValue.contains(CmsStringUtil.PLACEHOLDER_END)) {
oldValue = oldValue.replace(CmsStringUtil.PLACEHOLDER_START, "");
oldValue = oldValue.replace(CmsStringUtil.PLACEHOLDER_END, "");
}
// compile regular expression pattern
Pattern.compile(oldValue);
} catch (PatternSyntaxException e) {
allOk = false;
validationErrors.append(messages.key(Messages.GUI_PROP_CHANGE_VALIDATE_OLD_PROP_PATTERN_0)).append(
"
");
}
}
// check new property value
if (CmsStringUtil.isEmptyOrWhitespaceOnly(getParamNewValue())) {
// if no new value was given, set it to the delete value
setParamNewValue(CmsProperty.DELETE_VALUE);
}
setErrorMessage(validationErrors.toString());
setValidationErrors(!allOk);
return allOk;
}
}