📄 cmsexplorer.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/explorer/CmsExplorer.java,v $
* Date : $Date: 2006/07/21 12:01:54 $
* Version: $Revision: 1.34 $
*
* 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.explorer;
import org.opencms.db.CmsDbUtil;
import org.opencms.db.CmsUserSettings;
import org.opencms.file.CmsFolder;
import org.opencms.file.CmsObject;
import org.opencms.file.CmsProject;
import org.opencms.file.CmsPropertyDefinition;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.file.collectors.I_CmsResourceCollector;
import org.opencms.file.types.CmsResourceTypePlain;
import org.opencms.i18n.CmsEncoder;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.lock.CmsLock;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.main.CmsRuntimeException;
import org.opencms.main.OpenCms;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsWorkplace;
import org.opencms.workplace.CmsWorkplaceSettings;
import org.opencms.workplace.commons.CmsTouch;
import org.opencms.workplace.galleries.A_CmsGallery;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import javax.servlet.http.HttpServletRequest;
import org.apache.commons.logging.Log;
/**
* Provides methods for building the main framesets of the OpenCms Workplace.<p>
*
* The following files use this class:
* <ul>
* <li>/views/explorer/explorer_fs.jsp
* <li>/views/explorer/explorer_files.jsp
* <li>/views/explorer/explorer_body_fs.jsp
* </ul>
* <p>
*
* @author Alexander Kandzior
*
* @version $Revision: 1.34 $
*
* @since 6.0.0
*/
public class CmsExplorer extends CmsWorkplace {
/** Layoutstyle for resources after expire date. */
public static final int LAYOUTSTYLE_AFTEREXPIRE = 2;
/** Layoutstyle for resources before release date. */
public static final int LAYOUTSTYLE_BEFORERELEASE = 1;
/** Layoutstyle for resources after release date and before expire date. */
public static final int LAYOUTSTYLE_INRANGE = 0;
/** The "mode" parameter. */
public static final String PARAMETER_MODE = "mode";
/** The "list" view selection. */
public static final String VIEW_LIST = "listview";
/** The "siblings:" location prefix for VFS sibling display. */
private static final String LOCATION_SIBLING = "siblings:";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsExplorer.class);
/** The "flaturl" parameter. */
private static final String PARAMETER_FLATURL = "flaturl";
/** The "page" parameter. */
private static final String PARAMETER_PAGE = "page";
/** The "resource" parameter. */
private static final String PARAMETER_RESOURCE = "resource";
/** The "showlinks" parameter. */
private static final String PARAMETER_SHOWLINKS = "showlinks";
/** The "explorerview" view selection. */
public static final String VIEW_EXPLORER = "explorerview";
/** The "galleryview" view selection. */
public static final String VIEW_GALLERY = "galleryview";
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsExplorer(CmsJspActionElement jsp) {
super(jsp);
}
/**
* Returns the html for the explorer file list.<p>
*
* @return the html for the explorer file list
*/
public String getFileList() {
// if mode is "listonly", only the list will be shown
boolean galleryView = VIEW_GALLERY.equals(getSettings().getExplorerMode());
// if mode is "listview", all file in the set collector will be shown
boolean listView = VIEW_LIST.equals(getSettings().getExplorerMode());
// if VFS links should be displayed, this is true
boolean showVfsLinks = getSettings().getExplorerShowLinks();
CmsResource currentResource = null;
String currentFolder = getSettings().getExplorerResource();
boolean found = true;
try {
currentResource = getCms().readResource(currentFolder, CmsResourceFilter.ALL);
} catch (CmsException e) {
// file was not readable
found = false;
}
if (found) {
if (showVfsLinks) {
// file / folder exists and is readable
currentFolder = LOCATION_SIBLING + currentFolder;
}
} else {
// show the root folder in case of an error and reset the state
currentFolder = "/";
showVfsLinks = false;
try {
currentResource = getCms().readResource(currentFolder, CmsResourceFilter.ALL);
} catch (CmsException e) {
// should usually never happen
LOG.error(e);
throw new CmsRuntimeException(e.getMessageContainer(), e);
}
}
// start creating content
StringBuffer content = new StringBuffer(2048);
content.append("function initialize() {\n");
content.append("top.setRootFolder(\"");
String rootFolder = getRootFolder();
content.append(rootFolder);
content.append("\");\n");
content.append("top.mode=\"");
content.append(getSettings().getExplorerMode());
content.append("\";\n");
content.append("top.showlinks=");
content.append(showVfsLinks);
content.append(";\n");
// the resource id of plain resources
content.append("top.plainresid=");
content.append(CmsResourceTypePlain.getStaticTypeId());
content.append(";\n");
// the autolock setting
content.append("top.autolock=");
content.append(OpenCms.getWorkplaceManager().autoLockResources());
content.append(";\n");
// the button type setting
content.append("top.buttonType=");
content.append(getSettings().getUserSettings().getExplorerButtonStyle());
content.append(";\n");
// the help_url
content.append("top.head.helpUrl='explorer/index.html';\n");
// the project
content.append("top.setProject(");
if (!listView) {
content.append(getSettings().getProject());
} else {
content.append(getSettings().getExplorerProjectId());
}
content.append(");\n");
// the onlineProject
content.append("top.setOnlineProject(");
content.append(CmsProject.ONLINE_PROJECT_ID);
content.append(");\n");
// set the writeAccess for the current Folder
boolean writeAccess = VIEW_EXPLORER.equals(getSettings().getExplorerMode());
if (writeAccess && (!showVfsLinks)) {
writeAccess = getCms().isInsideCurrentProject(currentFolder);
}
content.append("top.enableNewButton(");
content.append(writeAccess);
content.append(");\n");
// the folder
content.append("top.setDirectory(\"");
content.append(CmsResource.getFolderPath(currentResource.getRootPath()));
content.append("\",\"");
if (showVfsLinks) {
content.append(LOCATION_SIBLING);
content.append(getSettings().getExplorerResource());
} else {
content.append(CmsResource.getFolderPath(getSettings().getExplorerResource()));
}
content.append("\");\n");
content.append("top.rD();\n");
List reloadTreeFolders = (List)getJsp().getRequest().getAttribute(REQUEST_ATTRIBUTE_RELOADTREE);
if (reloadTreeFolders != null) {
// folder tree has to be reloaded after copy, delete, move, rename operation
String reloadFolder = "";
for (int i = 0; i < reloadTreeFolders.size(); i++) {
reloadFolder = (String)reloadTreeFolders.get(i);
if (getSettings().getUserSettings().getRestrictExplorerView()) {
// in restricted view, adjust folder path to reload: remove restricted folder name
reloadFolder = reloadFolder.substring(rootFolder.length() - 1);
}
content.append("top.addNodeToLoad(\"" + reloadFolder + "\");\n");
}
content.append("top.reloadNodeList();\n");
}
content.append("\n");
// now check which filelist colums we want to show
int preferences = getUserPreferences();
boolean showTitle = (preferences & CmsUserSettings.FILELIST_TITLE) > 0;
boolean showPermissions = (preferences & CmsUserSettings.FILELIST_PERMISSIONS) > 0;
boolean showDateLastModified = (preferences & CmsUserSettings.FILELIST_DATE_LASTMODIFIED) > 0;
boolean showUserWhoLastModified = (preferences & CmsUserSettings.FILELIST_USER_LASTMODIFIED) > 0;
boolean showDateCreated = (preferences & CmsUserSettings.FILELIST_DATE_CREATED) > 0;
boolean showUserWhoCreated = (preferences & CmsUserSettings.FILELIST_USER_CREATED) > 0;
boolean showDateReleased = (preferences & CmsUserSettings.FILELIST_DATE_RELEASED) > 0;
boolean showDateExpired = (preferences & CmsUserSettings.FILELIST_DATE_EXPIRED) > 0;
// now get the entries for the filelist
List resources = getResources(getSettings().getExplorerResource());
// if a folder contains to much entrys we split them to pages of C_ENTRYS_PER_PAGE length
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -