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.List; |
20 | |
|
21 | |
import javax.xml.namespace.QName; |
22 | |
|
23 | |
import org.apache.log4j.Logger; |
24 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
25 | |
import org.kuali.rice.kew.actionrequest.KimGroupRecipient; |
26 | |
import org.kuali.rice.kew.actionrequest.KimPrincipalRecipient; |
27 | |
import org.kuali.rice.kew.actionrequest.Recipient; |
28 | |
import org.kuali.rice.kew.actionrequest.service.ActionRequestService; |
29 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
30 | |
import org.kuali.rice.kew.docsearch.service.SearchableAttributeProcessingService; |
31 | |
import org.kuali.rice.kew.engine.RouteContext; |
32 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
33 | |
import org.kuali.rice.kew.exception.WorkflowRuntimeException; |
34 | |
import org.kuali.rice.kew.messaging.MessageServiceNames; |
35 | |
import org.kuali.rice.kew.messaging.RouteDocumentMessageService; |
36 | |
import org.kuali.rice.kew.postprocessor.DocumentRouteStatusChange; |
37 | |
import org.kuali.rice.kew.postprocessor.PostProcessor; |
38 | |
import org.kuali.rice.kew.postprocessor.ProcessDocReport; |
39 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
40 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
41 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
42 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
43 | |
import org.kuali.rice.ksb.messaging.service.KSBXMLService; |
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
|
54 | |
public abstract class ActionTakenEvent { |
55 | |
|
56 | 0 | private static final Logger LOG = Logger.getLogger(ActionTakenEvent.class); |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
private String actionTakenCode; |
62 | |
|
63 | |
protected final String annotation; |
64 | |
|
65 | |
protected DocumentRouteHeaderValue routeHeader; |
66 | |
|
67 | |
private final KimPrincipal principal; |
68 | |
|
69 | |
private final boolean runPostProcessorLogic; |
70 | |
|
71 | |
private List<String> groupIdsForPrincipal; |
72 | |
|
73 | |
|
74 | 0 | private boolean queueDocumentAfterAction = true; |
75 | |
|
76 | |
|
77 | |
public ActionTakenEvent(String actionTakenCode, DocumentRouteHeaderValue routeHeader, KimPrincipal principal) { |
78 | 0 | this(actionTakenCode, routeHeader, principal, null, true); |
79 | 0 | } |
80 | |
|
81 | |
public ActionTakenEvent(String actionTakenCode, DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation) { |
82 | 0 | this(actionTakenCode, routeHeader, principal, annotation, true); |
83 | 0 | } |
84 | |
|
85 | 0 | public ActionTakenEvent(String actionTakenCode, DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation, boolean runPostProcessorLogic) { |
86 | 0 | this.actionTakenCode = actionTakenCode; |
87 | 0 | this.routeHeader = routeHeader; |
88 | 0 | this.principal = principal; |
89 | 0 | this.annotation = annotation == null ? "" : annotation; |
90 | 0 | this.runPostProcessorLogic = runPostProcessorLogic; |
91 | 0 | this.queueDocumentAfterAction = true; |
92 | 0 | } |
93 | |
|
94 | |
public ActionRequestService getActionRequestService() { |
95 | 0 | return (ActionRequestService) KEWServiceLocator.getService(KEWServiceLocator.ACTION_REQUEST_SRV); |
96 | |
} |
97 | |
|
98 | |
public DocumentRouteHeaderValue getRouteHeader() { |
99 | 0 | return routeHeader; |
100 | |
} |
101 | |
|
102 | |
public void setRouteHeader(DocumentRouteHeaderValue routeHeader) { |
103 | 0 | this.routeHeader = routeHeader; |
104 | 0 | } |
105 | |
|
106 | |
public KimPrincipal getPrincipal() { |
107 | 0 | return principal; |
108 | |
} |
109 | |
|
110 | |
|
111 | |
|
112 | |
|
113 | |
|
114 | |
|
115 | |
|
116 | |
|
117 | |
protected String getActionPerformedCode() { |
118 | 0 | return getActionTakenCode(); |
119 | |
} |
120 | |
|
121 | |
|
122 | |
|
123 | |
|
124 | |
|
125 | |
protected boolean isActionValid() { |
126 | 0 | return org.apache.commons.lang.StringUtils.isEmpty(validateActionRules()); |
127 | |
} |
128 | |
|
129 | |
|
130 | |
|
131 | |
|
132 | |
|
133 | |
|
134 | |
public abstract String validateActionRules(); |
135 | |
public abstract String validateActionRules(List<ActionRequestValue> actionRequests); |
136 | |
|
137 | |
|
138 | |
|
139 | |
|
140 | |
|
141 | |
|
142 | |
|
143 | |
|
144 | |
public List<ActionRequestValue> filterActionRequestsByCode(List<ActionRequestValue> actionRequests, String requestCode) { |
145 | 0 | return getActionRequestService().filterActionRequestsByCode(actionRequests, getPrincipal().getPrincipalId(), getGroupIdsForPrincipal(), requestCode); |
146 | |
} |
147 | |
|
148 | |
protected boolean isActionCompatibleRequest(List<ActionRequestValue> requests) { |
149 | 0 | LOG.debug("isActionCompatibleRequest() Default method = returning true"); |
150 | 0 | return true; |
151 | |
} |
152 | |
|
153 | |
public void performAction() throws InvalidActionTakenException { |
154 | 0 | recordAction(); |
155 | 0 | if (queueDocumentAfterAction) { |
156 | 0 | queueDocumentProcessing(); |
157 | |
} |
158 | |
|
159 | 0 | } |
160 | |
|
161 | |
protected abstract void recordAction() throws InvalidActionTakenException; |
162 | |
|
163 | |
public void performDeferredAction() { |
164 | |
|
165 | 0 | } |
166 | |
|
167 | |
protected void updateSearchableAttributesIfPossible() { |
168 | |
|
169 | |
|
170 | 0 | RouteContext routeContext = RouteContext.getCurrentRouteContext(); |
171 | 0 | if (routeHeader.getDocumentType().hasSearchableAttributes() && !routeContext.isSearchIndexingRequestedForContext()) { |
172 | 0 | routeContext.requestSearchIndexingForContext(); |
173 | |
|
174 | 0 | SearchableAttributeProcessingService searchableAttService = (SearchableAttributeProcessingService) MessageServiceNames.getSearchableAttributeService(getRouteHeader()); |
175 | 0 | searchableAttService.indexDocument(getRouteHeaderId()); |
176 | |
} |
177 | 0 | } |
178 | |
|
179 | |
protected void notifyActionTaken(ActionTakenValue actionTaken) { |
180 | 0 | if (!isRunPostProcessorLogic()) { |
181 | 0 | return; |
182 | |
} |
183 | 0 | if (actionTaken == null) { |
184 | 0 | return; |
185 | |
} |
186 | |
try { |
187 | 0 | LOG.debug("Notifying post processor of action taken"); |
188 | 0 | PostProcessor postProcessor = routeHeader.getDocumentType().getPostProcessor(); |
189 | 0 | ProcessDocReport report = postProcessor.doActionTaken(new org.kuali.rice.kew.postprocessor.ActionTakenEvent(routeHeader.getRouteHeaderId(), routeHeader.getAppDocId(), actionTaken)); |
190 | 0 | if (!report.isSuccess()) { |
191 | 0 | LOG.warn(report.getMessage(), report.getProcessException()); |
192 | 0 | throw new InvalidActionTakenException(report.getMessage()); |
193 | |
} |
194 | |
|
195 | 0 | } catch (Exception ex) { |
196 | 0 | LOG.warn(ex, ex); |
197 | 0 | throw new WorkflowRuntimeException(ex.getMessage(), ex); |
198 | 0 | } |
199 | 0 | } |
200 | |
|
201 | |
protected void notifyStatusChange(String newStatusCode, String oldStatusCode) throws InvalidActionTakenException { |
202 | 0 | if (!isRunPostProcessorLogic()) { |
203 | 0 | return; |
204 | |
} |
205 | 0 | DocumentRouteStatusChange statusChangeEvent = new DocumentRouteStatusChange(routeHeader.getRouteHeaderId(), routeHeader.getAppDocId(), oldStatusCode, newStatusCode); |
206 | |
try { |
207 | 0 | LOG.debug("Notifying post processor of status change " + oldStatusCode + "->" + newStatusCode); |
208 | 0 | PostProcessor postProcessor = routeHeader.getDocumentType().getPostProcessor(); |
209 | 0 | ProcessDocReport report = postProcessor.doRouteStatusChange(statusChangeEvent); |
210 | 0 | if (!report.isSuccess()) { |
211 | 0 | LOG.warn(report.getMessage(), report.getProcessException()); |
212 | 0 | throw new InvalidActionTakenException(report.getMessage()); |
213 | |
} |
214 | 0 | } catch (Exception ex) { |
215 | 0 | throw new WorkflowRuntimeException(ex); |
216 | 0 | } |
217 | 0 | } |
218 | |
|
219 | |
|
220 | |
|
221 | |
|
222 | |
protected void queueDocumentProcessing() { |
223 | 0 | QName documentServiceName = new QName(getRouteHeader().getDocumentType().getServiceNamespace(), MessageServiceNames.DOCUMENT_ROUTING_SERVICE); |
224 | 0 | KSBXMLService documentRoutingService = (KSBXMLService) MessageServiceNames.getServiceAsynchronously(documentServiceName, getRouteHeader()); |
225 | |
try { |
226 | |
|
227 | 0 | RouteDocumentMessageService.RouteMessageXmlElement element = new RouteDocumentMessageService.RouteMessageXmlElement(getRouteHeaderId(),isRunPostProcessorLogic(), RouteContext.getCurrentRouteContext().isSearchIndexingRequestedForContext()); |
228 | 0 | String content = element.translate(); |
229 | 0 | documentRoutingService.invoke(content); |
230 | 0 | } catch (Exception e) { |
231 | 0 | throw new WorkflowRuntimeException(e); |
232 | 0 | } |
233 | 0 | } |
234 | |
|
235 | |
protected ActionTakenValue saveActionTaken() { |
236 | 0 | return saveActionTaken(Boolean.TRUE); |
237 | |
} |
238 | |
|
239 | |
protected ActionTakenValue saveActionTaken(Boolean currentInd) { |
240 | 0 | return saveActionTaken(currentInd, null); |
241 | |
} |
242 | |
|
243 | |
protected ActionTakenValue saveActionTaken(Recipient delegator) { |
244 | 0 | return saveActionTaken(Boolean.TRUE, delegator); |
245 | |
} |
246 | |
|
247 | |
protected ActionTakenValue saveActionTaken(Boolean currentInd, Recipient delegator) { |
248 | 0 | ActionTakenValue val = new ActionTakenValue(); |
249 | 0 | val.setActionTaken(getActionTakenCode()); |
250 | 0 | val.setAnnotation(annotation); |
251 | 0 | val.setDocVersion(routeHeader.getDocVersion()); |
252 | 0 | val.setRouteHeaderId(routeHeader.getRouteHeaderId()); |
253 | 0 | val.setPrincipalId(principal.getPrincipalId()); |
254 | 0 | if (delegator instanceof KimPrincipalRecipient) { |
255 | 0 | val.setDelegatorPrincipalId(((KimPrincipalRecipient)delegator).getPrincipalId()); |
256 | 0 | } else if (delegator instanceof KimGroupRecipient) { |
257 | 0 | val.setDelegatorGroupId(((KimGroupRecipient) delegator).getGroupId()); |
258 | |
} |
259 | |
|
260 | 0 | val.setCurrentIndicator(currentInd); |
261 | 0 | KEWServiceLocator.getActionTakenService().saveActionTaken(val); |
262 | 0 | return val; |
263 | |
} |
264 | |
|
265 | |
|
266 | |
|
267 | |
|
268 | |
protected Recipient findDelegatorForActionRequests(List actionRequests) { |
269 | 0 | return getActionRequestService().findDelegator(actionRequests); |
270 | |
} |
271 | |
|
272 | |
public String getActionTakenCode() { |
273 | 0 | return actionTakenCode; |
274 | |
} |
275 | |
|
276 | |
protected void setActionTakenCode(String string) { |
277 | 0 | actionTakenCode = string; |
278 | 0 | } |
279 | |
|
280 | |
protected Long getRouteHeaderId() { |
281 | 0 | return this.routeHeader.getRouteHeaderId(); |
282 | |
} |
283 | |
|
284 | |
|
285 | |
|
286 | |
|
287 | |
|
288 | |
protected boolean isRunPostProcessorLogic() { |
289 | 0 | return this.runPostProcessorLogic; |
290 | |
} |
291 | |
|
292 | |
protected List<String> getGroupIdsForPrincipal() { |
293 | 0 | if (groupIdsForPrincipal == null) { |
294 | 0 | groupIdsForPrincipal = KIMServiceLocator.getIdentityManagementService().getGroupIdsForPrincipal(getPrincipal().getPrincipalId()); |
295 | |
} |
296 | 0 | return groupIdsForPrincipal; |
297 | |
} |
298 | |
|
299 | |
|
300 | |
public void setQueueDocumentAfterAction(boolean queueDocumentAfterAction) { |
301 | 0 | this.queueDocumentAfterAction = queueDocumentAfterAction; |
302 | 0 | } |
303 | |
|
304 | |
|
305 | |
|
306 | |
} |