cmsxmlcontenteditor.java
来自「找了很久才找到到源代码」· Java 代码 · 共 1,609 行 · 第 1/5 页
JAVA
1,609 行
/*
* File : $Source: /usr/local/cvs/opencms/src/org/opencms/workplace/editors/CmsXmlContentEditor.java,v $
* Date : $Date: 2007-09-06 09:38:55 $
* Version: $Revision: 1.76 $
*
* 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.editors;
import org.opencms.file.CmsFile;
import org.opencms.file.CmsRequestContext;
import org.opencms.file.CmsResource;
import org.opencms.file.CmsResourceFilter;
import org.opencms.file.collectors.I_CmsResourceCollector;
import org.opencms.i18n.CmsEncoder;
import org.opencms.i18n.CmsLocaleManager;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.lock.CmsLockType;
import org.opencms.main.CmsException;
import org.opencms.main.CmsLog;
import org.opencms.main.OpenCms;
import org.opencms.util.CmsRequestUtil;
import org.opencms.util.CmsStringUtil;
import org.opencms.widgets.A_CmsWidget;
import org.opencms.widgets.I_CmsWidget;
import org.opencms.widgets.I_CmsWidgetDialog;
import org.opencms.widgets.I_CmsWidgetParameter;
import org.opencms.workplace.CmsWorkplaceSettings;
import org.opencms.workplace.editors.directedit.CmsDirectEditButtonSelection;
import org.opencms.xml.CmsXmlContentDefinition;
import org.opencms.xml.CmsXmlEntityResolver;
import org.opencms.xml.CmsXmlException;
import org.opencms.xml.CmsXmlUtils;
import org.opencms.xml.content.CmsXmlContent;
import org.opencms.xml.content.CmsXmlContentErrorHandler;
import org.opencms.xml.content.CmsXmlContentFactory;
import org.opencms.xml.content.CmsXmlContentValueSequence;
import org.opencms.xml.types.CmsXmlNestedContentDefinition;
import org.opencms.xml.types.I_CmsXmlContentValue;
import org.opencms.xml.types.I_CmsXmlSchemaType;
import java.io.IOException;
import java.io.UnsupportedEncodingException;
import java.util.ArrayList;
import java.util.HashSet;
import java.util.Iterator;
import java.util.List;
import java.util.Locale;
import java.util.Map;
import java.util.Set;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.jsp.JspException;
import org.apache.commons.logging.Log;
/**
* Creates the editor for XML content definitions.<p>
*
* @author Alexander Kandzior
* @author Andreas Zahner
*
* @version $Revision: 1.76 $
*
* @since 6.0.0
*/
public class CmsXmlContentEditor extends CmsEditor implements I_CmsWidgetDialog {
/** Action for checking content before executing the direct edit action. */
public static final int ACTION_CHECK = 151;
/** Action for confirming the XML content structure correction. */
public static final int ACTION_CONFIRMCORRECTION = 152;
/** Action for correction of the XML content structure confirmed. */
public static final int ACTION_CORRECTIONCONFIRMED = 153;
/** Action for optional element creation. */
public static final int ACTION_ELEMENT_ADD = 154;
/** Action for element move down operation. */
public static final int ACTION_ELEMENT_MOVE_DOWN = 155;
/** Action for element move up operation. */
public static final int ACTION_ELEMENT_MOVE_UP = 156;
/** Action for optional element removal. */
public static final int ACTION_ELEMENT_REMOVE = 157;
/** Action for new file creation. */
public static final int ACTION_NEW = 158;
/** Indicates that the content should be checked before executing the direct edit action. */
public static final String EDITOR_ACTION_CHECK = "check";
/** Indicates that the correction of the XML content structure should be confirmed. */
public static final String EDITOR_ACTION_CONFIRMCORRECTION = "confirmcorrect";
/** Indicates an optional element should be created. */
public static final String EDITOR_ACTION_ELEMENT_ADD = "addelement";
/** Indicates an element should be moved down. */
public static final String EDITOR_ACTION_ELEMENT_MOVE_DOWN = "elementdown";
/** Indicates an element should be moved up. */
public static final String EDITOR_ACTION_ELEMENT_MOVE_UP = "elementup";
/** Indicates an optional element should be removed. */
public static final String EDITOR_ACTION_ELEMENT_REMOVE = "removeelement";
/** Indicates a new file should be created. */
public static final String EDITOR_ACTION_NEW = CmsDirectEditButtonSelection.VALUE_NEW;
/** Indicates that the correction of the XML content structure was confirmed by the user. */
public static final String EDITOR_CORRECTIONCONFIRMED = "correctconfirmed";
/** Parameter name for the request parameter "elementindex". */
public static final String PARAM_ELEMENTINDEX = "elementindex";
/** Parameter name for the request parameter "elementname". */
public static final String PARAM_ELEMENTNAME = "elementname";
/** Parameter name for the request parameter "newlink". */
public static final String PARAM_NEWLINK = "newlink";
/** Constant for the editor type, must be the same as the editors subfolder name in the VFS. */
private static final String EDITOR_TYPE = "xmlcontent";
/** The log object for this class. */
private static final Log LOG = CmsLog.getLog(CmsXmlContentEditor.class);
/** The content object to edit. */
private CmsXmlContent m_content;
/** The element locale. */
private Locale m_elementLocale;
/** File object used to read and write contents. */
private CmsFile m_file;
/** The set of help message ids that have already been used. */
private Set m_helpMessageIds;
/** Indicates if an optional element is included in the form. */
private boolean m_optionalElementPresent;
/** Parameter stores the index of the element to add or remove. */
private String m_paramElementIndex;
/** Parameter stores the name of the element to add or remove. */
private String m_paramElementName;
/** The selected model file for the new resource. */
private String m_paramModelFile;
/** Parameter to indicate if a new XML content resource should be created. */
private String m_paramNewLink;
/** The error handler for the xml content. */
private CmsXmlContentErrorHandler m_validationHandler;
/** Visitor implementation that stored the widgets for the content. */
private CmsXmlContentWidgetVisitor m_widgetCollector;
/**
* Public constructor.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsXmlContentEditor(CmsJspActionElement jsp) {
super(jsp);
}
/**
* Performs the change element language action of the editor.<p>
*/
public void actionChangeElementLanguage() {
// save eventually changed content of the editor
Locale oldLocale = CmsLocaleManager.getLocale(getParamOldelementlanguage());
Locale newLocale = getElementLocale();
try {
setEditorValues(oldLocale);
if (!m_content.validate(getCms()).hasErrors(oldLocale)) {
// no errors found in content
if (!m_content.hasLocale(newLocale)) {
// check if we should copy the content from a default locale
boolean addNew = true;
List locales = OpenCms.getLocaleManager().getDefaultLocales(getCms(), getParamResource());
if (locales.size() > 1) {
// default locales have been set, try to find a match
try {
m_content.copyLocale(locales, newLocale);
addNew = false;
} catch (CmsXmlException e) {
// no matching default locale was available, we will create a new one later
}
}
if (addNew) {
// create new element if selected language element is not present
try {
m_content.addLocale(getCms(), newLocale);
} catch (CmsXmlException e) {
if (LOG.isErrorEnabled()) {
LOG.error(e.getLocalizedMessage(), e);
}
}
}
}
//save to temporary file
writeContent();
// set default action to suppress error messages
setAction(ACTION_DEFAULT);
} else {
// errors found, switch back to old language to show errors
setParamElementlanguage(getParamOldelementlanguage());
// set stored locale to null to reinitialize it
m_elementLocale = null;
}
} catch (Exception e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage(), e);
}
}
}
/**
* Deletes the temporary file and unlocks the edited resource when in direct edit mode.<p>
*
* @param forceUnlock if true, the resource will be unlocked anyway
*/
public void actionClear(boolean forceUnlock) {
// delete the temporary file
deleteTempFile();
boolean directEditMode = Boolean.valueOf(getParamDirectedit()).booleanValue();
boolean modified = Boolean.valueOf(getParamModified()).booleanValue();
if (directEditMode || forceUnlock || !modified) {
// unlock the resource when in direct edit mode, force unlock is true or resource was not modified
try {
getCms().unlockResource(getParamResource());
} catch (CmsException e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage(), e);
}
}
}
}
/**
* Performs the delete locale action.<p>
*
* @throws JspException if something goes wrong
*/
public void actionDeleteElementLocale() throws JspException {
try {
Locale loc = getElementLocale();
m_content.removeLocale(loc);
//write the modified xml content
writeContent();
List locales = m_content.getLocales();
if (locales.size() > 0) {
// set first locale as new display locale
Locale newLoc = (Locale)locales.get(0);
setParamElementlanguage(newLoc.toString());
m_elementLocale = newLoc;
} else {
if (LOG.isErrorEnabled()) {
LOG.error(Messages.get().getBundle().key(Messages.LOG_GET_LOCALES_1, getParamResource()));
}
}
} catch (CmsXmlException e) {
// an error occured while trying to delete the locale, stop action
showErrorPage(e);
} catch (CmsException e) {
// should usually never happen
if (LOG.isInfoEnabled()) {
LOG.info(e.getLocalizedMessage(), e);
}
}
}
/**
* Performs a configurable action performed by the editor.<p>
*
* The default action is: save resource, clear temporary files and publish the resource directly.<p>
*
* @throws IOException if a forward fails
* @throws ServletException of a forward fails
* @throws JspException if including a JSP fails
*/
public void actionDirectEdit() throws IOException, JspException, ServletException {
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?