Coverage Report - org.kuali.rice.kew.actions.CompleteAction
 
Classes in this File Line Coverage Branch Coverage Complexity
CompleteAction
0%
0/55
0%
0/34
4.833
 
 1  
 /*
 2  
  * Copyright 2005-2008 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.actiontaken.ActionTakenValue;
 22  
 import org.kuali.rice.kew.doctype.DocumentTypePolicy;
 23  
 import org.kuali.rice.kew.exception.InvalidActionTakenException;
 24  
 import org.kuali.rice.kew.exception.ResourceUnavailableException;
 25  
 import org.kuali.rice.kew.routeheader.DocumentRouteHeaderValue;
 26  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 27  
 import org.kuali.rice.kew.util.KEWConstants;
 28  
 import org.kuali.rice.kim.bo.entity.KimPrincipal;
 29  
 
 30  
 import java.util.Iterator;
 31  
 import java.util.List;
 32  
 
 33  
 
 34  
 /**
 35  
  * CompleteAction records and process a complete action
 36  
  *
 37  
  * The routeheader is first checked to make sure the action is valid for the document.
 38  
  * Next the user is checked to make sure he/she has not taken a previous action on this
 39  
  * document at the actions responsibility or below. The action is recorded. Any requests
 40  
  * related to this user are deactivated.
 41  
  *
 42  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 43  
  */
 44  
 public class CompleteAction extends ActionTakenEvent {
 45  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(CompleteAction.class);
 46  
 
 47  
     /**
 48  
      * @param rh
 49  
      *            RouteHeader for the document upon which the action is taken.
 50  
      * @param principal
 51  
      *            User taking the action.
 52  
      */
 53  
     public CompleteAction(DocumentRouteHeaderValue rh, KimPrincipal principal) {
 54  0
         super(KEWConstants.ACTION_TAKEN_COMPLETED_CD, rh, principal);
 55  0
     }
 56  
 
 57  
     /**
 58  
      * @param rh
 59  
      *            RouteHeader for the document upon which the action is taken.
 60  
      * @param principal
 61  
      *            User taking the action.
 62  
      * @param annotation
 63  
      *            User comment on the action taken
 64  
      */
 65  
     public CompleteAction(DocumentRouteHeaderValue rh, KimPrincipal principal, String annotation) {
 66  0
         super(KEWConstants.ACTION_TAKEN_COMPLETED_CD, rh, principal, annotation);
 67  0
     }
 68  
 
 69  
     /* (non-Javadoc)
 70  
      * @see org.kuali.rice.kew.actions.ActionTakenEvent#isActionCompatibleRequest(java.util.List)
 71  
      */
 72  
     @Override
 73  
     public String validateActionRules() {
 74  0
         return validateActionRules(getActionRequestService().findAllPendingRequests(routeHeader.getRouteHeaderId()));
 75  
     }
 76  
 
 77  
     public String validateActionRules(List<ActionRequestValue> actionRequests) {
 78  0
         if (!getRouteHeader().isValidActionToTake(getActionPerformedCode())) {
 79  0
             return "Document is not in a state to be completed";
 80  
         }
 81  0
         List<ActionRequestValue> filteredActionRequests = filterActionRequestsByCode(actionRequests, KEWConstants.ACTION_REQUEST_COMPLETE_REQ);
 82  0
         if (!isActionCompatibleRequest(filteredActionRequests)) {
 83  0
             return "No request for the user is compatible " + "with the COMPLETE action";
 84  
         }
 85  0
         return "";
 86  
     }
 87  
 
 88  
     /* (non-Javadoc)
 89  
      * @see org.kuali.rice.kew.actions.ActionTakenEvent#isActionCompatibleRequest(java.util.List)
 90  
      */
 91  
     @Override
 92  
     public boolean isActionCompatibleRequest(List requests) {
 93  
         // we allow pre-approval
 94  0
         if (requests.isEmpty()) {
 95  0
             return true;
 96  
         }
 97  
 
 98  
         // can always cancel saved or initiated document
 99  0
         if (routeHeader.isStateInitiated() || routeHeader.isStateSaved()) {
 100  0
             return true;
 101  
         }
 102  
 
 103  0
         boolean actionCompatible = false;
 104  0
         Iterator ars = requests.iterator();
 105  0
         ActionRequestValue actionRequest = null;
 106  
 
 107  0
         while (ars.hasNext()) {
 108  0
             actionRequest = (ActionRequestValue) ars.next();
 109  0
             String request = actionRequest.getActionRequested();
 110  
 
 111  
             // Complete action matches Complete, Approve, FYI, and ACK requests
 112  0
             if ( (KEWConstants.ACTION_REQUEST_FYI_REQ.equals(request)) ||
 113  
                     (KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ.equals(request)) ||
 114  
                     (KEWConstants.ACTION_REQUEST_APPROVE_REQ.equals(request)) ||
 115  
                     (KEWConstants.ACTION_REQUEST_COMPLETE_REQ.equals(request)) ) {
 116  0
                 actionCompatible = true;
 117  0
                 break;
 118  
             }
 119  0
         }
 120  0
         return actionCompatible;
 121  
     }
 122  
 
 123  
     /**
 124  
      * Records the complete action. - Checks to make sure the document status allows the action. - Checks that the user has not taken a previous action. - Deactivates the pending requests for this user - Records the action
 125  
      *
 126  
      * @throws InvalidActionTakenException
 127  
      * @throws ResourceUnavailableException
 128  
      */
 129  
     public void recordAction() throws org.kuali.rice.kew.exception.InvalidActionTakenException {
 130  0
         MDC.put("docId", getRouteHeader().getRouteHeaderId());
 131  0
         updateSearchableAttributesIfPossible();
 132  0
         LOG.debug("Completing document : " + annotation);
 133  
 
 134  0
         List actionRequests = getActionRequestService().findAllValidRequests(getPrincipal().getPrincipalId(), getRouteHeaderId(), KEWConstants.ACTION_REQUEST_COMPLETE_REQ);
 135  0
         if (actionRequests == null || actionRequests.isEmpty()) {
 136  0
             DocumentTypePolicy allowUnrequested = getRouteHeader().getDocumentType().getAllowUnrequestedActionPolicy();
 137  0
             if (allowUnrequested != null) {
 138  0
                     if (!allowUnrequested.getPolicyValue()) {
 139  0
                             throw new InvalidActionTakenException("No request for the user is compatible " + "with the COMPLETE action. " + "Doctype policy ALLOW_UNREQUESTED_ACTION is set to false and someone else likely just took action on the document.");
 140  
                     }
 141  
             }
 142  
         }
 143  0
         LOG.debug("Checking to see if the action is legal");
 144  0
         String errorMessage = validateActionRules(actionRequests);
 145  0
         if (!org.apache.commons.lang.StringUtils.isEmpty(errorMessage)) {
 146  0
             throw new InvalidActionTakenException(errorMessage);
 147  
         }
 148  
 
 149  0
         LOG.debug("Record the complete action");
 150  0
         ActionTakenValue actionTaken = saveActionTaken(findDelegatorForActionRequests(actionRequests));
 151  
 
 152  0
         LOG.debug("Deactivate all pending action requests");
 153  0
         getActionRequestService().deactivateRequests(actionTaken, actionRequests);
 154  0
         notifyActionTaken(actionTaken);
 155  
 
 156  0
         boolean isException = getRouteHeader().isInException();
 157  0
         boolean isSaved = getRouteHeader().isStateSaved();
 158  0
         if (isException || isSaved) {
 159  0
             String oldStatus = getRouteHeader().getDocRouteStatus();
 160  0
             LOG.debug("Moving document back to Enroute from "+KEWConstants.DOCUMENT_STATUSES.get(oldStatus));
 161  0
             getRouteHeader().markDocumentEnroute();
 162  0
             String newStatus = getRouteHeader().getDocRouteStatus();
 163  0
             notifyStatusChange(newStatus, oldStatus);
 164  0
             KEWServiceLocator.getRouteHeaderService().saveRouteHeader(getRouteHeader());
 165  
         }
 166  0
     }
 167  
 
 168  
 }