Coverage Report - org.kuali.rice.krad.service.impl.DocumentTypeAndNodeOrStatePermissionTypeServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeAndNodeOrStatePermissionTypeServiceImpl
0%
0/15
0%
0/10
3.333
 
 1  
 /**
 2  
  * Copyright 2005-2011 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.krad.service.impl;
 17  
 
 18  
 import org.apache.commons.lang.StringUtils;
 19  
 import org.kuali.rice.kim.api.KimConstants;
 20  
 import org.kuali.rice.kim.api.permission.Permission;
 21  
 import org.kuali.rice.kim.impl.permission.PermissionBo;
 22  
 
 23  
 import java.util.ArrayList;
 24  
 import java.util.List;
 25  
 import java.util.Map;
 26  
 
 27  
 /**
 28  
  * 
 29  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 30  
  *
 31  
  */
 32  0
 public class DocumentTypeAndNodeOrStatePermissionTypeServiceImpl extends DocumentTypePermissionTypeServiceImpl {
 33  
 
 34  
         /**
 35  
      *  Permission type service which can check the route node and status as well as the document hierarchy.
 36  
      *  
 37  
      *  Permission should be able to (in addition to taking the routingStatus, routingNote, and documentTypeName attributes) 
 38  
      *  should take a documentNumber and retrieve those values from workflow before performing the comparison.
 39  
      *
 40  
      *  consider the document type hierarchy - check for a permission that just specifies the document type first at each level 
 41  
      *  - then if you don't find that, check for the doc type and the node, then the doc type and the state. 
 42  
      *
 43  
          */
 44  
     @Override
 45  
     protected List<Permission> performPermissionMatches(Map<String, String> requestedDetails,
 46  
             List<Permission> permissionsList) {
 47  0
         List<Permission> matchingPermissions = new ArrayList<Permission>();
 48  
         // loop over the permissions, checking the non-document-related ones
 49  0
         for ( Permission kpi : permissionsList ) {
 50  0
             PermissionBo bo = PermissionBo.from(kpi);
 51  0
             if ( routeNodeMatches(requestedDetails, bo.getDetails()) &&
 52  
                     routeStatusMatches(requestedDetails, bo.getDetails())) {
 53  0
                 matchingPermissions.add( kpi );
 54  
             }           
 55  0
         }
 56  
         // now, filter the list to just those for the current document
 57  0
         matchingPermissions = super.performPermissionMatches( requestedDetails, matchingPermissions );
 58  0
         return matchingPermissions;
 59  
     }
 60  
         
 61  
         protected boolean routeNodeMatches(Map<String, String> requestedDetails, Map<String, String> permissionDetails) {
 62  0
                 if ( StringUtils.isBlank( permissionDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME) ) ) {
 63  0
                         return true;
 64  
                 }
 65  0
                 return StringUtils.equals( requestedDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME), permissionDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME));
 66  
         }
 67  
         
 68  
         protected boolean routeStatusMatches(Map<String, String> requestedDetails, Map<String, String> permissionDetails) {
 69  0
                 if ( StringUtils.isBlank( permissionDetails.get(KimConstants.AttributeConstants.ROUTE_STATUS_CODE) ) ) {
 70  0
                         return true;
 71  
                 }
 72  0
                 return StringUtils.equals( requestedDetails.get(KimConstants.AttributeConstants.ROUTE_STATUS_CODE), permissionDetails.get(
 73  
                 KimConstants.AttributeConstants.ROUTE_STATUS_CODE));
 74  
         }
 75  
 
 76  
 }