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.kuali.rice.kew.actiontaken.ActionTakenValue; |
20 | |
import org.kuali.rice.kew.doctype.bo.DocumentType; |
21 | |
import org.kuali.rice.kew.engine.BlanketApproveEngine; |
22 | |
import org.kuali.rice.kew.engine.OrchestrationConfig; |
23 | |
import org.kuali.rice.kew.exception.*; |
24 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
25 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
26 | |
import org.kuali.rice.kew.util.KEWConstants; |
27 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
28 | |
|
29 | |
import java.util.ArrayList; |
30 | |
import java.util.Collections; |
31 | |
import java.util.List; |
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
|
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
public class SuperUserNodeApproveEvent extends SuperUserActionTakenEvent { |
42 | |
|
43 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(SuperUserNodeApproveEvent.class); |
44 | |
private String nodeName; |
45 | |
|
46 | |
public SuperUserNodeApproveEvent(DocumentRouteHeaderValue routeHeader, KimPrincipal principal) { |
47 | 0 | super(KEWConstants.ACTION_TAKEN_SU_ROUTE_LEVEL_APPROVED_CD, routeHeader, principal); |
48 | 0 | this.superUserAction = KEWConstants.SUPER_USER_ROUTE_LEVEL_APPROVE; |
49 | 0 | } |
50 | |
|
51 | |
public SuperUserNodeApproveEvent(DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation, boolean runPostProcessor, String nodeName) { |
52 | 0 | super(KEWConstants.ACTION_TAKEN_SU_ROUTE_LEVEL_APPROVED_CD, routeHeader, principal, annotation, runPostProcessor); |
53 | 0 | this.superUserAction = KEWConstants.SUPER_USER_ROUTE_LEVEL_APPROVE; |
54 | 0 | this.nodeName = nodeName; |
55 | 0 | } |
56 | |
|
57 | |
public void recordAction() throws InvalidActionTakenException { |
58 | |
|
59 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(nodeName)) { |
60 | 0 | throw new InvalidActionTakenException("No approval node name set"); |
61 | |
} |
62 | |
|
63 | 0 | DocumentType docType = getRouteHeader().getDocumentType(); |
64 | |
|
65 | 0 | String errorMessage = super.validateActionRules(); |
66 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) { |
67 | 0 | LOG.info("User not authorized"); |
68 | 0 | List<WorkflowServiceErrorImpl> errors = new ArrayList<WorkflowServiceErrorImpl>(); |
69 | 0 | errors.add(new WorkflowServiceErrorImpl(errorMessage, SuperUserActionTakenEvent.AUTHORIZATION)); |
70 | 0 | throw new WorkflowServiceErrorException(errorMessage, errors); |
71 | |
} |
72 | |
|
73 | 0 | ActionTakenValue actionTaken = saveActionTaken(); |
74 | |
|
75 | 0 | notifyActionTaken(actionTaken); |
76 | |
|
77 | 0 | if (getRouteHeader().isInException()) { |
78 | 0 | LOG.debug("Moving document back to Enroute from Exception"); |
79 | 0 | String oldStatus = getRouteHeader().getDocRouteStatus(); |
80 | 0 | getRouteHeader().markDocumentEnroute(); |
81 | 0 | String newStatus = getRouteHeader().getDocRouteStatus(); |
82 | 0 | notifyStatusChange(newStatus, oldStatus); |
83 | 0 | KEWServiceLocator.getRouteHeaderService().saveRouteHeader(getRouteHeader()); |
84 | |
} |
85 | |
|
86 | 0 | OrchestrationConfig config = new OrchestrationConfig(); |
87 | 0 | config.setCause(actionTaken); |
88 | 0 | config.setDestinationNodeNames(Collections.singleton(nodeName)); |
89 | 0 | config.setSendNotifications(docType.getSuperUserApproveNotificationPolicy().getPolicyValue()); |
90 | |
try { |
91 | 0 | BlanketApproveEngine blanketApproveEngine = KEWServiceLocator.getBlanketApproveEngineFactory().newEngine(config, isRunPostProcessorLogic()); |
92 | 0 | blanketApproveEngine.process(getRouteHeader().getRouteHeaderId(), null); |
93 | 0 | } catch (Exception e) { |
94 | 0 | if (e instanceof RuntimeException) { |
95 | 0 | throw (RuntimeException)e; |
96 | |
} else { |
97 | 0 | throw new WorkflowRuntimeException(e.toString(), e); |
98 | |
} |
99 | 0 | } |
100 | |
|
101 | |
|
102 | 0 | } |
103 | |
|
104 | |
protected void markDocument() throws WorkflowException { |
105 | |
|
106 | 0 | } |
107 | |
|
108 | |
|
109 | |
|
110 | |
|
111 | |
|
112 | |
} |