Coverage Report - org.kuali.rice.krad.web.bind.UifViewBeanWrapper
 
Classes in this File Line Coverage Branch Coverage Complexity
UifViewBeanWrapper
0%
0/75
0%
0/46
4.222
 
 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.web.bind;
 17  
 
 18  
 import org.kuali.rice.core.web.format.Formatter;
 19  
 import org.kuali.rice.krad.uif.field.DataField;
 20  
 import org.kuali.rice.krad.web.form.UifFormBase;
 21  
 import org.springframework.beans.BeanWrapperImpl;
 22  
 import org.springframework.beans.BeansException;
 23  
 import org.springframework.beans.InvalidPropertyException;
 24  
 import org.springframework.beans.PropertyValue;
 25  
 
 26  
 import java.beans.PropertyDescriptor;
 27  
 import java.beans.PropertyEditor;
 28  
 import java.util.HashSet;
 29  
 import java.util.Set;
 30  
 
 31  
 /**
 32  
  * This class is a top level BeanWrapper for a UIF View (form).  It will call the
 33  
  * view service to find formatters and check if fields are encrypted.
 34  
  *
 35  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 36  
  */
 37  
 public class UifViewBeanWrapper extends BeanWrapperImpl {
 38  0
     private static org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(UifViewBeanWrapper.class);
 39  
 
 40  
     // this is a handle to the target object so we don't
 41  
     // have to cast so often
 42  
     private UifFormBase form;
 43  
 
 44  
     // this stores all properties this wrapper has already checked
 45  
     // with the view so the service isn't called again
 46  
     private Set<String> processedProperties;
 47  
 
 48  
     public UifViewBeanWrapper(Object object) {
 49  0
         super(object);
 50  
 
 51  0
         form = (UifFormBase) object;
 52  0
         processedProperties = new HashSet<String>();
 53  0
     }
 54  
 
 55  
     protected void callViewService(String propertyName) {
 56  0
         if (LOG.isDebugEnabled()) {
 57  0
             LOG.debug("Attempting view service call for property '" + propertyName + "'");
 58  
         }
 59  0
         Class<? extends Formatter> formatterClass = null;
 60  
 
 61  
         // viewId should be determined in UifAnnotationMethodHandlerAdapter so
 62  
         // nothing we can do without one here
 63  0
         if (form.getView() == null) {
 64  0
             return;
 65  
         }
 66  
 
 67  
         // check if we already processed this property for this BeanWrapper instance
 68  0
         if (processedProperties.contains(propertyName)) {
 69  0
             return;
 70  
         }
 71  
 
 72  0
         DataField af = null;
 73  0
         if (form.getView().getViewIndex() != null) {
 74  0
             af = form.getView().getViewIndex().getDataFieldByPath(propertyName);
 75  
         }
 76  
 
 77  0
         if ((af == null) && (form.getPreviousView() != null) && (form.getPreviousView().getViewIndex() != null)) {
 78  0
             af = form.getPreviousView().getViewIndex().getDataFieldByPath(propertyName);
 79  
         }
 80  
 
 81  0
         boolean requiresEncryption = false;
 82  0
         if (af != null) {
 83  0
             if (af.getAttributeSecurity() != null) {
 84  0
                 if (af.getAttributeSecurity().hasRestrictionThatRemovesValueFromUI()) {
 85  0
                     requiresEncryption = true;
 86  
                 }
 87  
             }
 88  
 
 89  0
             Formatter formatter = af.getFormatter();
 90  0
             if (formatter != null) {
 91  0
                 formatterClass = formatter.getClass();
 92  
             }
 93  
         }
 94  
 
 95  
         // really these should be PropertyEditors after we evaluate how many are
 96  
         // needed vs how many spring provides
 97  0
         if (formatterClass != null) {
 98  0
             if (LOG.isDebugEnabled()) {
 99  0
                 LOG.debug("Registering custom editor for property path '" + propertyName + "' and formatter class '" +
 100  
                         formatterClass.getName() + "'");
 101  
             }
 102  0
             PropertyEditor customEditor = new UifKnsFormatterPropertyEditor(formatterClass);
 103  0
             if (requiresEncryption) {
 104  0
                 if (LOG.isDebugEnabled()) {
 105  0
                     LOG.debug("Enabling encryption for custom editor '" + propertyName + "' and formatter class '" +
 106  
                             formatterClass.getName() + "'");
 107  
                 }
 108  0
                 this.registerCustomEditor(null, propertyName, new UifEncryptionPropertyEditorWrapper(customEditor));
 109  
             } else {
 110  0
                 this.registerCustomEditor(null, propertyName, customEditor);
 111  
             }
 112  0
         } else if (requiresEncryption) {
 113  0
             if (LOG.isDebugEnabled()) {
 114  0
                 LOG.debug("No custom formatter for property path '" + propertyName +
 115  
                         "' but property does require encryption");
 116  
             }
 117  0
             this.registerCustomEditor(null, propertyName,
 118  
                     new UifEncryptionPropertyEditorWrapper(findEditorForPropertyName(propertyName)));
 119  
         }
 120  
 
 121  0
         processedProperties.add(propertyName);
 122  0
     }
 123  
 
 124  
     protected PropertyEditor findEditorForPropertyName(String propertyName) {
 125  0
         Class<?> clazz = getPropertyType(propertyName);
 126  0
         if (LOG.isDebugEnabled()) {
 127  0
             LOG.debug("Attempting retrieval of property editor using class '" + clazz + "' and property path '" +
 128  
                     propertyName + "'");
 129  
         }
 130  0
         PropertyEditor editor = findCustomEditor(clazz, propertyName);
 131  0
         if (editor == null) {
 132  0
             if (LOG.isDebugEnabled()) {
 133  0
                 LOG.debug("No custom property editor found using class '" + clazz + "' and property path '" +
 134  
                         propertyName + "'. Attempting to find default property editor class.");
 135  
             }
 136  0
             editor = getDefaultEditor(clazz);
 137  
         }
 138  0
         return editor;
 139  
     }
 140  
 
 141  
     @Override
 142  
     public Class<?> getPropertyType(String propertyName) throws BeansException {
 143  
         try {
 144  0
             PropertyDescriptor pd = getPropertyDescriptorInternal(propertyName);
 145  0
             if (pd != null) {
 146  0
                 return pd.getPropertyType();
 147  
             }
 148  
 
 149  
             // Maybe an indexed/mapped property...
 150  0
             Object value = super.getPropertyValue(propertyName);
 151  0
             if (value != null) {
 152  0
                 return value.getClass();
 153  
             }
 154  
 
 155  
             // Check to see if there is a custom editor,
 156  
             // which might give an indication on the desired target type.
 157  0
             Class<?> editorType = guessPropertyTypeFromEditors(propertyName);
 158  0
             if (editorType != null) {
 159  0
                 return editorType;
 160  
             }
 161  0
         } catch (InvalidPropertyException ex) {
 162  
             // Consider as not determinable.
 163  0
         }
 164  
 
 165  0
         return null;
 166  
     }
 167  
 
 168  
     @Override
 169  
     public Object getPropertyValue(String propertyName) throws BeansException {
 170  0
         callViewService(propertyName);
 171  0
         return super.getPropertyValue(propertyName);
 172  
     }
 173  
 
 174  
     @Override
 175  
     public void setPropertyValue(PropertyValue pv) throws BeansException {
 176  0
         callViewService(pv.getName());
 177  0
         super.setPropertyValue(pv);
 178  0
     }
 179  
 
 180  
     @Override
 181  
     public void setPropertyValue(String propertyName, Object value) throws BeansException {
 182  0
         callViewService(propertyName);
 183  0
         super.setPropertyValue(propertyName, value);
 184  0
     }
 185  
 
 186  
     @Override
 187  
     public void setWrappedInstance(Object object, String nestedPath, Object rootObject) {
 188  
         //TODO clear cache?
 189  0
         form = (UifFormBase) object;
 190  0
         super.setWrappedInstance(object, nestedPath, rootObject);
 191  0
     }
 192  
 
 193  
     @Override
 194  
     public void setWrappedInstance(Object object) {
 195  
         //TODO clear cache?
 196  0
         form = (UifFormBase) object;
 197  0
         super.setWrappedInstance(object);
 198  0
     }
 199  
 }