Coverage Report - org.kuali.rice.kim.document.rule.GenericPermissionMaintenanceDocumentRule
 
Classes in this File Line Coverage Branch Coverage Complexity
GenericPermissionMaintenanceDocumentRule
0%
0/58
0%
0/30
8
 
 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.kim.document.rule;
 17  
 
 18  
 import java.util.regex.Matcher;
 19  
 import java.util.regex.Pattern;
 20  
 
 21  
 import org.apache.commons.lang.StringUtils;
 22  
 import org.kuali.rice.core.util.RiceKeyConstants;
 23  
 import org.kuali.rice.core.xml.dto.AttributeSet;
 24  
 import org.kuali.rice.kim.bo.impl.GenericPermission;
 25  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionTemplateInfo;
 26  
 import org.kuali.rice.kim.bo.types.dto.KimTypeInfo;
 27  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 28  
 import org.kuali.rice.kim.service.KIMServiceLocatorInternal;
 29  
 import org.kuali.rice.kim.service.KIMServiceLocatorWeb;
 30  
 import org.kuali.rice.kim.service.support.KimPermissionTypeService;
 31  
 import org.kuali.rice.kns.document.MaintenanceDocument;
 32  
 import org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase;
 33  
 import org.kuali.rice.kns.util.GlobalVariables;
 34  
 
 35  
 /**
 36  
  * This is a description of what this class does - kellerj don't forget to fill this in. 
 37  
  * 
 38  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 39  
  *
 40  
  */
 41  0
 public class GenericPermissionMaintenanceDocumentRule extends
 42  
                 MaintenanceDocumentRuleBase {
 43  
         protected static final String DETAIL_VALUES_PROPERTY = "detailValues";
 44  
         protected static final String ERROR_MESSAGE_PREFIX = "error.document.kim.genericpermission.";
 45  
         protected static final String ERROR_MISSING_TEMPLATE = ERROR_MESSAGE_PREFIX + "missingtemplate";
 46  
         protected static final String ERROR_UNKNOWN_ATTRIBUTE = ERROR_MESSAGE_PREFIX + "unknownattribute";
 47  
         protected static final String ERROR_ATTRIBUTE_VALIDATION = ERROR_MESSAGE_PREFIX + "attributevalidation";
 48  
         
 49  
         @Override
 50  
         protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) {
 51  0
                 boolean rulesPassed = true;
 52  
                 try {
 53  0
                         GenericPermission perm = (GenericPermission)getNewBo();
 54  0
                         validateDetailValuesFormat(perm.getDetailValues());
 55  
                         // detailValues
 56  
                         // get the type from the template for validation
 57  0
                         KimPermissionTemplateInfo template = KIMServiceLocator.getPermissionService().getPermissionTemplate( perm.getTemplateId() );
 58  0
                         if ( template == null ) {
 59  0
                                 GlobalVariables.getMessageMap().addToErrorPath( MAINTAINABLE_ERROR_PATH );
 60  0
                                 GlobalVariables.getMessageMap().putError( DETAIL_VALUES_PROPERTY, ERROR_MISSING_TEMPLATE, perm.getTemplateId() );
 61  0
                                 GlobalVariables.getMessageMap().removeFromErrorPath( MAINTAINABLE_ERROR_PATH );
 62  0
                                 rulesPassed = false;
 63  
                         } else {
 64  0
                                 KimTypeInfo kimType = KIMServiceLocatorWeb.getTypeInfoService().getKimType( template.getKimTypeId() );
 65  0
                                 AttributeSet details = perm.getDetails();
 66  
                                 // check that add passed attributes are defined
 67  0
                                 for ( String attributeName : details.keySet() ) {
 68  0
                                         if ( kimType.getAttributeDefinitionByName(attributeName) == null ) {
 69  0
                                                 GlobalVariables.getMessageMap().addToErrorPath( MAINTAINABLE_ERROR_PATH );
 70  0
                                                 GlobalVariables.getMessageMap().putError( DETAIL_VALUES_PROPERTY, ERROR_UNKNOWN_ATTRIBUTE, attributeName, template.getNamespaceCode(), template.getName() );
 71  0
                                                 GlobalVariables.getMessageMap().removeFromErrorPath( MAINTAINABLE_ERROR_PATH );
 72  0
                                                 rulesPassed = false;
 73  
                                         }
 74  
                                 }
 75  
                                 // if all attributes are known, pass to the service for validation
 76  0
                                 if ( !GlobalVariables.getMessageMap().hasErrors() ) {
 77  0
                                         KimPermissionTypeService service = getPermissionTypeService( kimType.getKimTypeServiceName() );
 78  0
                                         if ( service != null ) {
 79  0
                                                 AttributeSet validationErrors = service.validateAttributes( kimType.getKimTypeId(), details);
 80  0
                                                 if ( validationErrors != null && !validationErrors.isEmpty() ) {
 81  0
                                                         for ( String attributeName : validationErrors.keySet() ) {
 82  0
                                                                 GlobalVariables.getMessageMap().addToErrorPath( MAINTAINABLE_ERROR_PATH );
 83  0
                                                                 GlobalVariables.getMessageMap().putError( DETAIL_VALUES_PROPERTY, ERROR_ATTRIBUTE_VALIDATION, attributeName, validationErrors.get(attributeName) );
 84  0
                                                                 GlobalVariables.getMessageMap().removeFromErrorPath( MAINTAINABLE_ERROR_PATH );
 85  
                                                         }
 86  0
                                                         rulesPassed = false;
 87  
                                                 }
 88  
                                         }
 89  
                                 }
 90  
                         }
 91  
                         // check each permission name against the type
 92  0
                 } catch ( RuntimeException ex ) {
 93  0
                         LOG.error( "Error in processCustomRouteDocumentBusinessRules()", ex );
 94  0
                         throw ex;
 95  0
                 }
 96  0
                 return rulesPassed;
 97  
         }
 98  
 
 99  
         protected boolean validateDetailValuesFormat(String permissionDetailValues){
 100  0
                 if(permissionDetailValues != null){
 101  0
                         String spacesPattern = "[\\s\\t]*";
 102  0
                         Pattern pattern = Pattern.compile(".+"+"="+".+");
 103  
                         Matcher matcher;
 104  
                         // ensure that all line delimiters are single linefeeds
 105  0
                         permissionDetailValues = permissionDetailValues.replace( "\r\n", "\n" );
 106  0
                         permissionDetailValues = permissionDetailValues.replace( '\r', '\n' );
 107  0
                         if(StringUtils.isNotBlank(permissionDetailValues)){
 108  0
                                 String[] values = permissionDetailValues.split( "\n" );
 109  0
                                 for(String attrib: values){
 110  0
                                       matcher = pattern.matcher(attrib);
 111  0
                                       if(!matcher.matches()){
 112  0
                                               GlobalVariables.getMessageMap().putError(MAINTAINABLE_ERROR_PATH+"."+DETAIL_VALUES_PROPERTY, RiceKeyConstants.ERROR_INVALID_FORMAT, new String[]{"Detail Values", permissionDetailValues});
 113  0
                                               return false;
 114  
                                       }
 115  
                                 }
 116  
                         }
 117  
                 }
 118  0
                 return true;
 119  
         }
 120  
         
 121  
         protected KimPermissionTypeService getPermissionTypeService( String serviceName ) {
 122  0
             if ( StringUtils.isBlank( serviceName ) ) {
 123  0
                     return null;
 124  
             }
 125  
             try {
 126  0
                     Object service = KIMServiceLocatorInternal.getService(serviceName);
 127  
                     // if we have a service name, it must exist
 128  0
                     if ( service == null ) {
 129  0
                                 LOG.warn("null returned for permission type service for service name: " + serviceName);
 130  
                     } else {
 131  
                             // whatever we retrieved must be of the correct type
 132  0
                             if ( !(service instanceof KimPermissionTypeService)  ) {
 133  0
                                     LOG.warn( "Service " + serviceName + " was not a KimPermissionTypeService.  Was: " + service.getClass().getName() );
 134  0
                                     service = null;
 135  
                             }
 136  
                     }
 137  0
                     return (KimPermissionTypeService)service;
 138  0
             } catch( Exception ex ) {
 139  0
                     LOG.error( "Error retrieving service: " + serviceName + " from the KIMServiceLocatorInternal.", ex );
 140  
             }
 141  0
             return null;
 142  
     }
 143  
 
 144  
 }