Coverage Report - org.kuali.rice.kns.service.impl.NamespaceWildcardAllowedAndOrStringExactMatchPermissionTypeServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
NamespaceWildcardAllowedAndOrStringExactMatchPermissionTypeServiceImpl
0%
0/39
0%
0/22
4.75
 
 1  
 /*
 2  
  * Copyright 2007-2009 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 org.apache.commons.lang.StringUtils;
 19  
 import org.kuali.rice.core.api.namespace.Namespace;
 20  
 import org.kuali.rice.core.api.services.CoreApiServiceLocator;
 21  
 import org.kuali.rice.core.util.AttributeSet;
 22  
 import org.kuali.rice.kim.api.type.KimType;
 23  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 24  
 import org.kuali.rice.kim.util.KimConstants;
 25  
 
 26  
 import java.util.ArrayList;
 27  
 import java.util.HashMap;
 28  
 import java.util.List;
 29  
 import java.util.Map;
 30  
 
 31  
 /**
 32  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 33  
  */
 34  0
 public class NamespaceWildcardAllowedAndOrStringExactMatchPermissionTypeServiceImpl
 35  
                 extends NamespacePermissionTypeServiceImpl {
 36  
         protected static final String NAMESPACE_CODE = KimConstants.UniqueKeyConstants.NAMESPACE_CODE;
 37  
         
 38  
         protected String exactMatchStringAttributeName;
 39  
         protected boolean namespaceRequiredOnStoredAttributeSet;
 40  
 
 41  
         @Override
 42  
         protected List<KimPermissionInfo> performPermissionMatches(AttributeSet requestedDetails, List<KimPermissionInfo> permissionsList) {
 43  0
             List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>();
 44  0
         List<KimPermissionInfo> matchingBlankPermissions = new ArrayList<KimPermissionInfo>();
 45  0
             String requestedAttributeValue = requestedDetails.get(exactMatchStringAttributeName);
 46  0
             for ( KimPermissionInfo kpi : permissionsList ) {
 47  0
                 String permissionAttributeValue = kpi.getDetails().get(exactMatchStringAttributeName);
 48  0
                 if ( StringUtils.equals(requestedAttributeValue, permissionAttributeValue) ) {
 49  0
                     matchingPermissions.add(kpi);
 50  0
                 } else if ( StringUtils.isBlank(permissionAttributeValue) ) {
 51  0
                     matchingBlankPermissions.add(kpi);
 52  
                 }
 53  0
             }
 54  
             // if the exact match worked, use those when checking the namespace
 55  
             // otherwise, use those with a blank additional property value
 56  0
             if ( !matchingPermissions.isEmpty() ) {
 57  0
             List<KimPermissionInfo> matchingWithNamespace = super.performPermissionMatches(requestedDetails, matchingPermissions);
 58  0
                 if ( !namespaceRequiredOnStoredAttributeSet ) {
 59  
                     // if the namespace is not required and the namespace match would have excluded
 60  
                     // the results, return the original set of matches
 61  0
                     if ( matchingWithNamespace.isEmpty() ) {
 62  0
                         return matchingPermissions;
 63  
                     }
 64  
                 }
 65  0
             return matchingWithNamespace;
 66  0
             } else if ( !matchingBlankPermissions.isEmpty() ) {
 67  0
             List<KimPermissionInfo> matchingWithNamespace = super.performPermissionMatches(requestedDetails, matchingBlankPermissions);
 68  0
             if ( !namespaceRequiredOnStoredAttributeSet ) {
 69  
                 // if the namespace is not required and the namespace match would have excluded
 70  
                 // the results, return the original set of matches
 71  0
                 if ( matchingWithNamespace.isEmpty() ) {
 72  0
                     return matchingBlankPermissions;
 73  
                 }
 74  
             }
 75  0
             return matchingWithNamespace;
 76  
             }
 77  0
             return matchingPermissions; // will be empty if drops to here
 78  
         }
 79  
         
 80  
         public void setExactMatchStringAttributeName(
 81  
                         String exactMatchStringAttributeName) {
 82  0
                 this.exactMatchStringAttributeName = exactMatchStringAttributeName;
 83  0
                 requiredAttributes.add(exactMatchStringAttributeName);
 84  0
         }
 85  
 
 86  
         public void setNamespaceRequiredOnStoredAttributeSet(
 87  
                         boolean namespaceRequiredOnStoredAttributeSet) {
 88  0
                 this.namespaceRequiredOnStoredAttributeSet = namespaceRequiredOnStoredAttributeSet;
 89  0
         }
 90  
 
 91  
         /**
 92  
          * Overrides the superclass's version of this method in order to account for "namespaceCode" permission detail values containing wildcards.
 93  
          */
 94  
         @Override
 95  
         protected Map<String, List<String>> validateReferencesExistAndActive(KimType kimType, AttributeSet attributes, Map<String, String> previousValidationErrors) {
 96  0
                 Map<String,List<String>> errors = new HashMap<String,List<String>>();
 97  0
                 AttributeSet nonNamespaceCodeAttributes = new AttributeSet(attributes);
 98  
                 // Check if "namespaceCode" is one of the permission detail values.
 99  0
                 if (attributes.containsKey(NAMESPACE_CODE)) {
 100  0
                         nonNamespaceCodeAttributes.remove(NAMESPACE_CODE);
 101  0
             final Namespace namespace = CoreApiServiceLocator.getNamespaceService().getNamespace(attributes.get(NAMESPACE_CODE));
 102  0
                         if (namespace != null) {
 103  0
                             errors.putAll(super.validateReferencesExistAndActive(kimType, new AttributeSet(NAMESPACE_CODE, namespace.getCode()), previousValidationErrors));
 104  
                         } else {
 105  
                                 // If no namespaces were found, let the superclass generate an appropriate error.
 106  0
                                 errors.putAll(super.validateReferencesExistAndActive(kimType, new AttributeSet(NAMESPACE_CODE, attributes.get(NAMESPACE_CODE)), previousValidationErrors));
 107  
                         }
 108  
                 }
 109  
                 // Validate all non-namespaceCode attributes.
 110  0
                 errors.putAll(super.validateReferencesExistAndActive(kimType, nonNamespaceCodeAttributes, previousValidationErrors));
 111  0
                 return errors;
 112  
         }
 113  
 }