1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.actions; |
18 | |
|
19 | |
import java.util.Collection; |
20 | |
import java.util.HashSet; |
21 | |
import java.util.List; |
22 | |
import java.util.Set; |
23 | |
|
24 | |
import org.apache.log4j.MDC; |
25 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
26 | |
import org.kuali.rice.kew.actionrequest.Recipient; |
27 | |
import org.kuali.rice.kew.actions.asyncservices.MoveDocumentService; |
28 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
29 | |
import org.kuali.rice.kew.api.action.MovePoint; |
30 | |
import org.kuali.rice.kew.engine.BlanketApproveEngine; |
31 | |
import org.kuali.rice.kew.engine.OrchestrationConfig; |
32 | |
import org.kuali.rice.kew.engine.OrchestrationConfig.EngineCapability; |
33 | |
import org.kuali.rice.kew.engine.node.RouteNode; |
34 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
35 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
36 | |
import org.kuali.rice.kew.messaging.MessageServiceNames; |
37 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
38 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
39 | |
import org.kuali.rice.kew.util.KEWConstants; |
40 | |
import org.kuali.rice.kim.api.identity.principal.PrincipalContract; |
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
public class MoveDocumentAction extends ActionTakenEvent { |
52 | |
|
53 | 0 | protected final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(getClass()); |
54 | |
|
55 | |
private MovePoint movePoint; |
56 | |
|
57 | |
public MoveDocumentAction(DocumentRouteHeaderValue routeHeader, PrincipalContract principal) { |
58 | 0 | super(KEWConstants.ACTION_TAKEN_MOVE_CD, routeHeader, principal); |
59 | 0 | } |
60 | |
|
61 | |
public MoveDocumentAction(DocumentRouteHeaderValue routeHeader, PrincipalContract principal, String annotation, MovePoint movePoint) { |
62 | 0 | super(KEWConstants.ACTION_TAKEN_MOVE_CD, routeHeader, principal, annotation); |
63 | 0 | this.movePoint = movePoint; |
64 | 0 | } |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
@Override |
70 | |
public String validateActionRules() { |
71 | 0 | return validateActionRules(getActionRequestService().findAllPendingRequests(routeHeader.getDocumentId()), KEWServiceLocator.getRouteNodeService().getActiveNodeInstances(getRouteHeader().getDocumentId())); |
72 | |
} |
73 | |
|
74 | |
@Override |
75 | |
public String validateActionRules(List<ActionRequestValue> actionRequests) { |
76 | 0 | return validateActionRules(actionRequests, KEWServiceLocator.getRouteNodeService().getActiveNodeInstances(getRouteHeader().getDocumentId())); |
77 | |
} |
78 | |
|
79 | |
private String validateActionRules(List<ActionRequestValue> actionRequests, Collection activeNodes) { |
80 | 0 | if (!getRouteHeader().isValidActionToTake(getActionPerformedCode())) { |
81 | 0 | return "Document is not in a state to be moved"; |
82 | |
} |
83 | 0 | if (activeNodes.isEmpty()) { |
84 | 0 | return "Document has no active nodes."; |
85 | |
} |
86 | 0 | List<ActionRequestValue> filteredActionRequests = filterActionRequestsByCode(actionRequests, KEWConstants.ACTION_REQUEST_COMPLETE_REQ); |
87 | 0 | if (!isActionCompatibleRequest(filteredActionRequests)) { |
88 | 0 | return "No request for the user is compatible with the MOVE action"; |
89 | |
} |
90 | 0 | return ""; |
91 | |
} |
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
public boolean isActionCompatibleRequest(List<ActionRequestValue> requests) { |
98 | |
|
99 | 0 | return true; |
100 | |
} |
101 | |
|
102 | |
public void recordAction() throws InvalidActionTakenException { |
103 | 0 | MDC.put("docId", getRouteHeader().getDocumentId()); |
104 | 0 | updateSearchableAttributesIfPossible(); |
105 | 0 | LOG.debug("Moving document " + getRouteHeader().getDocumentId() + " to point: " + displayMovePoint(movePoint) + ", annotation: " + annotation); |
106 | |
|
107 | 0 | List actionRequests = getActionRequestService().findAllValidRequests(getPrincipal().getPrincipalId(), getDocumentId(), KEWConstants.ACTION_REQUEST_COMPLETE_REQ); |
108 | 0 | Collection activeNodes = KEWServiceLocator.getRouteNodeService().getActiveNodeInstances(getRouteHeader().getDocumentId()); |
109 | 0 | String errorMessage = validateActionRules(actionRequests,activeNodes); |
110 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) { |
111 | 0 | throw new InvalidActionTakenException(errorMessage); |
112 | |
} |
113 | |
|
114 | 0 | RouteNodeInstance startNodeInstance = determineStartNode(activeNodes, movePoint); |
115 | |
|
116 | 0 | LOG.debug("Record the move action"); |
117 | 0 | Recipient delegator = findDelegatorForActionRequests(actionRequests); |
118 | 0 | ActionTakenValue actionTaken = saveActionTaken(delegator); |
119 | 0 | getActionRequestService().deactivateRequests(actionTaken, actionRequests); |
120 | 0 | notifyActionTaken(actionTaken); |
121 | |
|
122 | |
|
123 | 0 | if (movePoint.getStepsToMove() > 0) { |
124 | 0 | Set<String> targetNodeNames = new HashSet<String>(); |
125 | 0 | targetNodeNames.add(determineFutureNodeName(startNodeInstance, movePoint)); |
126 | |
|
127 | 0 | MoveDocumentService moveDocumentProcessor = MessageServiceNames.getMoveDocumentProcessorService(getRouteHeader()); |
128 | 0 | moveDocumentProcessor.moveDocument(getPrincipal().getPrincipalId(), getRouteHeader(), actionTaken, targetNodeNames); |
129 | |
|
130 | 0 | } else { |
131 | 0 | String targetNodeName = determineReturnNodeName(startNodeInstance, movePoint); |
132 | 0 | ReturnToPreviousNodeAction returnAction = new ReturnToPreviousNodeAction(KEWConstants.ACTION_TAKEN_MOVE_CD, getRouteHeader(), getPrincipal(), annotation, targetNodeName, false); |
133 | |
|
134 | 0 | returnAction.recordAction(); |
135 | |
} |
136 | 0 | } |
137 | |
|
138 | |
public void performDeferredMoveDocumentWork(ActionTakenValue actionTaken, Set<String> nodeNames) throws Exception { |
139 | |
|
140 | 0 | if (getRouteHeader().isInException()) { |
141 | 0 | LOG.debug("Moving document back to Enroute from Exception"); |
142 | |
|
143 | 0 | String oldStatus = getRouteHeader().getDocRouteStatus(); |
144 | 0 | getRouteHeader().markDocumentEnroute(); |
145 | |
|
146 | 0 | String newStatus = getRouteHeader().getDocRouteStatus(); |
147 | 0 | notifyStatusChange(newStatus, oldStatus); |
148 | |
} |
149 | 0 | OrchestrationConfig config = new OrchestrationConfig(EngineCapability.BLANKET_APPROVAL, nodeNames, actionTaken, false, false); |
150 | 0 | BlanketApproveEngine blanketApproveEngine = KEWServiceLocator.getWorkflowEngineFactory().newEngine(config); |
151 | 0 | blanketApproveEngine.process(getRouteHeader().getDocumentId(), null); |
152 | |
|
153 | 0 | queueDocumentProcessing(); |
154 | 0 | } |
155 | |
|
156 | |
private RouteNodeInstance determineStartNode(Collection<RouteNodeInstance> activeNodes, MovePoint movePoint) throws InvalidActionTakenException { |
157 | 0 | RouteNodeInstance startNodeInstance = null; |
158 | 0 | for (RouteNodeInstance nodeInstance : activeNodes) |
159 | |
{ |
160 | 0 | if (nodeInstance.getName().equals(movePoint.getStartNodeName())) |
161 | |
{ |
162 | 0 | if (startNodeInstance != null) |
163 | |
{ |
164 | 0 | throw new InvalidActionTakenException("More than one active node exists with the given name: " + movePoint.getStartNodeName()); |
165 | |
} |
166 | 0 | startNodeInstance = nodeInstance; |
167 | |
} |
168 | |
} |
169 | 0 | if (startNodeInstance == null) { |
170 | 0 | throw new InvalidActionTakenException("Could not locate an active node with the given name: " + movePoint.getStartNodeName()); |
171 | |
} |
172 | 0 | return startNodeInstance; |
173 | |
} |
174 | |
|
175 | |
private String determineFutureNodeName(RouteNodeInstance startNodeInstance, MovePoint movePoint) throws InvalidActionTakenException { |
176 | 0 | return determineFutureNodeName(startNodeInstance.getRouteNode(), movePoint, 0, new HashSet()); |
177 | |
} |
178 | |
|
179 | |
private String determineFutureNodeName(RouteNode node, MovePoint movePoint, int currentStep, Set nodesProcessed) throws InvalidActionTakenException { |
180 | 0 | if (nodesProcessed.contains(node.getRouteNodeId())) { |
181 | 0 | throw new InvalidActionTakenException("Detected a cycle at node " + node.getRouteNodeName() + " when attempting to move document."); |
182 | |
} |
183 | 0 | nodesProcessed.add(node.getRouteNodeId()); |
184 | 0 | if (currentStep == movePoint.getStepsToMove()) { |
185 | 0 | return node.getRouteNodeName(); |
186 | |
} |
187 | 0 | List nextNodes = node.getNextNodes(); |
188 | 0 | if (nextNodes.size() == 0) { |
189 | 0 | throw new InvalidActionTakenException("Could not proceed forward, there are no more nodes in the route. Halted on step " + currentStep); |
190 | |
} |
191 | 0 | if (nextNodes.size() != 1) { |
192 | 0 | throw new InvalidActionTakenException("Cannot move forward in a multi-branch path. Located "+nextNodes.size()+" branches. Halted on step " + currentStep); |
193 | |
} |
194 | 0 | return determineFutureNodeName((RouteNode)nextNodes.get(0), movePoint, currentStep+1, nodesProcessed); |
195 | |
} |
196 | |
|
197 | |
private String determineReturnNodeName(RouteNodeInstance startNodeInstance, MovePoint movePoint) throws InvalidActionTakenException { |
198 | 0 | return determineReturnNodeName(startNodeInstance.getRouteNode(), movePoint, 0); |
199 | |
} |
200 | |
|
201 | |
private String determineReturnNodeName(RouteNode node, MovePoint movePoint, int currentStep) throws InvalidActionTakenException { |
202 | 0 | if (currentStep == movePoint.getStepsToMove()) { |
203 | 0 | return node.getRouteNodeName(); |
204 | |
} |
205 | 0 | List previousNodes = node.getPreviousNodes(); |
206 | 0 | if (previousNodes.size() == 0) { |
207 | 0 | throw new InvalidActionTakenException("Could not locate the named target node in the document's past route. Halted on step " + currentStep); |
208 | |
} |
209 | 0 | if (previousNodes.size() != 1) { |
210 | 0 | throw new InvalidActionTakenException("Located a multi-branch path, could not proceed backward past this point. Halted on step " + currentStep); |
211 | |
} |
212 | 0 | return determineReturnNodeName((RouteNode)previousNodes.get(0), movePoint, currentStep-1); |
213 | |
} |
214 | |
|
215 | |
private String displayMovePoint(MovePoint movePoint) { |
216 | 0 | return "fromNode="+movePoint.getStartNodeName()+", stepsToMove="+movePoint.getStepsToMove(); |
217 | |
} |
218 | |
|
219 | |
} |