org.opencms.widgets.CmsMultiSelectGroupWidget Maven / Gradle / Ivy
Show all versions of opencms-core Show documentation
/*
* File : $Source: /home/cvs/OpenCms-v8/src/org/opencms/widgets/CmsSelectGroupWidget.java,v $
* Date : $Date: 2010-07-23 08:29:34 $
* Version: $Revision: 1.1 $
*
* This library is part of OpenCms -
* the Open Source Content Management System
*
* Copyright (C) 2002 - 2009 Alkacon Software (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, 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.widgets;
import org.opencms.file.CmsGroup;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsResource;
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 org.opencms.util.CmsMacroResolver;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsWorkplace;
import org.opencms.xml.types.A_CmsXmlContentValue;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.regex.Pattern;
import java.util.regex.PatternSyntaxException;
import org.apache.commons.logging.Log;
/**
* Provides a widget for group selection multi select boxes.
*
* This widget is configurable with the following options:
*
* groupfilter
: regular expression to filter available groups
* groups
: comma separated list of group names to show in the select box. Note:
* if this configuration option if used,
* groupfilter
and includesubous
are not considered anymore.
* includesubous
: boolean flag to indicate if sub OUs should be scanned for groups to select
* oufqn
: the fully qualified name of the OU to read the groups from
* fullnames
: boolean flag to indicate whether the full names of groups (including organizational unit) should be shown
*
* To map the selected group to a permission to set, use the following mapping configuration:
* <mapping element="..." mapto="permission:GROUP:+r+v|GROUP.ALL_OTHERS:|GROUP.Projectmanagers:+r+v+w+c" />
* This means that the +r+v permission is written for the principal GROUP
on the resource.
* Additionally two permissions are written as default: for ALL_OTHERS
, no allowed permission is set,
* for Projectmanagers
, "+r+v+w+c" is set.
*
* @author Mario Jaeger
*
* @version $Revision: 1.1 $
*
* @since 8.0.2
*/
public class CmsMultiSelectGroupWidget extends CmsSelectGroupWidget {
/** Configuration parameter name to use all available groups as default. */
public static final String CONFIGURATION_DEFAULT_ALL = "defaultall";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsMultiSelectGroupWidget.class);
/** Indicates if used html code is a multi selection list or a list of checkboxes. */
private boolean m_asCheckBoxes;
/** Flag indicating if to use all available groups as default. */
private boolean m_defaultAllAvailable;
/** Indicates if sub OUs should be included when reading the groups. */
private boolean m_includeSubOus;
/** The fully qualified name of the OU to read the groups from. */
private String m_ouFqn;
/** Flag to indicate if the multi-select needs to be activated by a check box. */
private boolean m_requiresActivation;
/** If true, show full group names (with OU) in the widget, and simple names otherwise. */
private boolean m_useFullNames;
/** Configuration option to show full group names including OU.*/
protected static final String CONFIGURATION_FULLNAMES = "fullnames";
/**
* Creates a new group select widget.
*/
public CmsMultiSelectGroupWidget() {
// empty constructor is required for class registration
super();
}
/**
* Creates a group select widget with the specified select options.
*
* @param configuration the configuration (possible options) for the group select box
*/
public CmsMultiSelectGroupWidget(String configuration) {
super(configuration);
}
/**
* Creates a select widget with the select options specified in the given configuration List.
*
* The list elements must be of type {@link CmsSelectWidgetOption}
.
*
* @param configuration the configuration (possible options) for the select widget
* @param asCheckboxes indicates if used html code is a multi selection list or a list of checkboxes
*
* @see CmsSelectWidgetOption
*/
public CmsMultiSelectGroupWidget(String configuration, boolean asCheckboxes) {
super(configuration);
m_asCheckBoxes = asCheckboxes;
}
/**
* @see org.opencms.widgets.I_CmsADEWidget#getConfiguration(org.opencms.file.CmsObject, org.opencms.xml.types.A_CmsXmlContentValue, org.opencms.i18n.CmsMessages, org.opencms.file.CmsResource, java.util.Locale)
*/
@Override
public String getConfiguration(
CmsObject cms,
A_CmsXmlContentValue schemaType,
CmsMessages messages,
CmsResource resource,
Locale contentLocale) {
String result = "";
CmsDummyWidgetDialog widgetDialog = new CmsDummyWidgetDialog(schemaType.getLocale(), messages);
widgetDialog.setResource(resource);
List options = parseSelectOptions(cms, widgetDialog, schemaType);
Iterator it = options.iterator();
int i = 0;
while (it.hasNext()) {
CmsSelectWidgetOption option = it.next();
if (i > 0) {
result += "|";
}
result += option.toString();
i++;
}
if (m_requiresActivation) {
result += "|" + CmsMultiSelectWidget.CONFIGURATION_REQUIRES_ACTIVATION;
}
return result;
}
/**
* @see org.opencms.widgets.I_CmsWidget#getDialogIncludes(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog)
*/
@Override
public String getDialogIncludes(CmsObject cms, I_CmsWidgetDialog widgetDialog) {
return getJSIncludeFile(CmsWorkplace.getSkinUri() + "components/widgets/multiselector.js");
}
/**
* @see org.opencms.widgets.I_CmsWidget#getDialogWidget(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
*/
@Override
public String getDialogWidget(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) {
String id = param.getId();
StringBuffer result = new StringBuffer(16);
String height = getHeight();
List options = parseSelectOptions(cms, widgetDialog.getMessages(), param);
result.append("");
// the configured select widget height start element
if (m_asCheckBoxes && CmsStringUtil.isNotEmptyOrWhitespaceOnly(height)) {
result.append("");
}
if (!m_asCheckBoxes) {
if (m_requiresActivation) {
result.append(
"");
result.append(" ");
// adding hidden input with the current value, because disabled select box value won't be submitted
result.append("");
id = "display" + id;
}
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(height)) {
result.append("");
}
// the configured select widget height end element
if (m_asCheckBoxes && CmsStringUtil.isNotEmptyOrWhitespaceOnly(height)) {
result.append("");
}
result.append(" ");
return result.toString();
}
/**
* @see org.opencms.widgets.I_CmsADEWidget#getWidgetName()
*/
@Override
public String getWidgetName() {
return CmsMultiSelectGroupWidget.class.getName();
}
/**
* @see org.opencms.widgets.I_CmsWidget#newInstance()
*/
@Override
public I_CmsWidget newInstance() {
return new CmsMultiSelectGroupWidget(getConfiguration());
}
/**
* @see org.opencms.widgets.A_CmsWidget#setConfiguration(java.lang.String)
*/
@Override
public void setConfiguration(String configuration) {
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(configuration)) {
int asCheckBoxesIndex = configuration.indexOf(CmsMultiSelectWidget.CONFIGURATION_ASCHECKBOXES);
if (asCheckBoxesIndex != -1) {
// the height is set
String asCheckBoxes = configuration.substring(
asCheckBoxesIndex + CmsMultiSelectWidget.CONFIGURATION_ASCHECKBOXES.length() + 1);
if (asCheckBoxes.indexOf('|') != -1) {
// cut eventual following configuration values
asCheckBoxes = asCheckBoxes.substring(0, asCheckBoxes.indexOf('|'));
}
m_asCheckBoxes = Boolean.parseBoolean(asCheckBoxes);
}
int reqiresActivationIndex = configuration.indexOf(CmsMultiSelectWidget.CONFIGURATION_REQUIRES_ACTIVATION);
if (reqiresActivationIndex != -1) {
// the height is set
String requiresActivation = configuration.substring(
reqiresActivationIndex + CmsMultiSelectWidget.CONFIGURATION_REQUIRES_ACTIVATION.length() + 1);
if (requiresActivation.indexOf('|') != -1) {
// cut eventual following configuration values
requiresActivation = requiresActivation.substring(0, requiresActivation.indexOf('|'));
}
m_requiresActivation = Boolean.parseBoolean(requiresActivation);
}
}
super.setConfiguration(configuration);
}
/**
* @see org.opencms.widgets.A_CmsWidget#setEditorValue(org.opencms.file.CmsObject, java.util.Map, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
*/
@Override
public void setEditorValue(
CmsObject cms,
Map formParameters,
I_CmsWidgetDialog widgetDialog,
I_CmsWidgetParameter param) {
CmsMultiSelectWidget.setMultiSelectEditorValue(cms, formParameters, widgetDialog, param);
}
/**
* @see org.opencms.widgets.CmsSelectGroupWidget#parseSelectOptions(org.opencms.file.CmsObject, org.opencms.i18n.CmsMessages, org.opencms.widgets.I_CmsWidgetParameter)
*/
@Override
protected List parseSelectOptions(
CmsObject cms,
CmsMessages messages,
I_CmsWidgetParameter param) {
// only create options if not already done
if (getSelectOptions() == null) {
// parse widget configuration
parseConfiguration(cms, messages);
List result = new ArrayList();
if (isUseGroupNames()) {
// a list of group names is configured, show them
for (Iterator i = getGroupNames().iterator(); i.hasNext();) {
String groupName = i.next();
try {
// ensure that only existing groups are available in the select box
CmsGroup group = cms.readGroup(getOuFqn() + groupName);
result.add(
new CmsSelectWidgetOption(group.getName(), m_defaultAllAvailable, getGroupLabel(group)));
} catch (CmsException e) {
// error reading the group by name, simply skip it
}
}
} else {
// read the groups from an optionally configured OU and filter them if configured
try {
List groups = OpenCms.getOrgUnitManager().getGroups(cms, getOuFqn(), isIncludeSubOus());
for (Iterator i = groups.iterator(); i.hasNext();) {
CmsGroup group = i.next();
if (isUseGroupFilter()) {
// check if group name matches the given regular expression
if (!getGroupFilter().matcher(group.getSimpleName()).matches()) {
continue;
}
}
result.add(
new CmsSelectWidgetOption(group.getName(), m_defaultAllAvailable, getGroupLabel(group)));
}
} catch (CmsException e) {
// error reading the groups
}
}
setSelectOptions(result);
}
return getSelectOptions();
}
/**
* @see org.opencms.widgets.A_CmsSelectWidget#parseSelectOptions(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
*/
@Override
protected List parseSelectOptions(
CmsObject cms,
I_CmsWidgetDialog widgetDialog,
I_CmsWidgetParameter param) {
return parseSelectOptions(cms, widgetDialog.getMessages(), param);
}
/**
* Returns the configured group filter to match groups to show in the select box.
*
* @return the configured group filter to match groups to show in the select box
*/
private Pattern getGroupFilter() {
return m_groupFilter;
}
/**
* Gets the label to show for a group.
*
* @param group a group available for selection
* @return the label to display to the user for the group
*/
private String getGroupLabel(CmsGroup group) {
return m_useFullNames ? group.getName() : group.getSimpleName();
}
/**
* Returns the configured group names to show in the select box.
*
* @return configured group names to show in the select box
*/
private List getGroupNames() {
return m_groupNames;
}
/**
* Returns the fully qualified name of the OU to read the groups from.
*
* @return the fully qualified name of the OU to read the groups from
*/
private String getOuFqn() {
return m_ouFqn;
}
/**
* Returns if sub OUs should be considered when filtering the groups.
*
* @return true
if sub OUs should be considered, otherwise false
*/
private boolean isIncludeSubOus() {
return m_includeSubOus;
}
/**
* Returns if a group filter is configured to match groups to show in the select box.
*
* @return true
if a group filter is configured, otherwise false
*/
private boolean isUseGroupFilter() {
return getGroupFilter() != null;
}
/**
* Returns if group names are configured to show in the select box.
*
* @return true
if group names are configured, otherwise false
*/
private boolean isUseGroupNames() {
return getGroupNames() != null;
}
/**
* Parses the widget configuration string.
*
* @param cms the current users OpenCms context
* @param widgetDialog the dialog of this widget
*/
private void parseConfiguration(CmsObject cms, CmsMessages widgetDialog) {
String configString = CmsMacroResolver.resolveMacros(getConfiguration(), cms, widgetDialog);
Map config = CmsStringUtil.splitAsMap(configString, "|", "=");
// get the list of group names to show
String groups = config.get(CONFIGURATION_GROUPS);
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(groups)) {
m_groupNames = CmsStringUtil.splitAsList(groups, ',', true);
}
// get the regular expression to filter the groups
String filter = config.get(CONFIGURATION_GROUPFILTER);
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(filter)) {
try {
m_groupFilter = Pattern.compile(filter);
} catch (PatternSyntaxException e) {
// log pattern syntax errors
LOG.error(Messages.get().getBundle().key(Messages.LOG_ERR_WIDGET_SELECTGROUP_PATTERN_1, filter));
}
}
// get the OU to read the groups from
m_ouFqn = config.get(CONFIGURATION_OUFQN);
if (CmsStringUtil.isEmptyOrWhitespaceOnly(m_ouFqn)) {
m_ouFqn = "";
} else if (!m_ouFqn.endsWith(CmsOrganizationalUnit.SEPARATOR)) {
m_ouFqn += CmsOrganizationalUnit.SEPARATOR;
}
m_useFullNames = Boolean.parseBoolean(config.get(CmsMultiSelectGroupWidget.CONFIGURATION_FULLNAMES));
// set the flag to include sub OUs
m_includeSubOus = Boolean.parseBoolean(config.get(CONFIGURATION_INCLUDESUBOUS));
m_defaultAllAvailable = Boolean.parseBoolean(config.get(CONFIGURATION_DEFAULT_ALL));
}
}