Coverage Report - org.kuali.rice.kew.role.service.impl.RouteLogDerivedRoleTypeServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
RouteLogDerivedRoleTypeServiceImpl
0%
0/43
0%
0/26
7.333
 
 1  
 /*
 2  
  * Copyright 2007-2008 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kew.role.service.impl;
 17  
 
 18  
 import java.util.ArrayList;
 19  
 import java.util.List;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.kew.exception.WorkflowException;
 23  
 import org.kuali.rice.kew.service.WorkflowInfo;
 24  
 import org.kuali.rice.kim.bo.Role;
 25  
 import org.kuali.rice.kim.bo.impl.KimAttributes;
 26  
 import org.kuali.rice.kim.bo.role.dto.RoleMembershipInfo;
 27  
 import org.kuali.rice.kim.bo.types.dto.AttributeSet;
 28  
 import org.kuali.rice.kim.service.support.KimDelegationTypeService;
 29  
 import org.kuali.rice.kim.service.support.KimRoleTypeService;
 30  
 import org.kuali.rice.kim.service.support.impl.KimDerivedRoleTypeServiceBase;
 31  
 
 32  
 /**
 33  
  * 
 34  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 35  
  *
 36  
  */
 37  0
 public class RouteLogDerivedRoleTypeServiceImpl extends KimDerivedRoleTypeServiceBase implements KimRoleTypeService, KimDelegationTypeService {
 38  
     public static final String INITIATOR_ROLE_NAME = "Initiator";
 39  
     public static final String INITIATOR_OR_REVIEWER_ROLE_NAME = "Initiator or Reviewer";
 40  
     public static final String ROUTER_ROLE_NAME = "Router";
 41  
 
 42  0
         protected WorkflowInfo workflowInfo = new WorkflowInfo();
 43  
     
 44  
         {
 45  
                 //KFSMI-4938 - document number needs to be optional for this role type, 
 46  
                 //since this is also used for inquiries
 47  
                 //requiredAttributes.add(KimAttributes.DOCUMENT_NUMBER);
 48  0
                 checkRequiredAttributes = true;
 49  0
         }
 50  
         
 51  
         /**
 52  
          *        - qualifier is document number
 53  
          *        - the roles that will be of this type are KR-WKFLW Initiator and KR-WKFLW Initiator or Reviewer, KR-WKFLW Router
 54  
          *        - only the initiator of the document in question gets the KR-WKFLW Initiator role
 55  
          *        - user who routed the document according to the route log should get the KR-WKFLW Router role
 56  
          *        - users who are authorized by the route log, 
 57  
          *                i.e. initiators, people who have taken action, people with a pending action request, 
 58  
          *                or people who will receive an action request for the document in question get the KR-WKFLW Initiator or Reviewer Role 
 59  
          * 
 60  
          * @see org.kuali.rice.kim.service.support.impl.KimRoleTypeServiceBase#getRoleMembersFromApplicationRole(String, String, AttributeSet)
 61  
          */
 62  
         @Override
 63  
     public List<RoleMembershipInfo> getRoleMembersFromApplicationRole(String namespaceCode, String roleName, AttributeSet qualification) {
 64  0
                 validateRequiredAttributesAgainstReceived(qualification);
 65  0
                 List<RoleMembershipInfo> members = new ArrayList<RoleMembershipInfo>();                
 66  0
                 if(qualification!=null && !qualification.isEmpty()){
 67  0
                         String documentNumber = qualification.get(KimAttributes.DOCUMENT_NUMBER);
 68  0
                         if (StringUtils.isNotBlank(documentNumber)) {
 69  0
                                 Long documentNumberLong = Long.parseLong(documentNumber);
 70  
                                 try{
 71  0
                                         if (INITIATOR_ROLE_NAME.equals(roleName)) {
 72  0
                                             String principalId = workflowInfo.getDocumentInitiatorPrincipalId(documentNumberLong);
 73  0
                             members.add( new RoleMembershipInfo(null/*roleId*/, null, principalId, Role.PRINCIPAL_MEMBER_TYPE, null) );
 74  0
                                         } else if(INITIATOR_OR_REVIEWER_ROLE_NAME.equals(roleName)) {
 75  0
                                             List<String> ids = workflowInfo.getPrincipalIdsInRouteLog(documentNumberLong, true);
 76  0
                                             for ( String id : ids ) {
 77  0
                                                     if ( StringUtils.isNotBlank(id) ) {
 78  0
                                                             members.add( new RoleMembershipInfo(null/*roleId*/, null, id, Role.PRINCIPAL_MEMBER_TYPE, null) );
 79  
                                                     }
 80  
                                             }
 81  0
                                         } else if(ROUTER_ROLE_NAME.equals(roleName)) {
 82  0
                                             String principalId = workflowInfo.getDocumentRoutedByPrincipalId(documentNumberLong);
 83  0
                             members.add( new RoleMembershipInfo(null/*roleId*/, null, principalId, Role.PRINCIPAL_MEMBER_TYPE, null) );
 84  
                                         }
 85  0
                                 } catch(WorkflowException wex){
 86  0
                                         throw new RuntimeException(
 87  
                                         "Error in getting principal Ids in route log for document number: "+documentNumber+" :"+wex.getLocalizedMessage(),wex);
 88  0
                                 }
 89  
                         }
 90  
                 }
 91  0
                 return members;
 92  
         }
 93  
 
 94  
         /***
 95  
          * @see org.kuali.rice.kim.service.support.impl.KimRoleTypeServiceBase#hasApplicationRole(java.lang.String, java.util.List, java.lang.String, java.lang.String, org.kuali.rice.kim.bo.types.dto.AttributeSet)
 96  
          */
 97  
         @Override
 98  
         public boolean hasApplicationRole(
 99  
                         String principalId, List<String> groupIds, String namespaceCode, String roleName, AttributeSet qualification){
 100  0
                 validateRequiredAttributesAgainstReceived(qualification);
 101  0
         boolean isUserInRouteLog = false;
 102  0
                 if(qualification!=null && !qualification.isEmpty()){
 103  0
                         String documentNumber = qualification.get(KimAttributes.DOCUMENT_NUMBER);
 104  
                         try {
 105  0
                                 Long documentNumberLong = Long.parseLong(documentNumber);
 106  0
                                 if (INITIATOR_ROLE_NAME.equals(roleName)){
 107  0
                                         isUserInRouteLog = principalId.equals(workflowInfo.getDocumentInitiatorPrincipalId(documentNumberLong));
 108  0
                                 } else if(INITIATOR_OR_REVIEWER_ROLE_NAME.equals(roleName)){
 109  0
                                         isUserInRouteLog = workflowInfo.isUserAuthenticatedByRouteLog(documentNumberLong, principalId, true);
 110  0
                                 } else if(ROUTER_ROLE_NAME.equals(roleName)){
 111  0
                                         isUserInRouteLog = principalId.equals(workflowInfo.getDocumentRoutedByPrincipalId(documentNumberLong));
 112  
                                 }
 113  0
                         } catch (NumberFormatException e) {
 114  0
                                 throw new RuntimeException("Invalid (non-numeric) document number: "+documentNumber,e);
 115  0
                         } catch (WorkflowException wex) {
 116  0
                                 throw new RuntimeException("Error in determining whether the principal Id: "+principalId+" is in route log " +
 117  
                                                 "for document number: "+documentNumber+" :"+wex.getLocalizedMessage(),wex);
 118  0
                         }
 119  
                 }
 120  0
                 return isUserInRouteLog;
 121  
         }
 122  
 
 123  
         /**
 124  
          * Returns false, as the Route Log changes often enough that role membership is highly volatile
 125  
          * 
 126  
          * @see org.kuali.rice.kim.service.support.impl.KimRoleTypeServiceBase#shouldCacheRoleMembershipResults(java.lang.String, java.lang.String)
 127  
          */
 128  
         @Override
 129  
         public boolean shouldCacheRoleMembershipResults(String namespaceCode,
 130  
                         String roleName) {
 131  0
                 return false;
 132  
         }
 133  
 }