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.cxf.common.util.StringUtils; |
20 | |
import org.kuali.rice.kew.actionrequest.*; |
21 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
22 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
23 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
24 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
25 | |
import org.kuali.rice.kew.util.KEWConstants; |
26 | |
import org.kuali.rice.kim.bo.Group; |
27 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
28 | |
|
29 | |
import java.util.List; |
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
public class AdHocAction extends ActionTakenEvent { |
38 | |
|
39 | |
|
40 | |
|
41 | 0 | private static final String NO_ACTION_TAKEN_CODE = null; |
42 | |
|
43 | |
private String actionRequested; |
44 | |
private String nodeName; |
45 | |
private String responsibilityDesc; |
46 | |
private Boolean forceAction; |
47 | |
private Recipient recipient; |
48 | |
private String annotation; |
49 | |
private String requestLabel; |
50 | |
|
51 | |
public AdHocAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal) { |
52 | 0 | super(NO_ACTION_TAKEN_CODE, routeHeader, principal); |
53 | 0 | } |
54 | |
|
55 | |
public AdHocAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation, String actionRequested, String nodeName, Recipient recipient, String responsibilityDesc, Boolean forceAction, String requestLabel) { |
56 | 0 | super(NO_ACTION_TAKEN_CODE, routeHeader, principal, annotation); |
57 | 0 | this.actionRequested = actionRequested; |
58 | 0 | this.nodeName = nodeName; |
59 | 0 | this.responsibilityDesc = responsibilityDesc; |
60 | 0 | this.forceAction = forceAction; |
61 | 0 | this.recipient = recipient; |
62 | 0 | this.annotation = annotation; |
63 | 0 | this.requestLabel = requestLabel; |
64 | 0 | } |
65 | |
|
66 | |
public void recordAction() throws InvalidActionTakenException { |
67 | 0 | String errorMessage = validateActionRules(); |
68 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) { |
69 | 0 | throw new InvalidActionTakenException(errorMessage); |
70 | |
} |
71 | 0 | List targetNodes = KEWServiceLocator.getRouteNodeService().getCurrentNodeInstances(getRouteHeaderId()); |
72 | 0 | String error = adhocRouteAction(targetNodes, false); |
73 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(error)) { |
74 | 0 | throw new InvalidActionTakenException(error); |
75 | |
} |
76 | 0 | } |
77 | |
|
78 | |
|
79 | |
|
80 | |
|
81 | |
@Override |
82 | |
public String validateActionRules() { |
83 | 0 | List targetNodes = KEWServiceLocator.getRouteNodeService().getCurrentNodeInstances(getRouteHeaderId()); |
84 | 0 | return validateActionRulesInternal(targetNodes); |
85 | |
} |
86 | |
|
87 | |
@Override |
88 | |
public String validateActionRules(List<ActionRequestValue> actionRequests) { |
89 | 0 | return validateActionRules(); |
90 | |
} |
91 | |
|
92 | |
private String validateActionRulesInternal(List<RouteNodeInstance> targetNodes) { |
93 | |
|
94 | 0 | if (recipient != null) { |
95 | 0 | if (recipient instanceof KimPrincipalRecipient) { |
96 | 0 | KimPrincipalRecipient principalRecipient = (KimPrincipalRecipient)recipient; |
97 | 0 | if (!KEWServiceLocator.getDocumentTypePermissionService().canReceiveAdHocRequest(principalRecipient.getPrincipalId(), getRouteHeader().getDocumentType(), actionRequested)) { |
98 | 0 | return "The principal '" + principalRecipient.getPrincipal().getPrincipalName() + "' does not have permission to recieve ad hoc requests on DocumentType '" + getRouteHeader().getDocumentType().getName() + "'"; |
99 | |
} |
100 | 0 | } else if (recipient instanceof KimGroupRecipient) { |
101 | 0 | Group group = ((KimGroupRecipient)recipient).getGroup(); |
102 | 0 | if (!KEWServiceLocator.getDocumentTypePermissionService().canGroupReceiveAdHocRequest("" + group.getGroupId(), getRouteHeader().getDocumentType(), actionRequested)) { |
103 | 0 | return "The group '" + group.getGroupName() + "' does not have permission to recieve ad hoc requests on DocumentType '" + getRouteHeader().getDocumentType().getName() + "'"; |
104 | |
} |
105 | 0 | } else { |
106 | 0 | return "Invalid Recipient type encountered: " + recipient.getClass(); |
107 | |
} |
108 | |
} |
109 | 0 | return adhocRouteAction(targetNodes, true); |
110 | |
} |
111 | |
|
112 | |
private String adhocRouteAction(List<RouteNodeInstance> targetNodes, boolean forValidationOnly) { |
113 | |
|
114 | |
|
115 | |
|
116 | 0 | boolean requestCreated = false; |
117 | 0 | for (RouteNodeInstance routeNode : targetNodes) |
118 | |
{ |
119 | |
|
120 | 0 | if (nodeName == null || routeNode.getName().equals(nodeName)) |
121 | |
{ |
122 | 0 | String message = createAdHocRequest(routeNode, forValidationOnly); |
123 | 0 | if (!StringUtils.isEmpty(message)) |
124 | |
{ |
125 | 0 | return message; |
126 | |
} |
127 | 0 | requestCreated = true; |
128 | 0 | if (nodeName == null) |
129 | |
{ |
130 | 0 | break; |
131 | |
} |
132 | 0 | } |
133 | |
} |
134 | |
|
135 | 0 | if (!requestCreated && targetNodes.isEmpty()) { |
136 | 0 | String message = createAdHocRequest(null, forValidationOnly); |
137 | 0 | if (!StringUtils.isEmpty(message)) { |
138 | 0 | return message; |
139 | |
} |
140 | 0 | requestCreated = true; |
141 | |
} |
142 | |
|
143 | 0 | if (!requestCreated) { |
144 | 0 | return "Didn't create request. The node name " + nodeName + " given is probably invalid "; |
145 | |
} |
146 | 0 | return ""; |
147 | |
} |
148 | |
|
149 | |
private String createAdHocRequest(RouteNodeInstance routeNode, boolean forValidationOnly) { |
150 | 0 | ActionRequestValue adhocRequest = new ActionRequestValue(); |
151 | 0 | if (!forValidationOnly) { |
152 | 0 | ActionRequestFactory arFactory = new ActionRequestFactory(routeHeader, routeNode); |
153 | 0 | adhocRequest = arFactory.createActionRequest(actionRequested, recipient, responsibilityDesc, forceAction, annotation); |
154 | 0 | adhocRequest.setResponsibilityId(KEWConstants.ADHOC_REQUEST_RESPONSIBILITY_ID); |
155 | 0 | adhocRequest.setRequestLabel(requestLabel); |
156 | 0 | } else { |
157 | 0 | adhocRequest.setActionRequested(actionRequested); |
158 | |
} |
159 | 0 | if (adhocRequest.isApproveOrCompleteRequest() && ! (routeHeader.isEnroute() || routeHeader.isStateInitiated() || |
160 | |
routeHeader.isStateSaved())) { |
161 | 0 | return "Cannot AdHoc a Complete or Approve request when document is in state '" + routeHeader.getDocRouteStatusLabel() + "'."; |
162 | |
} |
163 | 0 | if (!forValidationOnly) { |
164 | |
|
165 | 0 | if (routeHeader.isDisaproved() || routeHeader.isCanceled() || routeHeader.isFinal() || routeHeader.isProcessed()) { |
166 | 0 | getActionRequestService().activateRequest(adhocRequest); |
167 | |
} else { |
168 | 0 | KEWServiceLocator.getActionRequestService().saveActionRequest(adhocRequest); |
169 | |
} |
170 | |
} |
171 | 0 | return ""; |
172 | |
} |
173 | |
} |