Coverage Report - org.kuali.rice.kns.service.impl.DocumentTypeAndNodeAndFieldsPermissionTypeServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypeAndNodeAndFieldsPermissionTypeServiceImpl
0%
0/12
0%
0/8
3.5
 
 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.kns.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.core.util.AttributeSet;
 23  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 24  
 import org.kuali.rice.kim.util.KimConstants;
 25  
 
 26  
 /**
 27  
  * 
 28  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 29  
  *
 30  
  */
 31  0
 public class DocumentTypeAndNodeAndFieldsPermissionTypeServiceImpl extends DocumentTypePermissionTypeServiceImpl {
 32  
 
 33  
         {
 34  
 //                requiredAttributes.add(KimAttributes.ROUTE_NODE_NAME);
 35  
 //                requiredAttributes.add(KimAttributes.PROPERTY_NAME);
 36  0
                 checkRequiredAttributes = true;
 37  0
         }
 38  
 
 39  
         /**
 40  
          * 
 41  
          *        consider the document type hierarchy - check for a permission that just specifies the document type first at each level 
 42  
          *        - then if you don't find that, check for the doc type and the node, then the doc type and the field.
 43  
          *
 44  
          *        - if the field value passed in starts with the value on the permission detail it is a match.  so...
 45  
          *        permision detail sourceAccountingLines will match passed in value of sourceAccountingLines.amount and sourceAccountingLines 
 46  
          *        permission detail sourceAccountingLines.objectCode will match sourceAccountingLines.objectCode but not sourceAccountingLines
 47  
          *
 48  
          * @see org.kuali.rice.kns.service.impl.DocumentTypePermissionTypeServiceImpl#performPermissionMatches(org.kuali.rice.core.util.AttributeSet, java.util.List)
 49  
          */
 50  
         @Override
 51  
         protected List<KimPermissionInfo> performPermissionMatches(AttributeSet requestedDetails,
 52  
                         List<KimPermissionInfo> permissionsList) {
 53  0
                 List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>();
 54  
                 // loop over the permissions, checking the non-document-related ones
 55  0
                 for ( KimPermissionInfo kpi : permissionsList ) {
 56  0
                         if ( routeNodeMatches(requestedDetails, kpi.getDetails()) && 
 57  
                                         doesPropertyNameMatch(requestedDetails.get(KimConstants.AttributeConstants.PROPERTY_NAME), kpi.getDetails().get(KimConstants.AttributeConstants.PROPERTY_NAME)) ) {
 58  0
                                 matchingPermissions.add( kpi );
 59  
                         }                        
 60  
                 }
 61  
                 // now, filter the list to just those for the current document
 62  0
                 matchingPermissions = super.performPermissionMatches( requestedDetails, matchingPermissions );
 63  0
                 return matchingPermissions;
 64  
         }
 65  
                 
 66  
         protected boolean routeNodeMatches(AttributeSet requestedDetails, AttributeSet permissionDetails) {
 67  0
                 if ( StringUtils.isBlank( permissionDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME) ) ) {
 68  0
                         return true;
 69  
                 }
 70  0
                 return StringUtils.equals(requestedDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME), permissionDetails.get(KimConstants.AttributeConstants.ROUTE_NODE_NAME));
 71  
         }
 72  
 }