mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
- undeleted and reinstated use of org.alfresco.util.Pair - undeleted org.alfresco.util.PropertyCheck which is used in the deployment code. - undeleted other org.alfresco.util.* classes which probably should never have been moved to spring surf. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@19312 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
279 lines
11 KiB
Java
279 lines
11 KiB
Java
/*
|
|
* Copyright (C) 2005-2010 Alfresco Software Limited.
|
|
*
|
|
* This file is part of Alfresco
|
|
*
|
|
* Alfresco 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 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Alfresco 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.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with Alfresco. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package org.alfresco.web.bean.wcm;
|
|
|
|
import java.io.Serializable;
|
|
import java.util.ArrayList;
|
|
import java.util.HashMap;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
import javax.faces.context.FacesContext;
|
|
import javax.transaction.UserTransaction;
|
|
|
|
import org.alfresco.model.WCMModel;
|
|
import org.alfresco.repo.avm.AVMNodeConverter;
|
|
import org.alfresco.service.cmr.avm.AVMNodeDescriptor;
|
|
import org.alfresco.service.cmr.avm.locking.AVMLock;
|
|
import org.alfresco.service.cmr.avm.locking.AVMLockingService;
|
|
import org.alfresco.service.cmr.avmsync.AVMDifference;
|
|
import org.alfresco.service.cmr.repository.NodeRef;
|
|
import org.alfresco.service.namespace.QName;
|
|
import org.alfresco.util.Pair;
|
|
import org.alfresco.wcm.util.WCMUtil;
|
|
import org.alfresco.web.app.AlfrescoNavigationHandler;
|
|
import org.alfresco.web.app.Application;
|
|
import org.alfresco.web.bean.repository.Repository;
|
|
import org.alfresco.web.bean.workflow.ManageTaskDialog;
|
|
import org.alfresco.web.bean.workflow.WorkflowUtil;
|
|
import org.alfresco.web.config.DialogsConfigElement.DialogButtonConfig;
|
|
import org.alfresco.web.ui.common.Utils;
|
|
import org.apache.commons.logging.Log;
|
|
import org.apache.commons.logging.LogFactory;
|
|
|
|
/**
|
|
* Bean implementation for the "Manage Task" dialog when dealing
|
|
* with the "Change Request" task specifically.
|
|
*
|
|
* @author gavinc
|
|
*/
|
|
public class ManageChangeRequestTaskDialog extends ManageTaskDialog
|
|
{
|
|
private static final long serialVersionUID = -236829535702107101L;
|
|
|
|
protected boolean doResubmitNow = false;
|
|
protected AVMBrowseBean avmBrowseBean;
|
|
transient private AVMLockingService avmLockingService;
|
|
|
|
private final static Log logger = LogFactory.getLog(ManageChangeRequestTaskDialog.class);
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Dialog implementation
|
|
|
|
@Override
|
|
public void init(Map<String, String> parameters)
|
|
{
|
|
super.init(parameters);
|
|
|
|
// reset the doResubmit flag
|
|
this.doResubmitNow = false;
|
|
}
|
|
|
|
@Override
|
|
public List<DialogButtonConfig> getAdditionalButtons()
|
|
{
|
|
List<DialogButtonConfig> buttons = super.getAdditionalButtons();
|
|
|
|
buttons.add(new DialogButtonConfig(ID_PREFIX + "resubmit", null, "task_done_resubmit_all",
|
|
"#{DialogManager.bean.transitionAndResubmit}", "false", null));
|
|
|
|
return buttons;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Event handlers
|
|
|
|
@Override
|
|
public String transition()
|
|
{
|
|
String outcome = getDefaultFinishOutcome();
|
|
|
|
if (logger.isDebugEnabled())
|
|
logger.debug("Transitioning change request task: " + this.getWorkflowTask().id);
|
|
|
|
FacesContext context = FacesContext.getCurrentInstance();
|
|
UserTransaction tx = null;
|
|
|
|
try
|
|
{
|
|
tx = Repository.getUserTransaction(context);
|
|
tx.begin();
|
|
|
|
// get the current username and place in list
|
|
String username = Application.getCurrentUser(context).getUserName();
|
|
List<String> newLockOwners = new ArrayList<String>(1);
|
|
newLockOwners.add(username);
|
|
|
|
// prepare the edited parameters for saving
|
|
Map<QName, Serializable> params = WorkflowUtil.prepareTaskParams(this.taskNode);
|
|
|
|
// update the task with the updated parameters and resources
|
|
this.getWorkflowService().updateTask(this.getWorkflowTask().id, params, null, null);
|
|
|
|
// get the list of nodes that have expired (comparing workflow store to
|
|
// the users main store)
|
|
List<String> submitPaths = new ArrayList<String>();
|
|
List<AVMNodeDescriptor> submitNodes = new ArrayList<AVMNodeDescriptor>();
|
|
Pair<Integer, String> pkgPath = AVMNodeConverter.ToAVMVersionPath(this.workflowPackage);
|
|
AVMNodeDescriptor pkgDesc = this.getAvmService().lookup(pkgPath.getFirst(), pkgPath.getSecond());
|
|
String targetPath = pkgDesc.getIndirection();
|
|
List<AVMDifference> diffs = this.getAvmSyncService().compare(pkgPath.getFirst(),
|
|
pkgPath.getSecond(), -1, targetPath, null);
|
|
|
|
// update the users main store with the changes from the workflow store
|
|
this.getAvmSyncService().update(diffs, null, false, false, true, true, null, null);
|
|
|
|
// move locks
|
|
for (AVMDifference diff : diffs)
|
|
{
|
|
String sourcePath = diff.getSourcePath();
|
|
String destPath = diff.getDestinationPath();
|
|
|
|
// move the lock for this path from the user workflow sandbox to the users main store
|
|
AVMLock lock = this.getAvmLockingService().getLock(AVMUtil.getStoreId(sourcePath),
|
|
AVMUtil.getStoreRelativePath(sourcePath));
|
|
if (lock != null)
|
|
{
|
|
this.getAvmLockingService().modifyLock(AVMUtil.getStoreId(sourcePath),
|
|
AVMUtil.getStoreRelativePath(sourcePath), null,
|
|
AVMUtil.getStoreName(destPath), lock.getOwners(),
|
|
newLockOwners);
|
|
|
|
if (logger.isDebugEnabled())
|
|
{
|
|
logger.debug("Moved lock: " + lock + " to: " +
|
|
this.getAvmLockingService().getLock(AVMUtil.getStoreId(destPath),
|
|
AVMUtil.getStoreRelativePath(destPath)));
|
|
}
|
|
}
|
|
}
|
|
|
|
// re-submit all the items now if requested
|
|
if (this.doResubmitNow)
|
|
{
|
|
for (AVMDifference diff : diffs)
|
|
{
|
|
String destPath = diff.getDestinationPath();
|
|
|
|
AVMNodeDescriptor node = this.getAvmService().lookup(diff.getDestinationVersion(),
|
|
destPath, true);
|
|
if (node != null)
|
|
{
|
|
submitNodes.add(node);
|
|
submitPaths.add(destPath);
|
|
}
|
|
}
|
|
|
|
setupSubmitDialog(context, submitPaths, submitNodes);
|
|
}
|
|
|
|
// signal the default transition to the workflow task
|
|
this.getWorkflowService().endTask(this.getWorkflowTask().id, null);
|
|
|
|
// commit the changes
|
|
tx.commit();
|
|
|
|
// if we get this far close the task dialog
|
|
if (this.doResubmitNow)
|
|
{
|
|
// open the submit dialog if re-submitting
|
|
outcome = AlfrescoNavigationHandler.CLOSE_DIALOG_OUTCOME +
|
|
AlfrescoNavigationHandler.OUTCOME_SEPARATOR +
|
|
AlfrescoNavigationHandler.DIALOG_PREFIX + "submitSandboxItems";
|
|
}
|
|
}
|
|
catch (Throwable e)
|
|
{
|
|
// rollback the transaction
|
|
try { if (tx != null) {tx.rollback();} } catch (Exception ex) {}
|
|
Utils.addErrorMessage(formatErrorMessage(e), e);
|
|
outcome = this.getErrorOutcome(e);
|
|
}
|
|
|
|
return outcome;
|
|
}
|
|
|
|
/**
|
|
* Event handler for the 'Task Done & Re-Submit All' button
|
|
*/
|
|
public String transitionAndResubmit()
|
|
{
|
|
this.doResubmitNow = true;
|
|
return this.transition();
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Setters
|
|
|
|
/**
|
|
* @param avmBrowseBean AVMBrowseBean instance
|
|
*/
|
|
public void setAvmBrowseBean(AVMBrowseBean avmBrowseBean)
|
|
{
|
|
this.avmBrowseBean = avmBrowseBean;
|
|
}
|
|
|
|
/**
|
|
* @param avmLockingService The AVMLockingService instance
|
|
*/
|
|
public void setAvmLockingService(AVMLockingService avmLockingService)
|
|
{
|
|
this.avmLockingService = avmLockingService;
|
|
}
|
|
|
|
// ------------------------------------------------------------------------------
|
|
// Helper methods
|
|
|
|
protected AVMLockingService getAvmLockingService()
|
|
{
|
|
if (this.avmLockingService == null)
|
|
{
|
|
this.avmLockingService = Repository.getServiceRegistry(FacesContext.getCurrentInstance()).getAVMLockingService();
|
|
}
|
|
return this.avmLockingService;
|
|
}
|
|
|
|
/**
|
|
* Submits all the expired items immediately after the task is completed
|
|
* by launching the submit dialog with the expired items set as the modified
|
|
* items
|
|
*
|
|
* @param context Faces context
|
|
* @param submitPaths The list of paths being submitted
|
|
* @param submitNodes Node desriptor for each node being submitted
|
|
*/
|
|
protected void setupSubmitDialog(FacesContext context, List<String> submitPaths,
|
|
List<AVMNodeDescriptor> submitNodes)
|
|
{
|
|
// start the submission dialog with the list of paths to submit
|
|
if (logger.isDebugEnabled())
|
|
logger.debug("starting submit dialog with expired paths: " + submitPaths);
|
|
|
|
// get hold of the node ref that represents the web project the expired items
|
|
// belong to and get the name of the users main store
|
|
NodeRef userStoreNodeRef = (NodeRef)this.getNodeService().getProperty(
|
|
this.workflowPackage, WCMModel.PROP_AVM_DIR_INDIRECTION);
|
|
String userStoreAvmPath = AVMNodeConverter.ToAVMVersionPath(userStoreNodeRef).getSecond();
|
|
String userStoreName = AVMUtil.getStoreName(userStoreAvmPath);
|
|
NodeRef webProjectRef = getWebProjectService().getWebProjectNodeFromStore(WCMUtil.getWebProjectStoreId(userStoreName));
|
|
|
|
// update the UI context to the web project
|
|
this.browseBean.clickSpace(webProjectRef);
|
|
this.avmBrowseBean.setupSandboxAction(userStoreName,
|
|
Application.getCurrentUser(context).getUserName());
|
|
|
|
// setup the context for the submit dialog and initialise it
|
|
this.avmBrowseBean.setNodesForSubmit(submitNodes);
|
|
Map<String, String> dialogParams = new HashMap<String, String>(1);
|
|
dialogParams.put(SubmitDialog.PARAM_LOAD_SELECTED_NODES_FROM_BROWSE_BEAN,
|
|
Boolean.TRUE.toString());
|
|
Application.getDialogManager().setupParameters(dialogParams);
|
|
}
|
|
}
|