📄 cmsnewresourcepdfpage.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src/com/opencms/workplace/Attic/CmsNewResourcePdfpage.java,v $
* Date : $Date: 2004/01/07 10:57:09 $
* Version: $Revision: 1.22.2.1 $
*
* 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.core.I_CmsSession;
import com.opencms.file.CmsFile;
import com.opencms.file.CmsFolder;
import com.opencms.file.CmsObject;
import com.opencms.file.CmsResource;
import com.opencms.template.A_CmsXmlContent;
import com.opencms.template.I_CmsXmlParser;
import com.opencms.util.Encoder;
import java.io.StringWriter;
import java.util.Enumeration;
import java.util.Hashtable;
import java.util.StringTokenizer;
import java.util.Vector;
import org.w3c.dom.Document;
import org.w3c.dom.Element;
import org.w3c.dom.Node;
/**
* Template class for displaying the new resource screen for a new page
* of the OpenCms workplace.<P>
* Reads template files of the content type <code>CmsXmlWpTemplateFile</code>.
*
* @author Michael Emmerich
* @version $Revision: 1.22.2.1 $ $Date: 2004/01/07 10:57:09 $
*/
public class CmsNewResourcePdfpage extends CmsWorkplaceDefault implements I_CmsWpConstants,I_CmsConstants {
/** Definition of the class */
private final static String C_CLASSNAME = "com.opencms.template.CmsXmlTemplate";
private static final String C_DEFAULTBODY = "<?xml version=\"1.0\"?>\n<XMLTEMPLATE>\n<TEMPLATE/>\n</XMLTEMPLATE>";
private static final String C_PDFTEMPLATE = "pdfpage";
/**
* This method checks if all nescessary folders are exisitng in the content body
* folder and creates the missing ones. <br>
* All page contents files are stored in the content body folder in a mirrored directory
* structure of the OpenCms filesystem. Therefor it is nescessary to create the
* missing folders when a new page document is createg.
* @param cms The CmsObject
* @param path The path in the CmsFilesystem where the new page should be created.
* @throws CmsException if something goes wrong.
*/
private void checkFolders(CmsObject cms, String path) throws CmsException {
String completePath = C_VFS_PATH_BODIES;
StringTokenizer t = new StringTokenizer(path, "/");
// check if all folders are there
while(t.hasMoreTokens()) {
String foldername = t.nextToken();
try {
// try to read the folder. if this fails, an exception is thrown
cms.readFolder(completePath + foldername + "/");
}
catch(CmsException e) {
// the folder could not be read, so create it.
String orgFolder = completePath + foldername + "/";
orgFolder = orgFolder.substring(C_VFS_PATH_BODIES.length() - 1);
CmsFolder newfolder = (CmsFolder)cms.createResource(completePath, foldername, C_TYPE_FOLDER_NAME);
CmsFolder folder = cms.readFolder(orgFolder);
cms.lockResource(newfolder.getAbsolutePath());
cms.chown(newfolder.getAbsolutePath(), cms.readOwner(folder).getName());
cms.chgrp(newfolder.getAbsolutePath(), cms.readGroup(folder).getName());
cms.chmod(newfolder.getAbsolutePath(), folder.getAccessFlags());
cms.unlockResource(newfolder.getAbsolutePath());
}
completePath += foldername + "/";
}
}
/**
* Create the pagefile for this new page.
* @classname The name of the class used by this page.
* @template The name of the template (content) used by this page.
* @return Bytearray containgin the XML code for the pagefile.
*/
private byte[] createPagefile(String classname, String template, String contenttemplate) throws CmsException {
byte[] xmlContent = null;
try {
I_CmsXmlParser parser = A_CmsXmlContent.getXmlParser();
Document docXml = parser.createEmptyDocument("page");
Element firstElement = docXml.getDocumentElement();
// add element CLASS
Element elClass = docXml.createElement("CLASS");
firstElement.appendChild(elClass);
Node noClass = docXml.createTextNode(classname);
elClass.appendChild(noClass);
// add element MASTERTEMPLATE
Element elTempl = docXml.createElement("MASTERTEMPLATE");
firstElement.appendChild(elTempl);
Node noTempl = docXml.createTextNode(template);
elTempl.appendChild(noTempl);
//add element ELEMENTDEF
Element elEldef = docXml.createElement("ELEMENTDEF");
elEldef.setAttribute("name", "body");
firstElement.appendChild(elEldef);
//add element ELEMENTDEF.CLASS
Element elElClass = docXml.createElement("CLASS");
elEldef.appendChild(elElClass);
Node noElClass = docXml.createTextNode(classname);
elElClass.appendChild(noElClass);
//add element ELEMENTDEF.TEMPLATE
Element elElTempl = docXml.createElement("TEMPLATE");
elEldef.appendChild(elElTempl);
Node noElTempl = docXml.createTextNode(contenttemplate);
elElTempl.appendChild(noElTempl);
// generate the output
StringWriter writer = new StringWriter();
parser.getXmlText(docXml, writer);
xmlContent = writer.toString().getBytes();
}
catch(Exception e) {
throw new CmsException(e.getMessage(), CmsException.C_UNKNOWN_EXCEPTION, e);
}
return xmlContent;
}
/**
* Overwrites the getContent method of the CmsWorkplaceDefault.<br>
* Gets the content of the new resource page template and processed the data input.
* @param cms The CmsObject.
* @param templateFile The new page template file
* @param elementName not used
* @param parameters Parameters of the request and the template.
* @param templateSelector Selector of the template tag to be displayed.
* @return Bytearry containing the processed data of the template.
* @throws Throws CmsException if something goes wrong.
*/
public byte[] getContent(CmsObject cms, String templateFile, String elementName,
Hashtable parameters, String templateSelector) throws CmsException {
// the template to be displayed
String template = null;
byte[] content = new byte[0];
CmsResource contentFile = null;
I_CmsSession session = cms.getRequestContext().getSession(true);
//get the current filelist
String currentFilelist = (String)session.getValue(C_PARA_FILELIST);
if(currentFilelist == null) {
currentFilelist = cms.rootFolder().getAbsolutePath();
}
// get request parameters
String newFile = (String)parameters.get(C_PARA_NEWFILE);
String templatefile = (String)parameters.get(C_PARA_TEMPLATE);
String navtitle = Encoder.redecodeUriComponent((String)parameters.get(C_PARA_NAVTEXT));
String navpos = (String)parameters.get(C_PARA_NAVPOS);
if (newFile != null) {
newFile = newFile.trim();
}
// get the current phase of this wizard
String step = cms.getRequestContext().getRequest().getParameter("step");
if(step != null) {
if(step.equals("1")) {
//check if the fielname has a file extension
if(newFile.indexOf(".") == -1) {
newFile += ".pdf";
}
try {
// create the content for the page file
content = createPagefile(C_CLASSNAME, templatefile, C_VFS_PATH_BODIES
+ currentFilelist.substring(1, currentFilelist.length()) + newFile);
// check if the nescessary folders for the content files are existing.
// if not, create the missing folders.
checkFolders(cms, currentFilelist);
// create the page file
CmsResource file = cms.createResource(currentFilelist, newFile, "pdfpage", new Hashtable(),content);
// now create the page content file
contentFile = cms.createResource(C_VFS_PATH_BODIES + currentFilelist.substring(1,
currentFilelist.length()), newFile, "plain", new Hashtable(),
C_DEFAULTBODY.getBytes());
// set the flags for the content file to internal use, the content
// should not be loaded
cms.chmod(contentFile.getAbsolutePath(), contentFile.getAccessFlags() + C_ACCESS_INTERNAL_READ);
// now check if navigation informations have to be added to the new page.
if(navtitle != null) {
cms.writeProperty(file.getAbsolutePath(), C_PROPERTY_NAVTEXT, navtitle);
// update the navposition.
if(navpos != null) {
updateNavPos(cms, file, navpos);
}
}
}
catch(CmsException ex) {
throw new CmsException("Error while creating new Page" + ex.getMessage(), ex.getType(), ex);
}
// now return to filelist
try {
cms.getRequestContext().getResponse().sendCmsRedirect(getConfigFile(cms).getWorkplaceActionPath()
+ C_WP_EXPLORER_FILELIST);
}
catch(Exception e) {
throw new CmsException("Redirect fails :" + getConfigFile(cms).getWorkplaceActionPath()
+ C_WP_EXPLORER_FILELIST, CmsException.C_UNKNOWN_EXCEPTION, e);
}
return null;
}
}
else {
session.removeValue(C_PARA_FILE);
}
// get the document to display
CmsXmlWpTemplateFile xmlTemplateDocument = new CmsXmlWpTemplateFile(cms, templateFile);
// process the selected template
return startProcessing(cms, xmlTemplateDocument, "", parameters, template);
}
/**
* Gets all required navigation information from the files and subfolders of a folder.
* A file list of all files and folder is created, for all those resources, the navigation
* property is read. The list is sorted by their navigation position.
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -