📄 cmshelpermastertemplates.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/workplace/CmsHelperMastertemplates.java,v $
* Date : $Date: 2003/01/20 23:59:20 $
* Version: $Revision: 1.10 $
*
* This library is part of OpenCms -
* the Open Source Content Mananagement System
*
* Copyright (C) 2001 The OpenCms Group
*
* 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 OpenCms, please see the
* OpenCms 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 com.opencms.workplace;
import com.opencms.core.CmsException;
import com.opencms.core.I_CmsConstants;
import com.opencms.file.CmsFile;
import com.opencms.file.CmsFolder;
import com.opencms.file.CmsGroup;
import com.opencms.file.CmsObject;
import com.opencms.file.CmsResource;
import com.opencms.util.Utils;
import java.util.Enumeration;
import java.util.Vector;
/**
* Helper class to receive all mastertemplates that are currently in the system.
* @version $Revision: 1.10 $ $Date: 2003/01/20 23:59:20 $
*/
public class CmsHelperMastertemplates {
/**
* Gets the templates displayed in the template select box.
* @param cms The CmsObject.
* @param names Will be filled with the display names of found the templates.
* @param values Will be filled with the file names of the found templates.
* @param currentTemplate The file name of the currently selected template.
* @return The index of the currently selected template and the vectors names and values, filled with the information
* about the available templates. The index refers to the vectors.
* @throws Throws CmsException if something goes wrong.
*/
public static Integer getTemplates(CmsObject cms, Vector names, Vector values, String currentTemplate) throws CmsException {
return getTemplates(cms, names, values, currentTemplate, 0);
}
/**
* Gets the templates displayed in the template select box.
* @param cms The CmsObject.
* @param names Will be filled with the display names of found the templates.
* @param values Will be filled with the file names of the found templates.
* @param currentTemplate The file name of the currently selected template.
* @param defaultReturnValue The index used if no currentTemplate was found.
* @return The index of the currently selected template and the vectors names and values, filled with the information
* about the available templates. The index refers to the vectors.
* @throws Throws CmsException if something goes wrong.
*/
public static Integer getTemplates(CmsObject cms, Vector names, Vector values, String currentTemplate, int defaultReturnValue) throws CmsException {
// first read the available templates from the VFS
getTemplateElements(cms, I_CmsWpConstants.C_VFS_DIR_TEMPLATES, names, values);
// find the correct index for the current template
if(currentTemplate != null) {
// it's required to do directory translation if comparing directory names
currentTemplate = cms.getRequestContext().getDirectoryTranslator().translateResource(I_CmsConstants.C_DEFAULT_SITE + I_CmsConstants.C_ROOTNAME_VFS + currentTemplate);
for(int i = 0; i < values.size(); i++) {
String template = cms.getRequestContext().getDirectoryTranslator().translateResource(I_CmsConstants.C_DEFAULT_SITE + I_CmsConstants.C_ROOTNAME_VFS + ((String)values.get(i)));
if(currentTemplate.equals(template)) {
// found the correct index - return it
return new Integer(i);
}
}
}
return new Integer(defaultReturnValue);
}
/**
* Gets the templates displayed in the template select box.
* @param cms The CmsObject.
* @param subFolder The sub folder name in the modules to look for information.
* @param names Will be filled with the display names of found the templates.
* @param values Will be filled with the file names of the found templates.
* @throws Throws CmsException if something goes wrong.
*/
public static void getTemplateElements(CmsObject cms, String subFolder, Vector names, Vector values) throws CmsException {
Vector files = new Vector();
if (! I_CmsWpConstants.C_VFS_NEW_STRUCTURE) {
// get all template elements in the default folder
// only required in old structure
files = cms.getFilesInFolder(I_CmsWpConstants.C_VFS_PATH_DEFAULTMODULE + subFolder);
}
// get all selected template elements in the module folders
Vector modules = new Vector();
modules = cms.getSubFolders(I_CmsWpConstants.C_VFS_PATH_MODULES);
for(int i = 0;i < modules.size();i++) {
Vector moduleTemplateFiles = new Vector();
String folder = ((CmsFolder)modules.elementAt(i)).getAbsolutePath();
moduleTemplateFiles = cms.getFilesInFolder(folder + subFolder);
for(int j = 0;j < moduleTemplateFiles.size();j++) {
files.addElement(moduleTemplateFiles.elementAt(j));
}
}
// now read the "nice name" (ie. title property) for the found elements
Enumeration enum = files.elements();
while(enum.hasMoreElements()) {
CmsFile file = (CmsFile)enum.nextElement();
if(file.getState() != I_CmsConstants.C_STATE_DELETED && checkVisible(cms, file)) {
String nicename = cms.readProperty(file.getAbsolutePath(), I_CmsConstants.C_PROPERTY_TITLE);
if(nicename == null) {
nicename = file.getName();
}
names.addElement(nicename);
values.addElement(file.getAbsolutePath());
}
}
// finally sort the found elemets
Utils.bubblesort(names, values);
// no explicit return value, but the parameter vectors are filled with the found values
}
/**
* Check if this template should be displayed in the selectbox (this is only
* true if the visible flag is set for the current user or if he is admin).
* @param cms The CmsObject
* @param res The resource to be checked.
* @return True or false.
* @throws CmsException if something goes wrong.
*/
public static boolean checkVisible(CmsObject cms, CmsResource res) throws CmsException {
boolean access = false;
int accessflags = res.getAccessFlags();
// First check if the user may have access by one of his groups.
boolean groupAccess = false;
Enumeration allGroups = cms.getGroupsOfUser(cms.getRequestContext().currentUser().getName()).elements();
while((!groupAccess) && allGroups.hasMoreElements()) {
groupAccess = cms.readGroup(res).equals((CmsGroup)allGroups.nextElement());
}
if(((accessflags & I_CmsConstants.C_ACCESS_PUBLIC_VISIBLE) > 0) || (cms.readOwner(res).equals(cms.getRequestContext().currentUser()) && (accessflags & I_CmsConstants.C_ACCESS_OWNER_VISIBLE) > 0) || (groupAccess && (accessflags & I_CmsConstants.C_ACCESS_GROUP_VISIBLE) > 0) || (cms.getRequestContext().currentUser().getName().equals(I_CmsConstants.C_USER_ADMIN))) {
access = true;
}
return access;
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -