| 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.Collection; |
| 20 | |
import java.util.HashSet; |
| 21 | |
import java.util.Iterator; |
| 22 | |
import java.util.List; |
| 23 | |
import java.util.Set; |
| 24 | |
|
| 25 | |
import org.apache.commons.lang.StringUtils; |
| 26 | |
import org.apache.log4j.MDC; |
| 27 | |
import org.kuali.rice.kew.actionrequest.ActionRequestFactory; |
| 28 | |
import org.kuali.rice.kew.actionrequest.ActionRequestValue; |
| 29 | |
import org.kuali.rice.kew.actionrequest.Recipient; |
| 30 | |
import org.kuali.rice.kew.actiontaken.ActionTakenValue; |
| 31 | |
import org.kuali.rice.kew.engine.node.RouteNodeInstance; |
| 32 | |
import org.kuali.rice.kew.exception.InvalidActionTakenException; |
| 33 | |
import org.kuali.rice.kew.exception.WorkflowException; |
| 34 | |
import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue; |
| 35 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
| 36 | |
import org.kuali.rice.kew.util.KEWConstants; |
| 37 | |
import org.kuali.rice.kew.util.Utilities; |
| 38 | |
import org.kuali.rice.kim.bo.Group; |
| 39 | |
import org.kuali.rice.kim.bo.entity.KimPrincipal; |
| 40 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
| 41 | |
import org.kuali.rice.kns.util.KNSConstants; |
| 42 | |
|
| 43 | |
|
| 44 | |
|
| 45 | |
|
| 46 | |
|
| 47 | |
|
| 48 | |
|
| 49 | |
|
| 50 | |
public class DisapproveAction extends ActionTakenEvent { |
| 51 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(DisapproveAction.class); |
| 52 | |
|
| 53 | |
|
| 54 | |
|
| 55 | |
|
| 56 | |
|
| 57 | |
public DisapproveAction(DocumentRouteHeaderValue rh, KimPrincipal principal) { |
| 58 | 0 | super(KEWConstants.ACTION_TAKEN_DENIED_CD, rh, principal); |
| 59 | 0 | } |
| 60 | |
|
| 61 | |
|
| 62 | |
|
| 63 | |
|
| 64 | |
|
| 65 | |
|
| 66 | |
public DisapproveAction(DocumentRouteHeaderValue rh, KimPrincipal principal, String annotation) { |
| 67 | 0 | super(KEWConstants.ACTION_TAKEN_DENIED_CD, rh, principal, annotation); |
| 68 | 0 | } |
| 69 | |
|
| 70 | |
|
| 71 | |
|
| 72 | |
|
| 73 | |
@Override |
| 74 | |
public String validateActionRules() { |
| 75 | 0 | return validateActionRules(getActionRequestService().findAllPendingRequests(routeHeader.getRouteHeaderId())); |
| 76 | |
} |
| 77 | |
|
| 78 | |
public String validateActionRules(List<ActionRequestValue> actionRequests) { |
| 79 | 0 | if (!getRouteHeader().isValidActionToTake(getActionPerformedCode())) { |
| 80 | 0 | return "Document is not in a state to be disapproved"; |
| 81 | |
} |
| 82 | 0 | List<ActionRequestValue> filteredActionRequests = filterActionRequestsByCode(actionRequests, KEWConstants.ACTION_REQUEST_COMPLETE_REQ); |
| 83 | 0 | if (!isActionCompatibleRequest(filteredActionRequests)) { |
| 84 | 0 | return "No request for the user is compatible " + "with the DISAPPROVE or DENY action"; |
| 85 | |
} |
| 86 | 0 | return ""; |
| 87 | |
} |
| 88 | |
|
| 89 | |
|
| 90 | |
|
| 91 | |
|
| 92 | |
@Override |
| 93 | |
public boolean isActionCompatibleRequest(List requests) { |
| 94 | |
|
| 95 | 0 | if (routeHeader.isStateInitiated() || routeHeader.isStateSaved()) { |
| 96 | 0 | return true; |
| 97 | |
} |
| 98 | |
|
| 99 | 0 | boolean actionCompatible = false; |
| 100 | 0 | Iterator ars = requests.iterator(); |
| 101 | 0 | ActionRequestValue actionRequest = null; |
| 102 | |
|
| 103 | 0 | while (ars.hasNext()) { |
| 104 | 0 | actionRequest = (ActionRequestValue) ars.next(); |
| 105 | 0 | String request = actionRequest.getActionRequested(); |
| 106 | |
|
| 107 | |
|
| 108 | 0 | if ( (KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(request)) || |
| 109 | |
(KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(request)) ) { |
| 110 | 0 | actionCompatible = true; |
| 111 | 0 | break; |
| 112 | |
} |
| 113 | 0 | } |
| 114 | |
|
| 115 | 0 | return actionCompatible; |
| 116 | |
} |
| 117 | |
|
| 118 | |
|
| 119 | |
|
| 120 | |
|
| 121 | |
|
| 122 | |
|
| 123 | |
public void recordAction() throws InvalidActionTakenException { |
| 124 | 0 | MDC.put("docId", getRouteHeader().getRouteHeaderId()); |
| 125 | 0 | updateSearchableAttributesIfPossible(); |
| 126 | |
|
| 127 | 0 | LOG.debug("Disapproving document : " + annotation); |
| 128 | |
|
| 129 | 0 | List actionRequests = getActionRequestService().findAllValidRequests(getPrincipal().getPrincipalId(), getRouteHeaderId(), KEWConstants.ACTION_REQUEST_COMPLETE_REQ); |
| 130 | 0 | LOG.debug("Checking to see if the action is legal"); |
| 131 | 0 | String errorMessage = validateActionRules(actionRequests); |
| 132 | 0 | if (!Utilities.isEmpty(errorMessage)) { |
| 133 | 0 | throw new InvalidActionTakenException(errorMessage); |
| 134 | |
} |
| 135 | |
|
| 136 | 0 | LOG.debug("Record the disapproval action"); |
| 137 | 0 | Recipient delegator = findDelegatorForActionRequests(actionRequests); |
| 138 | 0 | ActionTakenValue actionTaken = saveActionTaken(delegator); |
| 139 | |
|
| 140 | 0 | LOG.debug("Deactivate all pending action requests"); |
| 141 | 0 | actionRequests = getActionRequestService().findPendingByDoc(getRouteHeaderId()); |
| 142 | 0 | getActionRequestService().deactivateRequests(actionTaken, actionRequests); |
| 143 | 0 | notifyActionTaken(actionTaken); |
| 144 | |
|
| 145 | 0 | LOG.debug("Sending Acknowledgements to all previous approvers/completers"); |
| 146 | |
|
| 147 | 0 | RouteNodeInstance notificationNodeInstance = null; |
| 148 | |
|
| 149 | 0 | notificationNodeInstance = ((ActionRequestValue)actionRequests.get(0)).getNodeInstance(); |
| 150 | |
|
| 151 | 0 | generateNotifications(notificationNodeInstance); |
| 152 | |
|
| 153 | 0 | LOG.debug("Disapproving document"); |
| 154 | |
try { |
| 155 | 0 | String oldStatus = getRouteHeader().getDocRouteStatus(); |
| 156 | 0 | routeHeader.markDocumentDisapproved(); |
| 157 | 0 | String newStatus = getRouteHeader().getDocRouteStatus(); |
| 158 | 0 | KEWServiceLocator.getRouteHeaderService().saveRouteHeader(routeHeader); |
| 159 | 0 | notifyStatusChange(newStatus, oldStatus); |
| 160 | 0 | } catch (WorkflowException ex) { |
| 161 | 0 | LOG.warn(ex, ex); |
| 162 | 0 | throw new InvalidActionTakenException(ex.getMessage()); |
| 163 | 0 | } |
| 164 | 0 | } |
| 165 | |
|
| 166 | |
|
| 167 | |
private void generateNotifications(RouteNodeInstance notificationNodeInstance) |
| 168 | |
{ |
| 169 | 0 | String groupName = Utilities.getKNSParameterValue( |
| 170 | |
KEWConstants.KEW_NAMESPACE, |
| 171 | |
KNSConstants.DetailTypes.WORKGROUP_DETAIL_TYPE, |
| 172 | |
KEWConstants.NOTIFICATION_EXCLUDED_USERS_WORKGROUP_NAME_IND); |
| 173 | |
|
| 174 | 0 | Set<String> systemPrincipalIds = new HashSet<String>(); |
| 175 | |
|
| 176 | 0 | if( !StringUtils.isBlank(groupName)) |
| 177 | |
{ |
| 178 | 0 | Group systemUserWorkgroup = KIMServiceLocator.getIdentityManagementService(). |
| 179 | |
getGroupByName(Utilities.parseGroupNamespaceCode(groupName), Utilities.parseGroupName(groupName)); |
| 180 | |
|
| 181 | 0 | List<String> principalIds = KIMServiceLocator. |
| 182 | |
getIdentityManagementService().getGroupMemberPrincipalIds( systemUserWorkgroup.getGroupId()); |
| 183 | |
|
| 184 | 0 | if (systemUserWorkgroup != null) |
| 185 | |
{ |
| 186 | 0 | for( String id : principalIds) |
| 187 | |
{ |
| 188 | 0 | systemPrincipalIds.add(id); |
| 189 | |
} |
| 190 | |
} |
| 191 | |
} |
| 192 | 0 | ActionRequestFactory arFactory = new ActionRequestFactory(getRouteHeader(), notificationNodeInstance); |
| 193 | 0 | Collection<ActionTakenValue> actions = KEWServiceLocator.getActionTakenService().findByRouteHeaderId(getRouteHeaderId()); |
| 194 | |
|
| 195 | 0 | Set<String> usersNotified = new HashSet<String>(); |
| 196 | 0 | for (ActionTakenValue action : actions) |
| 197 | |
{ |
| 198 | 0 | if ((action.isApproval() || action.isCompletion()) && !usersNotified.contains(action.getPrincipalId())) |
| 199 | |
{ |
| 200 | 0 | if (!systemPrincipalIds.contains(action.getPrincipalId())) |
| 201 | |
{ |
| 202 | 0 | ActionRequestValue request = arFactory.createNotificationRequest(KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ, action.getPrincipal(), getActionTakenCode(), getPrincipal(), getActionTakenCode()); |
| 203 | 0 | KEWServiceLocator.getActionRequestService().activateRequest(request); |
| 204 | 0 | usersNotified.add(request.getPrincipalId()); |
| 205 | 0 | } |
| 206 | |
} |
| 207 | |
} |
| 208 | |
|
| 209 | 0 | } |
| 210 | |
} |