Coverage Report - org.kuali.rice.kns.service.impl.DocumentTypePermissionTypeServiceImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
DocumentTypePermissionTypeServiceImpl
0%
0/22
0%
0/16
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.HashSet;
 20  
 import java.util.List;
 21  
 import java.util.Set;
 22  
 
 23  
 import org.apache.commons.lang.StringUtils;
 24  
 import org.kuali.rice.core.xml.dto.AttributeSet;
 25  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 26  
 import org.kuali.rice.kew.doctype.service.DocumentTypeService;
 27  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 28  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 29  
 import org.kuali.rice.kim.service.support.impl.KimPermissionTypeServiceBase;
 30  
 import org.kuali.rice.kim.util.KimConstants;
 31  
 
 32  
 /**
 33  
  * This is a description of what this class does - mpham don't forget to fill
 34  
  * this in.
 35  
  * 
 36  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 37  
  * 
 38  
  */
 39  0
 public class DocumentTypePermissionTypeServiceImpl extends KimPermissionTypeServiceBase {
 40  
         protected transient DocumentTypeService documentTypeService;
 41  
         
 42  
         {
 43  0
                 requiredAttributes.add( KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME );
 44  0
                 checkRequiredAttributes = true;
 45  0
         }
 46  
         /**
 47  
          * Loops over the given permissions and returns the most specific permission that matches.
 48  
          * 
 49  
          * That is, if a permission exists for the document type, then the permission for any 
 50  
          * parent document will not be considered/returned.
 51  
          * 
 52  
          * @see org.kuali.rice.kim.service.support.impl.KimPermissionTypeServiceBase#performPermissionMatches(org.kuali.rice.core.xml.dto.AttributeSet, java.util.List)
 53  
          */
 54  
         @Override
 55  
         protected List<KimPermissionInfo> performPermissionMatches(AttributeSet requestedDetails,
 56  
                         List<KimPermissionInfo> permissionsList) {
 57  
                 // pull all the potential parent doc type names from the permission list
 58  0
                 Set<String> permissionDocTypeNames = new HashSet<String>( permissionsList.size() );
 59  0
                 for ( KimPermissionInfo kpi : permissionsList ) {
 60  0
                         String docTypeName = kpi.getDetails().get( KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME );
 61  0
                         if ( StringUtils.isNotBlank( docTypeName ) ) {
 62  0
                                 permissionDocTypeNames.add( docTypeName );
 63  
                         }
 64  0
                 }
 65  
                 // find the parent documents which match
 66  0
                 DocumentType docType = getDocumentTypeService().findByName(requestedDetails.get(KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME));
 67  0
                 String matchingDocTypeName = getClosestParentDocumentTypeName(docType, permissionDocTypeNames);
 68  
                 // re-loop over the permissions and build a new list of the ones which have the
 69  
                 // matching document type names in their details
 70  0
                 List<KimPermissionInfo> matchingPermissions = new ArrayList<KimPermissionInfo>();
 71  0
                 for ( KimPermissionInfo kpi : permissionsList ) {
 72  0
                         String docTypeName = kpi.getDetails().get( KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME );
 73  
                         // only allow a match on the "*" type if no matching document types were found
 74  0
                         if((StringUtils.isEmpty(matchingDocTypeName) && StringUtils.equals(docTypeName,"*")) 
 75  
                                 || (StringUtils.isNotEmpty(matchingDocTypeName) && matchingDocTypeName.equals(docTypeName))) {
 76  0
                                 matchingPermissions.add( kpi );
 77  
                         }
 78  0
                 }
 79  
 
 80  0
                 return matchingPermissions;
 81  
         }
 82  
         
 83  
         protected DocumentTypeService getDocumentTypeService() {
 84  0
                 if ( documentTypeService == null ) {
 85  0
                         documentTypeService = KEWServiceLocator.getDocumentTypeService();
 86  
                 }
 87  0
                 return this.documentTypeService;
 88  
         }
 89  
 
 90  
 }