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 org.kuali.rice.kew.actionitem.ActionItem; |
22 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
23 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
24 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
25 | |
import org.kuali.rice.kew.util.KEWConstants; |
26 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
27 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
28 | |
|
29 | |
|
30 | |
|
31 | |
|
32 | |
|
33 | |
|
34 | |
|
35 | |
|
36 | |
public class ReleaseWorkgroupAuthority extends ActionTakenEvent { |
37 | |
|
38 | |
private String groupId; |
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
public ReleaseWorkgroupAuthority(DocumentRouteHeaderValue routeHeader, KimPrincipal principal) { |
44 | 0 | super(KEWConstants.ACTION_TAKEN_RELEASE_WORKGROUP_AUTHORITY_CD, routeHeader, principal); |
45 | 0 | } |
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | |
|
51 | |
|
52 | |
|
53 | |
public ReleaseWorkgroupAuthority(DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation, String groupId) { |
54 | 0 | super(KEWConstants.ACTION_TAKEN_RELEASE_WORKGROUP_AUTHORITY_CD, routeHeader, principal, annotation); |
55 | 0 | this.groupId = groupId; |
56 | 0 | } |
57 | |
|
58 | |
|
59 | |
|
60 | |
|
61 | |
@Override |
62 | |
public String validateActionRules() { |
63 | 0 | if (groupId == null) { |
64 | 0 | return "User cannot Release Workgroup Authority without a given workgroup"; |
65 | |
} else { |
66 | 0 | return performReleaseWorkgroupAuthority(true); |
67 | |
} |
68 | |
} |
69 | |
|
70 | |
|
71 | |
|
72 | |
|
73 | |
|
74 | |
|
75 | |
@Override |
76 | |
public String validateActionRules(List<ActionRequestValue> actionRequests) { |
77 | 0 | return validateActionRules(); |
78 | |
} |
79 | |
|
80 | |
public void recordAction() throws InvalidActionTakenException { |
81 | 0 | String error = performReleaseWorkgroupAuthority(false); |
82 | 0 | if (!org.apache.commons.lang.StringUtils.isEmpty(error)) { |
83 | 0 | throw new InvalidActionTakenException(error); |
84 | |
} |
85 | |
|
86 | 0 | queueDocumentProcessing(); |
87 | 0 | } |
88 | |
|
89 | |
private String performReleaseWorkgroupAuthority(boolean forValidationOnly) { |
90 | 0 | if (!KIMServiceLocator.getIdentityManagementService().isMemberOfGroup(getPrincipal().getPrincipalId(), groupId)){ |
91 | 0 | return (getPrincipal().getPrincipalName() + " not a member of workgroup " + groupId); |
92 | |
} |
93 | |
|
94 | 0 | List<ActionRequestValue> actionRequests = getActionRequestService().findPendingByDoc(getRouteHeaderId()); |
95 | |
|
96 | 0 | for (ActionRequestValue actionRequest : actionRequests) |
97 | |
{ |
98 | |
|
99 | 0 | if (actionRequest.isGroupRequest() && actionRequest.isActive() && actionRequest.getGroupId().equals(groupId)) { |
100 | 0 | List<ActionItem> actionItems = actionRequest.getActionItems(); |
101 | 0 | if (actionItems.size() == 1) { |
102 | 0 | ActionItem actionItem = actionItems.get(0); |
103 | 0 | if (! actionItem.getPrincipalId().equals(getPrincipal().getPrincipalId())) { |
104 | 0 | return "User attempting to release workgroup authority did not take it."; |
105 | 0 | } else if (!forValidationOnly) |
106 | |
{ |
107 | 0 | actionRequest.setStatus(KEWConstants.ACTION_REQUEST_INITIALIZED); |
108 | 0 | getActionRequestService().activateRequest(actionRequest); |
109 | |
} |
110 | |
} |
111 | 0 | } |
112 | |
} |
113 | 0 | return ""; |
114 | |
} |
115 | |
} |