mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.1 to HEAD
12982: Merged V3.0 to V3.1 12921: Merged V2.2 to V3.0 12524: Fix ETWOTWO-974: Submit Action Queue (...) 12687: Add missing workflow to bootstrap (follow on from 12524) ___________________________________________________________________ Modified: svn:mergeinfo Merged /alfresco/BRANCHES/V3.0:r12921 Merged /alfresco/BRANCHES/V2.2:r12524,12687 Merged /alfresco/BRANCHES/V3.1:r12982 git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@13545 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -86,46 +86,11 @@ public class AVMWorkflowUtil extends WorkflowUtil
|
||||
final FacesContext fc = FacesContext.getCurrentInstance();
|
||||
final WorkflowService workflowService = Repository.getServiceRegistry(fc).getWorkflowService();
|
||||
final AVMService avmService = Repository.getServiceRegistry(fc).getAVMLockingAwareService();
|
||||
final AVMSyncService avmSyncService = Repository.getServiceRegistry(fc).getAVMSyncService();
|
||||
|
||||
// create package paths (layered to user sandbox area as target)
|
||||
final String workflowMainStoreName = sandboxInfo.getMainStoreName();
|
||||
final String packagesPath = AVMUtil.buildStoreRootPath(workflowMainStoreName);
|
||||
|
||||
final String stagingStoreName = AVMUtil.getStoreId(workflowMainStoreName);
|
||||
final List<AVMDifference> diffs = new ArrayList<AVMDifference>(srcPaths.size());
|
||||
for (final String srcPath : srcPaths)
|
||||
{
|
||||
final AVMNodeDescriptor node = avmService.lookup(-1, srcPath, true);
|
||||
if (node.isDirectory())
|
||||
{
|
||||
diffs.add(new AVMDifference(-1, srcPath,
|
||||
-1, AVMUtil.getCorrespondingPath(srcPath, workflowMainStoreName),
|
||||
AVMDifference.NEWER));
|
||||
}
|
||||
else
|
||||
{
|
||||
final HashSet<String> directoriesAdded = new HashSet<String>();
|
||||
// add all newly created directories
|
||||
String parentPath = AVMNodeConverter.SplitBase(srcPath)[0];
|
||||
while (!directoriesAdded.contains(parentPath) &&
|
||||
avmService.lookup(-1, AVMUtil.getCorrespondingPath(parentPath, stagingStoreName), true) == null)
|
||||
{
|
||||
diffs.add(new AVMDifference(-1, parentPath,
|
||||
-1, AVMUtil.getCorrespondingPath(parentPath, workflowMainStoreName),
|
||||
AVMDifference.NEWER));
|
||||
directoriesAdded.add(parentPath);
|
||||
parentPath = AVMNodeConverter.SplitBase(parentPath)[0];
|
||||
}
|
||||
diffs.add(new AVMDifference(-1, srcPath,
|
||||
-1, AVMUtil.getCorrespondingPath(srcPath, workflowMainStoreName),
|
||||
AVMDifference.NEWER));
|
||||
}
|
||||
}
|
||||
|
||||
// write changes to layer so files are marked as modified
|
||||
avmSyncService.update(diffs, null, true, true, false, false, null, null);
|
||||
|
||||
// convert package to workflow package
|
||||
final AVMNodeDescriptor packageDesc = avmService.lookup(-1, packagesPath);
|
||||
final NodeRef packageNodeRef = workflowService.createPackage(AVMNodeConverter.ToNodeRef(-1, packageDesc.getPath()));
|
||||
|
@@ -97,6 +97,8 @@ public class SubmitDialog extends BaseDialogBean
|
||||
private static final String MSG_DELETED_ITEM = "avm_node_deleted";
|
||||
private static final String MSG_ERR_WORKFLOW_CONFIG = "submit_workflow_config_error";
|
||||
|
||||
private static final String WORKFLOW_SUBMITDIRECT = "jbpm$wcmwf:submitdirect";
|
||||
|
||||
private String comment;
|
||||
private String label;
|
||||
private String[] workflowSelectedValue;
|
||||
@@ -336,17 +338,9 @@ public class SubmitDialog extends BaseDialogBean
|
||||
|
||||
try
|
||||
{
|
||||
if (this.workflowSelectedValue != null)
|
||||
{
|
||||
// if there is a workflow set submit via that
|
||||
// note: always submit via workflow (always defaults to direct submit workflow)
|
||||
outcome = submitViaWorkflow(context);
|
||||
}
|
||||
else
|
||||
{
|
||||
// if there's no workflow submit changes directly to staging
|
||||
outcome = submitDirectToStaging(context);
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
// reset the flag so we can re-attempt the operation
|
||||
@@ -357,41 +351,6 @@ public class SubmitDialog extends BaseDialogBean
|
||||
return outcome;
|
||||
}
|
||||
|
||||
/**
|
||||
* Submits the selected items straight to the staging area i.e. when
|
||||
* there is no workflow configured for the web project.
|
||||
*
|
||||
* @param context Faces context
|
||||
* @return The outcome to use
|
||||
*/
|
||||
protected String submitDirectToStaging(final FacesContext context)
|
||||
{
|
||||
String outcome = null;
|
||||
|
||||
RetryingTransactionHelper txnHelper = Repository.getRetryingTransactionHelper(context);
|
||||
RetryingTransactionCallback<String> callback = new RetryingTransactionCallback<String>()
|
||||
{
|
||||
public String execute() throws Throwable
|
||||
{
|
||||
// call the actual implementation
|
||||
return submitDirectToStagingImpl();
|
||||
}
|
||||
};
|
||||
|
||||
try
|
||||
{
|
||||
// Execute
|
||||
outcome = txnHelper.doInTransaction(callback);
|
||||
}
|
||||
catch (Throwable e)
|
||||
{
|
||||
Utils.addErrorMessage(formatErrorMessage(e), e);
|
||||
outcome = getErrorOutcome(e);
|
||||
}
|
||||
|
||||
return outcome;
|
||||
}
|
||||
|
||||
/**
|
||||
* Submits the selected items via the configured workflow.
|
||||
* <p>
|
||||
@@ -468,40 +427,14 @@ public class SubmitDialog extends BaseDialogBean
|
||||
return outcome;
|
||||
}
|
||||
|
||||
/**
|
||||
* Performs the actual submisson to staging
|
||||
*
|
||||
* @return The outcome to use
|
||||
*/
|
||||
protected String submitDirectToStagingImpl()
|
||||
{
|
||||
// direct submit to the staging area without workflow
|
||||
List<ItemWrapper> items = getSubmitItems();
|
||||
|
||||
List<String> relativePaths = new ArrayList<String>(items.size());
|
||||
|
||||
for (ItemWrapper wrapper : items)
|
||||
{
|
||||
relativePaths.add(AVMUtil.getStoreRelativePath(wrapper.getDescriptor().getPath()));
|
||||
}
|
||||
|
||||
String sbStoreId = this.avmBrowseBean.getSandbox();
|
||||
|
||||
String submitLabel = this.label;
|
||||
String submitComment = this.comment;
|
||||
|
||||
getSandboxService().submitList(sbStoreId, relativePaths, this.expirationDates, submitLabel, submitComment);
|
||||
|
||||
// if we get this far return the default outcome
|
||||
return this.getDefaultFinishOutcome();
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a workflow sandbox for all the submitted items
|
||||
*
|
||||
* @param context Faces context
|
||||
*/
|
||||
protected void createWorkflowSandbox(FacesContext context)
|
||||
{
|
||||
if (this.workflowSelectedValue != null && this.workflowSelectedValue.length > 0)
|
||||
{
|
||||
// get the defaults from the workflow configuration attached to the selected workflow
|
||||
String workflowName = this.workflowSelectedValue[0];
|
||||
@@ -513,11 +446,25 @@ public class SubmitDialog extends BaseDialogBean
|
||||
}
|
||||
}
|
||||
|
||||
if (this.workflowParams != null)
|
||||
if (this.workflowParams == null)
|
||||
{
|
||||
// create error msg for display in dialog - the user must configure the workflow params
|
||||
Utils.addErrorMessage(Application.getMessage(context, MSG_ERR_WORKFLOW_CONFIG));
|
||||
return;
|
||||
}
|
||||
|
||||
// Create workflow sandbox for workflow package
|
||||
this.sandboxInfo = sandboxFactory.createWorkflowSandbox(
|
||||
this.avmBrowseBean.getStagingStore());
|
||||
this.sandboxInfo = sandboxFactory.createWorkflowSandbox(this.avmBrowseBean.getStagingStore());
|
||||
}
|
||||
else
|
||||
{
|
||||
// default to direct submit workflow
|
||||
this.workflowSelectedValue = new String[] { WORKFLOW_SUBMITDIRECT };
|
||||
this.workflowParams = new HashMap<QName, Serializable>();
|
||||
|
||||
// NOTE: read only workflow sandbox is lighter to construct than full workflow sandbox
|
||||
this.sandboxInfo = sandboxFactory.createReadOnlyWorkflowSandbox(this.avmBrowseBean.getStagingStore());
|
||||
}
|
||||
|
||||
// create container for our avm workflow package
|
||||
final List<ItemWrapper> items = this.getSubmitItems();
|
||||
@@ -578,12 +525,6 @@ public class SubmitDialog extends BaseDialogBean
|
||||
// write changes to layer so files are marked as modified
|
||||
getAvmSyncService().update(diffs, null, true, true, false, false, null, null);
|
||||
}
|
||||
else
|
||||
{
|
||||
// create error msg for display in dialog - the user must configure the workflow params
|
||||
Utils.addErrorMessage(Application.getMessage(context, MSG_ERR_WORKFLOW_CONFIG));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Starts the configured workflow to allow the submitted items to be link
|
||||
|
@@ -182,7 +182,6 @@ public class WebProject implements Serializable
|
||||
|
||||
private final NodeRef nodeRef;
|
||||
private String storeId = null;
|
||||
private Boolean hasWorkflow = null;
|
||||
|
||||
public WebProject(final NodeRef nodeRef)
|
||||
{
|
||||
@@ -339,27 +338,9 @@ public class WebProject implements Serializable
|
||||
*/
|
||||
public boolean hasWorkflow()
|
||||
{
|
||||
if (this.hasWorkflow == null)
|
||||
{
|
||||
final NodeService nodeService = this.getServiceRegistry().getNodeService();
|
||||
List<ChildAssociationRef> webWorkflowRefs = nodeService.getChildAssocs(
|
||||
this.nodeRef, WCMAppModel.ASSOC_WEBWORKFLOWDEFAULTS, RegexQNamePattern.MATCH_ALL);
|
||||
this.hasWorkflow = (webWorkflowRefs.size() != 0);
|
||||
if (!this.hasWorkflow)
|
||||
{
|
||||
// might have a workflow assigned to one of the forms used in the website
|
||||
Map<String, Form> forms = getFormsImpl();
|
||||
for (Form form : forms.values())
|
||||
{
|
||||
if (form.getDefaultWorkflow() != null)
|
||||
{
|
||||
this.hasWorkflow = Boolean.TRUE;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return this.hasWorkflow.booleanValue();
|
||||
// note: there's always a submit workflow, as direct to staging is now
|
||||
// also routed via workflow
|
||||
return true;
|
||||
}
|
||||
|
||||
private Map<String, Form> getFormsImpl()
|
||||
|
Reference in New Issue
Block a user