Coverage Report - org.kuali.rice.kew.actions.ApproveAction
 
Classes in this File Line Coverage Branch Coverage Complexity
ApproveAction
0%
0/55
0%
0/34
4.833
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.actions;
 18  
 
 19  
 import org.apache.log4j.MDC;
 20  
 import org.kuali.rice.kew.actionrequest.ActionRequestValue;
 21  
 import org.kuali.rice.kew.actionrequest.Recipient;
 22  
 import org.kuali.rice.kew.actiontaken.ActionTakenValue;
 23  
 import org.kuali.rice.kew.doctype.DocumentTypePolicy;
 24  
 import org.kuali.rice.kew.exception.InvalidActionTakenException;
 25  
 import org.kuali.rice.kew.exception.ResourceUnavailableException;
 26  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 27  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 28  
 import org.kuali.rice.kew.util.KEWConstants;
 29  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 30  
 
 31  
 import java.util.Iterator;
 32  
 import java.util.List;
 33  
 
 34  
 
 35  
 /**
 36  
  * The ApproveAction records and processes an approve action.
 37  
  *
 38  
  * The routeheader is first checked to make sure the action is valid for the document.
 39  
  * Next the user is checked to make sure he/she has not taken a previous action on this
 40  
  * document at the actions responsibility or below. The action is recorded.
 41  
  * Any requests related to this user are deactivated.
 42  
  *
 43  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 44  
  */
 45  
 public class ApproveAction extends ActionTakenEvent {
 46  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(ApproveAction.class);
 47  
 
 48  
     /**
 49  
      * @param routeHeader
 50  
      *            RouteHeader for the document upon which the action is taken.
 51  
      * @param principal
 52  
      *            User taking the action.
 53  
      */
 54  
     public ApproveAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal) {
 55  0
         super(KEWConstants.ACTION_TAKEN_APPROVED_CD, routeHeader, principal);
 56  0
     }
 57  
 
 58  
     /**
 59  
      * @param routeHeader
 60  
      *            RouteHeader for the document upon which the action is taken.
 61  
      * @param principal
 62  
      *            User taking the action.
 63  
      * @param annotation
 64  
      *            User comment on the action taken
 65  
      */
 66  
     public ApproveAction(DocumentRouteHeaderValue routeHeader, KimPrincipal principal, String annotation) {
 67  0
         super(KEWConstants.ACTION_TAKEN_APPROVED_CD, routeHeader, principal, annotation);
 68  0
     }
 69  
 
 70  
     /* (non-Javadoc)
 71  
      * @see org.kuali.rice.kew.actions.ActionTakenEvent#isActionCompatibleRequest(java.util.List)
 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 approved";
 81  
         }
 82  0
         List<ActionRequestValue> filteredActionRequests = filterActionRequestsByCode(actionRequests, KEWConstants.ACTION_REQUEST_APPROVE_REQ);
 83  0
         if (!isActionCompatibleRequest(filteredActionRequests)) {
 84  0
             return "No request for the user is compatible " + "with the APPROVE action";
 85  
         }
 86  0
         return "";
 87  
     }
 88  
 
 89  
     /* (non-Javadoc)
 90  
      * @see org.kuali.rice.kew.actions.ActionTakenEvent#isActionCompatibleRequest(java.util.List)
 91  
      */
 92  
     @Override
 93  
     public boolean isActionCompatibleRequest(List<ActionRequestValue> requests) {
 94  
         // we allow pre-approval
 95  0
         if (requests.isEmpty()) {
 96  0
             return true;
 97  
         }
 98  
 
 99  
         // can always cancel saved or initiated document
 100  0
         if (routeHeader.isStateInitiated() || routeHeader.isStateSaved()) {
 101  0
             return true;
 102  
         }
 103  
 
 104  0
         boolean actionCompatible = false;
 105  0
         Iterator ars = requests.iterator();
 106  0
         ActionRequestValue actionRequest = null;
 107  
 
 108  0
         while (ars.hasNext()) {
 109  0
             actionRequest = (ActionRequestValue) ars.next();
 110  0
             String request = actionRequest.getActionRequested();
 111  
 
 112  
             // Approve action matches Complete, Approve, FYI, and ACK requests
 113  0
             if ( (KEWConstants.ACTION_REQUEST_FYI_REQ.equals(request)) ||
 114  
                     (KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(request)) ||
 115  
                     (KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(request)) ||
 116  
                     (KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(request)) ) {
 117  0
                 actionCompatible = true;
 118  0
                 break;
 119  
             }
 120  0
         }
 121  0
         return actionCompatible;
 122  
     }
 123  
 
 124  
     /**
 125  
      * Records the approve action.
 126  
      * - Checks to make sure the document status allows the action.
 127  
      * - Checks that the user has not taken a previous action.
 128  
      * - Deactivates the pending requests for this user
 129  
      * - Records the action
 130  
      *
 131  
      * @throws InvalidActionTakenException
 132  
      * @throws ResourceUnavailableException
 133  
      */
 134  
     public void recordAction() throws InvalidActionTakenException {
 135  0
         MDC.put("docId", getRouteHeader().getRouteHeaderId());
 136  0
         updateSearchableAttributesIfPossible();
 137  0
         LOG.debug("Approving document : " + annotation);
 138  
 
 139  0
         List actionRequests = getActionRequestService().findAllValidRequests(getPrincipal().getPrincipalId(), getRouteHeaderId(), KEWConstants.ACTION_REQUEST_APPROVE_REQ);
 140  0
         if (actionRequests == null || actionRequests.isEmpty()) {
 141  0
             DocumentTypePolicy allowUnrequested = getRouteHeader().getDocumentType().getAllowUnrequestedActionPolicy();
 142  0
             if (allowUnrequested != null) {
 143  0
                     if (!allowUnrequested.getPolicyValue()) {
 144  0
                             throw new InvalidActionTakenException("No request for the user is compatible " + "with the APPROVE action. " + "Doctype policy ALLOW_UNREQUESTED_ACTION is set to false and someone else likely just took action on the document.");
 145  
                     }
 146  
             }
 147  
         }
 148  0
         String errorMessage = validateActionRules(actionRequests);
 149  0
         if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) {
 150  0
             throw new InvalidActionTakenException(errorMessage);
 151  
         }
 152  
 
 153  0
         Recipient delegator = findDelegatorForActionRequests(actionRequests);
 154  
 
 155  0
         LOG.debug("Record the approve action");
 156  0
         ActionTakenValue actionTaken = saveActionTaken(delegator);
 157  
 
 158  0
         LOG.debug("Deactivate all pending action requests");
 159  0
         getActionRequestService().deactivateRequests(actionTaken, actionRequests);
 160  0
         notifyActionTaken(actionTaken);
 161  
 
 162  0
         boolean isException = getRouteHeader().isInException();
 163  0
         boolean isSaved = getRouteHeader().isStateSaved();
 164  0
         if (isException || isSaved) {
 165  0
             String oldStatus = getRouteHeader().getDocRouteStatus();
 166  0
             LOG.debug("Moving document back to Enroute from "+KEWConstants.DOCUMENT_STATUSES.get(oldStatus));
 167  0
             getRouteHeader().markDocumentEnroute();
 168  0
             String newStatus = getRouteHeader().getDocRouteStatus();
 169  0
             notifyStatusChange(newStatus, oldStatus);
 170  0
             KEWServiceLocator.getRouteHeaderService().saveRouteHeader(getRouteHeader());
 171  
         }
 172  0
     }
 173  
 }