Gavin Cornwell 524faba1cd - Refactored submit dialog to use 2 transactions so that link validation can occur succesfully
- Check links checkbox now only shown if there are workflows configured
- Changed a couple of labels

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@6118 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
2007-06-27 09:50:26 +00:00

138 lines
5.5 KiB
Java

/*
* Copyright (C) 2005-2007 Alfresco Software Limited.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* of the License, or (at your option) any later version.
* This program 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 General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* As a special exception to the terms and conditions of version 2.0 of
* the GPL, you may redistribute this Program in connection with Free/Libre
* and Open Source Software ("FLOSS") applications as described in Alfresco's
* FLOSS exception. You should have recieved a copy of the text describing
* the FLOSS exception, and it is also available here:
* http://www.alfresco.com/legal/licensing" */
package org.alfresco.repo.avm.wf;
import java.io.Serializable;
import java.util.HashMap;
import java.util.Map;
import org.alfresco.config.JNDIConstants;
import org.alfresco.linkvalidation.HrefValidationProgress;
import org.alfresco.linkvalidation.LinkValidationAction;
import org.alfresco.linkvalidation.LinkValidationReport;
import org.alfresco.repo.avm.AVMNodeConverter;
import org.alfresco.repo.domain.PropertyValue;
import org.alfresco.repo.workflow.jbpm.JBPMNode;
import org.alfresco.repo.workflow.jbpm.JBPMSpringActionHandler;
import org.alfresco.sandbox.SandboxConstants;
import org.alfresco.service.cmr.action.Action;
import org.alfresco.service.cmr.action.ActionService;
import org.alfresco.service.cmr.avm.AVMService;
import org.alfresco.service.cmr.repository.NodeRef;
import org.apache.log4j.Logger;
import org.jbpm.graph.exe.ExecutionContext;
import org.springframework.beans.factory.BeanFactory;
/**
* Performs a link validaton check for the workflow sandbox being used
* for a submisson process.
*
* @author gavinc
*/
public class AVMSubmitLinkChecker extends JBPMSpringActionHandler
{
private static final long serialVersionUID = 1442635948148675461L;
private static Logger logger = Logger.getLogger(AVMSubmitLinkChecker.class);
/**
* The AVMService.
*/
private AVMService fAVMService;
/**
* The ActionService.
*/
private ActionService fActionService;
/**
* Set any bean references necessary.
* @param factory The BeanFactory from which to get beans.
*/
@Override
protected void initialiseHandler(BeanFactory factory)
{
this.fActionService = (ActionService)factory.getBean("ActionService");
this.fAVMService = (AVMService)factory.getBean("AVMService");
}
/**
* Do the actual link validation check.
*
* @param executionContext The jBPM context.
*/
public void execute(ExecutionContext executionContext) throws Exception
{
// retrieve the workflow sandbox (the workflow package)
NodeRef pkg = ((JBPMNode)executionContext.getContextInstance().getVariable("bpm_package")).getNodeRef();
// get the store name
String storeName = pkg.getStoreRef().getIdentifier();
// retrieve the webapp name from the workflow execution context
String webappName = (String)executionContext.getContextInstance().getVariable("wcmwf_webapp");
String webappPath = storeName + ":/" + JNDIConstants.DIR_DEFAULT_WWW + "/" +
JNDIConstants.DIR_DEFAULT_APPBASE + "/" + webappName;
NodeRef webappPathRef = AVMNodeConverter.ToNodeRef(-1, webappPath);
if (logger.isDebugEnabled())
logger.debug("Checking links in workflow webapp: " + webappPath);
// create and execute the action
int brokenLinks = -1;
try
{
HrefValidationProgress monitor = new HrefValidationProgress();
Map<String, Serializable> args = new HashMap<String, Serializable>(1, 1.0f);
args.put(LinkValidationAction.PARAM_MONITOR, monitor);
args.put(LinkValidationAction.PARAM_COMPARE_TO_STAGING, Boolean.TRUE);
Action action = this.fActionService.createAction(LinkValidationAction.NAME, args);
this.fActionService.executeAction(action, webappPathRef, false, false);
// retrieve the deployment report from the store property
PropertyValue val = this.fAVMService.getStoreProperty(storeName,
SandboxConstants.PROP_LINK_VALIDATION_REPORT);
if (val != null)
{
LinkValidationReport report = (LinkValidationReport)val.getSerializableValue();
if (report != null && report.wasSuccessful())
{
brokenLinks = report.getNumberBrokenLinks();
}
}
if (logger.isDebugEnabled())
logger.debug("Link validation check found " + brokenLinks + " broken links");
}
catch (Throwable err)
{
logger.error(err);
}
// set the number of broken links in a variable, -1 indicates an error occured
executionContext.setVariable("wcmwf_brokenLinks", brokenLinks);
}
}