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 org.apache.log4j.MDC; |
20 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
21 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
22 | |
import org.kuali.rice.kew.engine.node.Process; |
23 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
24 | |
import org.kuali.rice.kew.exception.WorkflowException; |
25 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
26 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
27 | |
import org.kuali.rice.kew.util.KEWConstants; |
28 | |
import org.kuali.rice.kim.api.entity.principal.PrincipalContract; |
29 | |
|
30 | |
|
31 | |
import java.util.List; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
public class RouteDocumentAction extends ActionTakenEvent { |
41 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(RouteDocumentAction.class); |
42 | |
|
43 | |
public RouteDocumentAction(DocumentRouteHeaderValue rh, PrincipalContract principal) { |
44 | 0 | super(KEWConstants.ACTION_TAKEN_COMPLETED_CD, rh, principal); |
45 | 0 | } |
46 | |
|
47 | |
public RouteDocumentAction(DocumentRouteHeaderValue rh, PrincipalContract principal, String annotation) { |
48 | 0 | super(KEWConstants.ACTION_TAKEN_COMPLETED_CD, rh, principal, annotation); |
49 | 0 | } |
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
@Override |
55 | |
public String getActionPerformedCode() { |
56 | 0 | return KEWConstants.ACTION_TAKEN_ROUTED_CD; |
57 | |
} |
58 | |
|
59 | |
|
60 | |
|
61 | |
|
62 | |
@Override |
63 | |
public String validateActionRules() { |
64 | |
|
65 | 0 | if (!getRouteHeader().isValidActionToTake(getActionPerformedCode())) { |
66 | 0 | return "Document is not in a state to be routed"; |
67 | |
} |
68 | 0 | if (! KEWServiceLocator.getDocumentTypePermissionService().canRoute(getPrincipal().getPrincipalId(), getRouteHeader())) { |
69 | 0 | return "User is not authorized to Route document"; |
70 | |
} |
71 | 0 | return ""; |
72 | |
} |
73 | |
|
74 | |
@Override |
75 | |
public String validateActionRules(List<ActionRequestValue> actionRequests) { |
76 | 0 | return validateActionRules(); |
77 | |
} |
78 | |
|
79 | |
|
80 | |
|
81 | |
|
82 | |
|
83 | |
public void recordAction() throws InvalidActionTakenException { |
84 | 0 | MDC.put("docId", getRouteHeader().getDocumentId()); |
85 | 0 | updateSearchableAttributesIfPossible(); |
86 | |
|
87 | 0 | LOG.debug("Routing document : " + annotation); |
88 | |
|
89 | 0 | LOG.debug("Checking to see if the action is legal"); |
90 | 0 | String errorMessage = validateActionRules(); |
91 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) { |
92 | 0 | throw new InvalidActionTakenException(errorMessage); |
93 | |
} |
94 | |
|
95 | |
|
96 | |
|
97 | 0 | LOG.debug("Record the routing action"); |
98 | 0 | ActionTakenValue actionTaken = saveActionTaken(); |
99 | |
|
100 | |
|
101 | 0 | List<ActionRequestValue> actionRequests = getActionRequestService().findPendingByDoc(getDocumentId()); |
102 | 0 | LOG.debug("Deactivate all pending action requests"); |
103 | |
|
104 | 0 | for (ActionRequestValue actionRequest : actionRequests) |
105 | |
{ |
106 | |
|
107 | 0 | if ((getPrincipal().getPrincipalId().equals(actionRequest.getPrincipalId())) && (actionRequest.isActive())) |
108 | |
{ |
109 | 0 | getActionRequestService().deactivateRequest(actionTaken, actionRequest); |
110 | |
} |
111 | |
|
112 | 0 | else if (KEWConstants.SAVED_REQUEST_RESPONSIBILITY_ID.equals(actionRequest.getResponsibilityId())) |
113 | |
{ |
114 | 0 | getActionRequestService().deactivateRequest(actionTaken, actionRequest); |
115 | |
} |
116 | |
} |
117 | |
|
118 | 0 | notifyActionTaken(actionTaken); |
119 | |
|
120 | |
try { |
121 | 0 | String oldStatus = getRouteHeader().getDocRouteStatus(); |
122 | 0 | getRouteHeader().markDocumentEnroute(); |
123 | |
|
124 | 0 | if (((Process)getRouteHeader().getDocumentType().getProcesses().get(0)).getInitialRouteNode() == null) { |
125 | 0 | getRouteHeader().markDocumentApproved(); |
126 | 0 | getRouteHeader().markDocumentProcessed(); |
127 | 0 | getRouteHeader().markDocumentFinalized(); |
128 | |
} |
129 | |
|
130 | 0 | getRouteHeader().setRoutedByUserWorkflowId(getPrincipal().getPrincipalId()); |
131 | |
|
132 | 0 | String newStatus = getRouteHeader().getDocRouteStatus(); |
133 | 0 | notifyStatusChange(newStatus, oldStatus); |
134 | 0 | KEWServiceLocator.getRouteHeaderService().saveRouteHeader(getRouteHeader()); |
135 | 0 | } catch (WorkflowException ex) { |
136 | 0 | LOG.warn(ex, ex); |
137 | 0 | throw new InvalidActionTakenException(ex.getMessage()); |
138 | 0 | } |
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | 0 | } |
144 | |
} |