📄 cmschacc.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/commons/CmsChacc.java,v $
* Date : $Date: 2006/03/27 14:52:18 $
* Version: $Revision: 1.24 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (c) 2005 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.workplace.commons;
import org.opencms.file.CmsGroup;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.security.CmsAccessControlEntry;
import org.opencms.security.CmsAccessControlList;
import org.opencms.security.CmsPermissionSet;
import org.opencms.security.CmsRole;
import org.opencms.security.I_CmsPrincipal;
import org.opencms.util.CmsStringUtil;
import org.opencms.util.CmsUUID;
import org.opencms.workplace.CmsDialog;
import org.opencms.workplace.CmsWorkplaceSettings;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import java.util.Set;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.PageContext;
import org.apache.commons.logging.Log;
/**
* Provides methods for building the permission settings dialog.<p>
*
* The following files use this class:
* <ul>
* <li>/commons/chacc.jsp
* </ul>
* <p>
*
* @author Andreas Zahner
*
* @version $Revision: 1.24 $
*
* @since 6.0.0
*/
public class CmsChacc extends CmsDialog {
/** Value for the action: add an access control entry. */
public static final int ACTION_ADDACE = 300;
/** Value for the action: delete the permissions. */
public static final int ACTION_DELETE = 200;
/** Value for the action: set the internal use flag. */
public static final int ACTION_INTERNALUSE = 400;
/** Request parameter value for the action: add an access control entry. */
public static final String DIALOG_ADDACE = "addace";
/** Request parameter value for the action: delete the permissions. */
public static final String DIALOG_DELETE = "delete";
/** Request parameter value for the action: set the internal use flag. */
public static final String DIALOG_INTERNALUSE = "internaluse";
/** The dialog type. */
public static final String DIALOG_TYPE = "chacc";
/** Request parameter name for the inherit permissions parameter. */
public static final String PARAM_INHERIT = "inherit";
/** Request parameter name for the internal use only flag. */
public static final String PARAM_INTERNAL = "internal";
/** Request parameter name for the name parameter. */
public static final String PARAM_NAME = "name";
/** Request parameter name for the overwrite inherited permissions parameter. */
public static final String PARAM_OVERWRITEINHERITED = "overwriteinherited";
/** Request parameter name for the responsible parameter. */
public static final String PARAM_RESPONSIBLE = "responsible";
/** Request parameter name for the type parameter. */
public static final String PARAM_TYPE = "type";
/** Request parameter name for the view parameter. */
public static final String PARAM_VIEW = "view";
/** Constant for the request parameters suffix: allow. */
public static final String PERMISSION_ALLOW = "allow";
/** Constant for the request parameters suffix: deny. */
public static final String PERMISSION_DENY = "deny";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsChacc.class);
/** PermissionSet of the current user for the resource. */
private CmsPermissionSet m_curPermissions;
/** Indicates if forms are editable by current user. */
private boolean m_editable;
/** Stores eventual error message Strings. */
private ArrayList m_errorMessages = new ArrayList();
/** Indicates if inheritance flags are set as hidden fields for resource folders. */
private boolean m_inherit;
/** The name parameter. */
private String m_paramName;
/** The type parameter. */
private String m_paramType;
/** Stores all possible permission keys of a permission set. */
private Set m_permissionKeys = CmsPermissionSet.getPermissionKeys();
/** Marks if the inherited permissions information should be displayed. */
private boolean m_showInheritedPermissions;
/** The possible types of new access control entries. */
private String[] m_types = {I_CmsPrincipal.PRINCIPAL_GROUP, I_CmsPrincipal.PRINCIPAL_USER};
/** The possible type values of access control entries. */
private int[] m_typesInt = {CmsAccessControlEntry.ACCESS_FLAGS_GROUP, CmsAccessControlEntry.ACCESS_FLAGS_USER};
/** The possible localized types of new access control entries. */
private String[] m_typesLocalized = new String[2];
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsChacc(CmsJspActionElement jsp) {
super(jsp);
m_errorMessages.clear();
}
/**
* Public constructor with JSP variables.<p>
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsChacc(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
}
/**
* Adds a new access control entry to the resource.<p>
*
* @return true if a new ace was created, otherwise false
*/
public boolean actionAddAce() {
String file = getParamResource();
String name = getParamName();
String type = getParamType();
int arrayPosition = -1;
try {
arrayPosition = Integer.parseInt(type);
} catch (Exception e) {
// can usually be ignored
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage());
}
}
if (checkNewEntry(name, arrayPosition)) {
String permissionString = "";
if (getInheritOption() && getSettings().getUserSettings().getDialogPermissionsInheritOnFolder()) {
// inherit permissions on folders if setting is enabled
permissionString = "+i";
}
try {
// lock resource if autolock is enabled
checkLock(getParamResource());
getCms().chacc(file, getTypes()[arrayPosition], name, permissionString);
return true;
} catch (CmsException e) {
m_errorMessages.add(e.getMessage());
}
}
return false;
}
/**
* Modifies the Internal Use flag of a resource.<p>
* @param request the Http servlet request
*
* @return true if the operation was was successfully removed, otherwise false
*/
public boolean actionInternalUse(HttpServletRequest request) {
String internal = request.getParameter(PARAM_INTERNAL);
CmsResource resource;
boolean internalValue = false;
if (internal != null) {
internalValue = true;
}
try {
resource = getCms().readResource(getParamResource(), CmsResourceFilter.ALL);
int flags = resource.getFlags();
if (internalValue) {
if ((flags & CmsResource.FLAG_INTERNAL) == 0) {
flags += CmsResource.FLAG_INTERNAL;
}
} else {
if ((flags & CmsResource.FLAG_INTERNAL) > 0) {
flags -= CmsResource.FLAG_INTERNAL;
}
}
getCms().lockResource(getParamResource());
getCms().chflags(getParamResource(), flags);
} catch (CmsException e) {
m_errorMessages.add(key(Messages.ERR_MODIFY_INTERNAL_FLAG_0));
return false;
}
return true;
}
/**
* Modifies a present access control entry for a resource.<p>
*
* @param request the Http servlet request
* @return true if the modification worked, otherwise false
*/
public boolean actionModifyAce(HttpServletRequest request) {
String file = getParamResource();
// get request parameters
String name = getParamName();
String type = getParamType();
String inherit = request.getParameter(PARAM_INHERIT);
String overWriteInherited = request.getParameter(PARAM_OVERWRITEINHERITED);
String responsible = request.getParameter(PARAM_RESPONSIBLE);
// get the new permissions
Set permissionKeys = CmsPermissionSet.getPermissionKeys();
int allowValue = 0;
int denyValue = 0;
String key, param;
int value, paramInt;
Iterator i = permissionKeys.iterator();
// loop through all possible permissions
while (i.hasNext()) {
key = (String)i.next();
value = CmsPermissionSet.getPermissionValue(key);
// set the right allowed and denied permissions from request parameters
try {
param = request.getParameter(value + PERMISSION_ALLOW);
paramInt = Integer.parseInt(param);
allowValue |= paramInt;
} catch (Exception e) {
// can usually be ignored
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage());
}
}
try {
param = request.getParameter(value + PERMISSION_DENY);
paramInt = Integer.parseInt(param);
denyValue |= paramInt;
} catch (Exception e) {
// can usually be ignored
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage());
}
}
}
// get the current Ace to get the current ace flags
try {
List allEntries = getCms().getAccessControlEntries(file, false);
int flags = 0;
for (int k = 0; k < allEntries.size(); k++) {
CmsAccessControlEntry curEntry = (CmsAccessControlEntry)allEntries.get(k);
String curType = getEntryType(curEntry.getFlags());
String curName = getCms().lookupPrincipal(curEntry.getPrincipal()).getName();
if (curName.equals(name) && curType.equals(type)) {
flags = curEntry.getFlags();
break;
}
}
// modify the ace flags to determine inheritance of the current ace
if (Boolean.valueOf(inherit).booleanValue()) {
flags |= CmsAccessControlEntry.ACCESS_FLAGS_INHERIT;
} else {
flags &= ~CmsAccessControlEntry.ACCESS_FLAGS_INHERIT;
}
// modify the ace flags to determine overwriting of inherited ace
if (Boolean.valueOf(overWriteInherited).booleanValue()) {
flags |= CmsAccessControlEntry.ACCESS_FLAGS_OVERWRITE;
} else {
flags &= ~CmsAccessControlEntry.ACCESS_FLAGS_OVERWRITE;
}
if (Boolean.valueOf(responsible).booleanValue()) {
flags |= CmsAccessControlEntry.ACCESS_FLAGS_RESPONSIBLE;
} else {
flags &= ~CmsAccessControlEntry.ACCESS_FLAGS_RESPONSIBLE;
}
// lock resource if autolock is enabled
checkLock(getParamResource());
// try to change the access entry
getCms().chacc(file, type, name, allowValue, denyValue, flags);
return true;
} catch (CmsException e) {
m_errorMessages.add(key(Messages.ERR_CHACC_MODIFY_ENTRY_0));
return false;
}
}
/**
* Removes a present access control entry from the resource.<p>
*
* @return true if the ace was successfully removed, otherwise false
*/
public boolean actionRemoveAce() {
String file = getParamResource();
String name = getParamName();
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -