📄 cmspublishprojectreport.java
字号:
/*
* File : $Source: /usr/local/cvs/opencms/src-modules/org/opencms/workplace/tools/projects/CmsPublishProjectReport.java,v $
* Date : $Date: 2006/10/10 09:07:47 $
* Version: $Revision: 1.10 $
*
* 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.tools.projects;
import org.opencms.db.CmsPublishList;
import org.opencms.file.CmsProject;
import org.opencms.jsp.CmsJspActionElement;
import org.opencms.main.CmsException;
import org.opencms.main.CmsRuntimeException;
import org.opencms.util.CmsStringUtil;
import org.opencms.workplace.CmsReport;
import org.opencms.workplace.CmsWorkplaceSettings;
import org.opencms.workplace.commons.Messages;
import org.opencms.workplace.threads.CmsPublishThread;
import org.opencms.workplace.threads.CmsXmlDocumentLinkValidatorThread;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.jsp.JspException;
import javax.servlet.jsp.PageContext;
/**
* Provides a report for publishing a project.<p>
*
* @author Michael Moossen
* @author Peter Bonrad
*
* @version $Revision: 1.10 $
*
* @since 6.0.0
*/
public class CmsPublishProjectReport extends CmsReport {
/** Request parameter name for the project id. */
public static final String PARAM_PROJECTID = "projectid";
/** list of project id. */
private String m_paramProjectid;
/**
* Public constructor with JSP action element.<p>
*
* @param jsp an initialized JSP action element
*/
public CmsPublishProjectReport(CmsJspActionElement jsp) {
super(jsp);
}
/**
* Public constructor with JSP variables.<p>
*
* @param context the JSP page context
* @param req the JSP request
* @param res the JSP response
*/
public CmsPublishProjectReport(PageContext context, HttpServletRequest req, HttpServletResponse res) {
this(new CmsJspActionElement(context, req, res));
}
/**
* Performs the dialog actions depending on the initialized action.<p>
*
* @throws JspException if dialog actions fail
*/
public void displayReport() throws JspException {
// save initialized instance of this class in request attribute for included sub-elements
getJsp().getRequest().setAttribute(SESSION_WORKPLACE_CLASS, this);
switch (getAction()) {
case ACTION_REPORT_END:
actionCloseDialog();
break;
case ACTION_CANCEL:
actionCloseDialog();
break;
case ACTION_REPORT_UPDATE:
setParamAction(REPORT_UPDATE);
getJsp().include(FILE_REPORT_OUTPUT);
break;
case ACTION_REPORT_BEGIN:
case ACTION_CONFIRMED:
case ACTION_DEFAULT:
default:
try {
if (getCms().readProject(new Integer(getParamProjectid()).intValue()).getType() == CmsProject.PROJECT_TYPE_TEMPORARY) {
// set the flag that this is a temporary project
setParamRefreshWorkplace(CmsStringUtil.TRUE);
}
} catch (Exception e) {
// ignore
}
CmsPublishList list = null;
try {
CmsProject currentProject = getCms().getRequestContext().currentProject();
getCms().getRequestContext().setCurrentProject(
getCms().readProject(new Integer(getParamProjectid()).intValue()));
list = getCms().getPublishList();
getCms().getRequestContext().setCurrentProject(currentProject);
} catch (CmsException e) {
throw new CmsRuntimeException(e.getMessageContainer(), e);
}
// start validation check
startValidationThread(list);
getJsp().include(FILE_REPORT_OUTPUT);
}
}
/**
* Gets the project id parameter.<p>
*
* @return the project id parameter
*/
public String getParamProjectid() {
return m_paramProjectid;
}
/**
* Sets the project id parameter.<p>
*
* @param projectId the project id parameter
*/
public void setParamProjectid(String projectId) {
m_paramProjectid = projectId;
}
/**
* @see org.opencms.workplace.list.A_CmsListReport#initWorkplaceRequestValues(org.opencms.workplace.CmsWorkplaceSettings, javax.servlet.http.HttpServletRequest)
*/
protected void initWorkplaceRequestValues(CmsWorkplaceSettings settings, HttpServletRequest request) {
// fill the parameter values in the get/set methods
fillParamValues(request);
if (REPORT_UPDATE.equals(getParamAction())) {
setAction(ACTION_REPORT_UPDATE);
} else if (REPORT_BEGIN.equals(getParamAction())) {
setAction(ACTION_REPORT_BEGIN);
} else if (REPORT_END.equals(getParamAction())) {
if (Boolean.valueOf(getParamThreadHasNext()).booleanValue()) {
// after the link check start the publish thread
startPublishThread();
} else {
// ends the publish thread
setAction(ACTION_REPORT_END);
}
} else if (DIALOG_CANCEL.equals(getParamAction())) {
setAction(ACTION_CANCEL);
} else {
// set the default action
setAction(ACTION_DEFAULT);
}
}
/**
* Starts the publish thread for the project.<p>
*/
private void startPublishThread() {
// create a publish thread from the current publish list
CmsPublishList publishList = getSettings().getPublishList();
CmsPublishThread thread = new CmsPublishThread(getCms(), publishList, getSettings());
// set the new thread id and flag that no thread is following
setParamThread(thread.getUUID().toString());
setParamThreadHasNext(CmsStringUtil.FALSE);
setParamAction(REPORT_UPDATE);
setAction(ACTION_REPORT_UPDATE);
// start the publish thread
thread.start();
}
/**
* Starts the link validation thread for the project.<p>
*/
private void startValidationThread(CmsPublishList publishList) throws JspException {
try {
CmsXmlDocumentLinkValidatorThread thread = new CmsXmlDocumentLinkValidatorThread(getCms(), publishList, getSettings());
setParamThread(thread.getUUID().toString());
setParamThreadHasNext(CmsStringUtil.TRUE);
setParamAction(REPORT_BEGIN);
// set the key name for the continue checkbox
setParamReportContinueKey(Messages.GUI_PUBLISH_CONTINUE_BROKEN_LINKS_0);
} catch (Throwable e) {
// error while link validation, show error screen
includeErrorpage(this, e);
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -