cmsexplorertypesettings.java
来自「找了很久才找到到源代码」· Java 代码 · 共 770 行 · 第 1/2 页
JAVA
770 行
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/explorer/CmsExplorerTypeSettings.java,v $
* Date : $Date: 2007-08-13 16:29:41 $
* Version: $Revision: 1.19 $
*
* 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.workplace.explorer;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsResource;
import org.opencms.i18n.CmsMessages;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.security.CmsPermissionSet;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsWorkplaceManager;
import java.util.ArrayList;
import java.util.List;
import org.apache.commons.logging.Log;
/**
* Holds all information to build the explorer context menu of a resource type
* and information for the new resource dialog.<p>
*
* Objects of this type are sorted by their order value which specifies the order
* in the new resource dialog.<p>
*
* @author Andreas Zahner
*
* @version $Revision: 1.19 $
*
* @since 6.0.0
*/
public class CmsExplorerTypeSettings implements Comparable {
/** The default order start value for context menu entries. */
public static final int ORDER_VALUE_DEFAULT_START = 100000;
/** The default order value for context menu separator entries without order attribute. */
public static final String ORDER_VALUE_SEPARATOR_DEFAULT = "999999";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsExplorerTypeSettings.class);
private CmsExplorerTypeAccess m_access;
/** Flag for showing that this is an additional resource type which defined in a module. */
private boolean m_addititionalModuleExplorerType;
private boolean m_autoSetNavigation;
private boolean m_autoSetTitle;
private CmsExplorerContextMenu m_contextMenu;
private List m_contextMenuEntries;
private String m_descriptionImage;
private boolean m_hasEditOptions;
private String m_icon;
private String m_info;
private String m_key;
private String m_name;
/** Optional class name for a new resource handler. */
private String m_newResourceHandlerClassName;
private Integer m_newResourceOrder;
private String m_newResourcePage;
private String m_newResourceUri;
private List m_properties;
private boolean m_propertiesEnabled;
private String m_reference;
private boolean m_showNavigation;
private String m_titleKey;
/**
* Default constructor.<p>
*/
public CmsExplorerTypeSettings() {
m_access = new CmsExplorerTypeAccess();
m_properties = new ArrayList();
m_contextMenuEntries = new ArrayList();
m_contextMenu = new CmsExplorerContextMenu();
m_hasEditOptions = false;
m_propertiesEnabled = false;
m_showNavigation = false;
m_addititionalModuleExplorerType = false;
m_newResourceOrder = new Integer(0);
}
/**
* Adds a menu entry to the list of context menu items.<p>
*
* @param item the entry item to add to the list
*/
public void addContextMenuEntry(CmsExplorerContextMenuItem item) {
item.setType(CmsExplorerContextMenuItem.TYPE_ENTRY);
m_contextMenuEntries.add(item);
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_ADD_MENU_ENTRY_2, item.getKey(), item.getUri()));
}
}
/**
* Adds a menu separator to the list of context menu items.<p>
*
* @param item the separator item to add to the list
*/
public void addContextMenuSeparator(CmsExplorerContextMenuItem item) {
item.setType(CmsExplorerContextMenuItem.TYPE_SEPARATOR);
m_contextMenuEntries.add(item);
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_ADD_MENU_SEPARATOR_1, item.getType()));
}
}
/**
* Adds a property definition name to the list of editable properties.<p>
*
* @param propertyName the name of the property definition to add
* @return true if the property definition was added properly
*/
public boolean addProperty(String propertyName) {
if (CmsStringUtil.isNotEmptyOrWhitespaceOnly(propertyName)) {
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_ADD_PROP_1, propertyName));
}
return m_properties.add(propertyName);
} else {
return false;
}
}
/**
* @see java.lang.Comparable#compareTo(java.lang.Object)
*/
public int compareTo(Object obj) {
if (obj == this) {
return 0;
}
if (obj instanceof CmsExplorerTypeSettings) {
CmsExplorerTypeSettings other = (CmsExplorerTypeSettings)obj;
String myPage = getNewResourcePage();
String otherPage = other.getNewResourcePage();
if (CmsStringUtil.isEmptyOrWhitespaceOnly(myPage)) {
myPage = "";
}
if (CmsStringUtil.isEmptyOrWhitespaceOnly(otherPage)) {
otherPage = "";
}
int result = myPage.compareTo(otherPage);
if (result == 0) {
result = m_newResourceOrder.compareTo(other.m_newResourceOrder);
}
return result;
}
return 0;
}
/**
* Adds all context menu entries to the context menu object.<p>
*
* This method has to be called when all context menu entries have been
* added to the list of entries.<p>
*/
public void createContextMenu() {
m_contextMenu.addEntries(getContextMenuEntries());
if (LOG.isDebugEnabled()) {
LOG.debug(Messages.get().getBundle().key(Messages.LOG_CREATE_CONTEXT_MENU_1, getName()));
}
}
/**
* @see java.lang.Object#equals(java.lang.Object)
*/
public boolean equals(Object o) {
if (!(o instanceof CmsExplorerTypeSettings)) {
return false;
}
CmsExplorerTypeSettings other = (CmsExplorerTypeSettings)o;
return getName().equals(other.getName());
}
/**
* Gets the access object of the type settings.<p>
*
* @return access object of the type settings
*/
public CmsExplorerTypeAccess getAccess() {
if (m_access.isEmpty()) {
CmsWorkplaceManager workplaceManager = OpenCms.getWorkplaceManager();
if (workplaceManager != null) {
m_access = workplaceManager.getDefaultAccess();
}
}
return m_access;
}
/**
* Returns the context menu.<p>
* @return the context menu
*/
public CmsExplorerContextMenu getContextMenu() {
if ((m_reference != null) && (m_contextMenu.isEmpty())) {
m_contextMenu = (CmsExplorerContextMenu)OpenCms.getWorkplaceManager().getExplorerTypeSetting(m_reference).getContextMenu().clone();
}
return m_contextMenu;
}
/**
* Returns the list of context menu entries of the explorer type setting.<p>
*
* @return the list of context menu entries of the explorer type setting
*/
public List getContextMenuEntries() {
return m_contextMenuEntries;
}
/**
* Returns the descriptionImage.<p>
*
* @return the descriptionImage
*/
public String getDescriptionImage() {
return m_descriptionImage;
}
/**
* Returns the icon path and file name of the explorer type setting.<p>
*
* @return the icon path and file name of the explorer type setting
*/
public String getIcon() {
return m_icon;
}
/**
* Returns the info.<p>
*
* @return the info
*/
public String getInfo() {
return m_info;
}
/**
* Builds the Javascript to create the context menu.<p>
*
* @param settings the explorer type settings for which the context menu is created
* @param resTypeId the id of the resource type which uses the context menu
* @param messages the messages to generate the context menu with (should be the workplace messages)
*
* @return the JavaScript output to create the context menu
*/
public String getJSEntries(CmsExplorerTypeSettings settings, int resTypeId, CmsMessages messages) {
// entries not yet in Map, so generate them
StringBuffer result = new StringBuffer(4096);
// create the JS for the resource object
result.append("\nvi.resource[").append(resTypeId).append("]=new res(\"").append(settings.getName()).append(
"\", ");
result.append("\"");
result.append(messages.key(settings.getKey()));
result.append("\", vi.skinPath + \"filetypes/");
result.append(settings.getIcon());
result.append("\", \"");
result.append(settings.getNewResourceUri());
result.append("\", true);\n");
return result.toString();
}
/**
* Returns the key name of the explorer type setting.<p>
*
* @return the key name of the explorer type setting
*/
public String getKey() {
return m_key;
}
/**
* Returns the name of the explorer type setting.<p>
*
* @return the name of the explorer type setting
*/
public String getName() {
return m_name;
}
/**
* Returns the class name of the new resource handler used to create new resources of a specified resource type.<p>
*
* @return the class name of the new resource handler
*/
public String getNewResourceHandlerClassName() {
return m_newResourceHandlerClassName;
}
/**
* Returns the order for the new resource dialog of the explorer type setting.<p>
*
* @return the order for the new resource dialog of the explorer type setting
*/
public String getNewResourceOrder() {
return String.valueOf(m_newResourceOrder);
}
/**
* Returns the page.<p>
*
* @return the page
*/
public String getNewResourcePage() {
return m_newResourcePage;
}
/**
* Returns the URI for the new resource dialog of the explorer type setting.<p>
*
* @return the URI for the new resource dialog of the explorer type setting
*/
public String getNewResourceUri() {
return m_newResourceUri;
}
/**
* Returns the list of properties of the explorer type setting.<p>
* @return the list of properties of the explorer type setting
*/
public List getProperties() {
return m_properties;
}
/**
* Returns the reference of the explorer type setting.<p>
*
* @return the reference of the explorer type setting
*/
public String getReference() {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?