Coverage Report - org.kuali.rice.kns.lookup.LookupUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
LookupUtils
0%
0/362
0%
0/228
4.667
 
 1  
 /*
 2  
  * Copyright 2006-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  
 
 17  
 package org.kuali.rice.kns.lookup;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.apache.ojb.broker.query.Criteria;
 21  
 import org.kuali.rice.core.api.datetime.DateTimeService;
 22  
 import org.kuali.rice.core.api.config.property.ConfigurationService;
 23  
 import org.kuali.rice.core.framework.persistence.platform.DatabasePlatform;
 24  
 import org.kuali.rice.core.framework.services.CoreFrameworkServiceLocator;
 25  
 import org.kuali.rice.core.api.encryption.EncryptionService;
 26  
 import org.kuali.rice.kns.bo.BusinessObject;
 27  
 import org.kuali.rice.kns.bo.BusinessObjectRelationship;
 28  
 import org.kuali.rice.kns.datadictionary.RelationshipDefinition;
 29  
 import org.kuali.rice.kns.datadictionary.control.ControlDefinition;
 30  
 import org.kuali.rice.kns.datadictionary.exception.UnknownBusinessClassAttributeException;
 31  
 import org.kuali.rice.kns.exception.ClassNotPersistableException;
 32  
 import org.kuali.rice.kns.service.BusinessObjectDictionaryService;
 33  
 import org.kuali.rice.kns.service.BusinessObjectMetaDataService;
 34  
 import org.kuali.rice.kns.service.DataDictionaryService;
 35  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 36  
 import org.kuali.rice.kns.service.PersistenceStructureService;
 37  
 import org.kuali.rice.kns.util.KNSConstants;
 38  
 import org.kuali.rice.kns.util.KNSPropertyConstants;
 39  
 import org.kuali.rice.kns.util.ObjectUtils;
 40  
 import org.kuali.rice.kns.web.comparator.NullValueComparator;
 41  
 import org.kuali.rice.kns.web.ui.Field;
 42  
 import org.kuali.rice.kns.web.ui.ResultRow;
 43  
 
 44  
 import java.sql.Date;
 45  
 import java.sql.Timestamp;
 46  
 import java.text.ParseException;
 47  
 import java.util.ArrayList;
 48  
 import java.util.Calendar;
 49  
 import java.util.Collection;
 50  
 import java.util.Comparator;
 51  
 import java.util.HashMap;
 52  
 import java.util.HashSet;
 53  
 import java.util.Iterator;
 54  
 import java.util.List;
 55  
 import java.util.Map;
 56  
 import java.util.Set;
 57  
 import java.util.StringTokenizer;
 58  
 
 59  
 /**
 60  
  * Not a static utility class for Lookup related utilities and helper methods.
 61  
  */
 62  
 public class LookupUtils {
 63  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(LookupUtils.class);
 64  
 
 65  
     private static DataDictionaryService dataDictionaryService;
 66  
     private static PersistenceStructureService persistenceStructureService;
 67  
     private static BusinessObjectDictionaryService businessObjectDictionaryService;
 68  
     private static BusinessObjectMetaDataService businessObjectMetaDataService;
 69  
     private static DateTimeService dateTimeService;
 70  
 
 71  0
     public LookupUtils() {
 72  
         // default constructor for Spring to call to start up initialization process
 73  0
     }
 74  
 
 75  
     public void setBusinessObjectDictionaryService(BusinessObjectDictionaryService businessObjectDictionaryService) {
 76  0
         LookupUtils.businessObjectDictionaryService = businessObjectDictionaryService;
 77  0
     }
 78  
 
 79  
     public void setDataDictionaryService(DataDictionaryService ddService) {
 80  0
         LookupUtils.dataDictionaryService = ddService;
 81  0
     }
 82  
 
 83  
     public void setPersistenceStructureService(PersistenceStructureService persistenceStructureService) {
 84  0
         LookupUtils.persistenceStructureService = persistenceStructureService;
 85  0
     }
 86  
 
 87  
     public void setDateTimeService(DateTimeService dateTimeService) {
 88  0
                 LookupUtils.dateTimeService = dateTimeService;
 89  0
         }
 90  
 
 91  
         /**
 92  
      * Sets the businessObjectMetaDataService attribute value.
 93  
      * @param businessObjectMetaDataService The businessObjectMetaDataService to set.
 94  
      */
 95  
     public void setBusinessObjectMetaDataService(BusinessObjectMetaDataService businessObjectMetaDataService) {
 96  0
         LookupUtils.businessObjectMetaDataService = businessObjectMetaDataService;
 97  0
     }
 98  
 
 99  
     /**
 100  
      *
 101  
      * This method uses the DataDictionary to determine whether to force uppercase the value, and if it should, then it does the
 102  
      * uppercase, and returns the upper-cased value.
 103  
      *
 104  
      * @param boClass Parent BO class that the fieldName is a member of.
 105  
      * @param fieldName Name of the field to be forced to uppercase.
 106  
      * @param fieldValue Value of the field that may be uppercased.
 107  
      * @return The correctly uppercased fieldValue if it should be uppercased, otherwise fieldValue is returned unchanged.
 108  
      *
 109  
      */
 110  
     public static String forceUppercase(Class boClass, String fieldName, String fieldValue) {
 111  
 
 112  
         // short-circuit to exit if there isnt enough information to do the forceUppercase
 113  0
         if (StringUtils.isBlank(fieldValue)) {
 114  0
             return fieldValue;
 115  
         }
 116  
 
 117  
         // parameter validation
 118  0
         if (boClass == null) {
 119  0
             throw new IllegalArgumentException("Parameter boClass passed in with null value.");
 120  
         }
 121  0
         else if (!BusinessObject.class.isAssignableFrom(boClass)) {
 122  0
             throw new IllegalArgumentException("Parameter boClass value passed in [" + boClass.getName() + "] " + "was not a descendent of BusinessObject.");
 123  
         }
 124  0
         if (StringUtils.isBlank(fieldName)) {
 125  0
             throw new IllegalArgumentException("Parameter fieldName passed in with empty value.");
 126  
         }
 127  
 
 128  0
         if (!dataDictionaryService.isAttributeDefined(boClass, fieldName)) {
 129  0
             return fieldValue;
 130  
         }
 131  
 
 132  
 
 133  0
         boolean forceUpperCase = false;
 134  
         try {
 135  0
             forceUpperCase = dataDictionaryService.getAttributeForceUppercase(boClass, fieldName).booleanValue();
 136  
         }
 137  0
         catch (UnknownBusinessClassAttributeException ubae) {
 138  
             // do nothing, dont alter the fieldValue
 139  0
         }
 140  0
         if (forceUpperCase && !fieldValue.endsWith(EncryptionService.ENCRYPTION_POST_PREFIX)) {
 141  0
             return fieldValue.toUpperCase();
 142  
         }
 143  0
         return fieldValue;
 144  
     }
 145  
 
 146  
     /**
 147  
      *
 148  
      * This method uses the DataDictionary to determine whether to force uppercase the values, and if it should, then it does the
 149  
      * uppercase, and returns the upper-cased Map of fieldname/fieldValue pairs.
 150  
      *
 151  
      * @param boClass Parent BO class that the fieldName is a member of.
 152  
      * @param fieldValues A Map<String,String> where the key is the fieldName and the value is the fieldValue.
 153  
      * @return The same Map is returned, with the appropriate values uppercased (if any).
 154  
      *
 155  
      */
 156  
     public static Map<String, String> forceUppercase(Class boClass, Map<String, String> fieldValues) {
 157  0
         if (boClass == null) {
 158  0
             throw new IllegalArgumentException("Parameter boClass passed in with null value.");
 159  
         }
 160  0
         else if (!BusinessObject.class.isAssignableFrom(boClass)) {
 161  0
             throw new IllegalArgumentException("Parameter boClass value passed in [" + boClass.getName() + "] " + "was not a descendent of BusinessObject.");
 162  
         }
 163  0
         if (fieldValues == null) {
 164  0
             throw new IllegalArgumentException("Parameter fieldValues passed in with null value.");
 165  
         }
 166  
 
 167  0
         for (String fieldName : fieldValues.keySet()) {
 168  0
             fieldValues.put(fieldName, LookupUtils.forceUppercase(boClass, fieldName, (String) fieldValues.get(fieldName)));
 169  
         }
 170  0
         return fieldValues;
 171  
     }
 172  
 
 173  
     /**
 174  
      * This method applies the search results limit to the search criteria for this BO
 175  
      *
 176  
      * @param businessObjectClass BO class to search on / get limit for
 177  
      * @param criteria search criteria
 178  
      * @param platform database platform
 179  
      */
 180  
     public static void applySearchResultsLimit(Class businessObjectClass, Criteria criteria, DatabasePlatform platform) {
 181  0
         Integer limit = getSearchResultsLimit(businessObjectClass);
 182  0
         if (limit != null) {
 183  0
             platform.applyLimit(limit, criteria);
 184  
         }
 185  0
     }
 186  
 
 187  
     /**
 188  
      * This method applies the search results limit to the search criteria for this BO (JPA)
 189  
      *
 190  
      * @param businessObjectClass BO class to search on / get limit for
 191  
      * @param criteria search criteria
 192  
      */
 193  
     public static void applySearchResultsLimit(Class businessObjectClass, org.kuali.rice.core.framework.persistence.jpa.criteria.Criteria criteria) {
 194  0
         Integer limit = getSearchResultsLimit(businessObjectClass);
 195  0
         if (limit != null) {
 196  0
                 criteria.setSearchLimit(limit);
 197  
                 }
 198  0
     }
 199  
 
 200  
     /**
 201  
      * This method parses and returns the lookup result set limit, checking first for the limit
 202  
      * for the BO being looked up, and then the global application limit if there isn't a limit
 203  
      * specific to this BO.
 204  
      *
 205  
      * @param businessObjectClass BO class to search on / get limit for.  If the passed in type is not of type
 206  
      * {@link BusinessObject}, then the application-wide default limit is used.
 207  
      * @return result set limit (or null if there isn't one)
 208  
      */
 209  
     public static Integer getSearchResultsLimit(Class businessObjectClass) {
 210  0
         Integer limit = null;
 211  0
         if (BusinessObject.class.isAssignableFrom(businessObjectClass)) {
 212  0
             limit = getBusinessObjectSearchResultsLimit(businessObjectClass);
 213  
         }
 214  0
         if (limit == null) {
 215  0
             limit = getApplicationSearchResultsLimit();
 216  
         }
 217  0
         return limit;
 218  
     }
 219  
 
 220  
     /**
 221  
      *
 222  
      */
 223  
     private static Integer getApplicationSearchResultsLimit() {
 224  0
         String limitString = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(KNSConstants.KNS_NAMESPACE, KNSConstants.DetailTypes.LOOKUP_PARM_DETAIL_TYPE, KNSConstants.SystemGroupParameterNames.LOOKUP_RESULTS_LIMIT);
 225  0
         if (limitString != null) {
 226  0
             return Integer.valueOf(limitString);
 227  
         }
 228  0
         return null;
 229  
     }
 230  
 
 231  
     /**
 232  
      * This method parses and returns the lookup result set limit for the passed in BO (if one exists)
 233  
      *
 234  
      * @param businessObjectClass
 235  
      * @return result set limit for this BO (or null if the BO doesn't have a limit)
 236  
      */
 237  
     private static Integer getBusinessObjectSearchResultsLimit(Class businessObjectClass) {
 238  0
         return businessObjectDictionaryService.getLookupResultSetLimit(businessObjectClass);
 239  
     }
 240  
 
 241  
     /**
 242  
      * This method the maximum rows per page in a multiple value lookup
 243  
      *
 244  
      * @see org.kuali.KNSConstants.SystemGroupParameterNames#MULTIPLE_VALUE_LOOKUP_RESULTS_PER_PAGE
 245  
      * @return
 246  
      */
 247  
     public static Integer getApplicationMaximumSearchResulsPerPageForMultipleValueLookups() {
 248  0
         String limitString = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsString(KNSConstants.KNS_NAMESPACE, KNSConstants.DetailTypes.LOOKUP_PARM_DETAIL_TYPE, KNSConstants.SystemGroupParameterNames.MULTIPLE_VALUE_LOOKUP_RESULTS_PER_PAGE);
 249  0
         if (limitString != null) {
 250  0
             return Integer.valueOf(limitString);
 251  
         }
 252  0
         return null;
 253  
     }
 254  
 
 255  
     /**
 256  
      * This makes a , delimited String list of fields separated by a , into a List of target --> lookup readOnlyFieldsList.
 257  
      *
 258  
      * @param readOnlyFields
 259  
      * @return the List representation of the readOnlyFields  String provided.
 260  
      */
 261  
     public static List<String> translateReadOnlyFieldsToList(String readOnlyFieldsString) {
 262  0
         List<String> readOnlyFieldsList = new ArrayList<String>();
 263  0
         if (StringUtils.isNotEmpty(readOnlyFieldsString)) {
 264  0
             if (readOnlyFieldsString.indexOf(",") > 0) {
 265  0
                 StringTokenizer token = new StringTokenizer(readOnlyFieldsString, ",");
 266  0
                 while (token.hasMoreTokens()) {
 267  0
                     String element = token.nextToken();
 268  0
                     readOnlyFieldsList.add(element);
 269  0
                 }
 270  0
             }
 271  
             else {
 272  0
                 readOnlyFieldsList.add(readOnlyFieldsString);
 273  
             }
 274  
         }
 275  0
       return readOnlyFieldsList;
 276  
     }
 277  
 
 278  
     /**
 279  
      * This translates a , delimited list of pairs separated by a : into a Map of target --> lookup field conversions.
 280  
      *
 281  
      * @param conversionFields
 282  
      * @return the Map representation of the fieldConversions String provided.
 283  
      */
 284  
     public static Map translateFieldConversions(String fieldConversionsString) {
 285  0
         Map fieldConversionsMap = new HashMap();
 286  0
         if (StringUtils.isNotEmpty(fieldConversionsString)) {
 287  0
             if (fieldConversionsString.indexOf(",") > 0) {
 288  0
                 StringTokenizer token = new StringTokenizer(fieldConversionsString, ",");
 289  0
                 while (token.hasMoreTokens()) {
 290  0
                     String element = token.nextToken();
 291  0
                     fieldConversionsMap.put(element.substring(0, element.indexOf(":")), element.substring(element.indexOf(":") + 1));
 292  0
                 }
 293  0
             }
 294  
             else {
 295  0
                 fieldConversionsMap.put(fieldConversionsString.substring(0, fieldConversionsString.indexOf(":")), fieldConversionsString.substring(fieldConversionsString.indexOf(":") + 1));
 296  
             }
 297  
         }
 298  0
         return fieldConversionsMap;
 299  
     }
 300  
 
 301  
     public static Field setFieldQuickfinder(BusinessObject businessObject,
 302  
             String attributeName, Field field, List displayedFieldNames) {
 303  0
         return setFieldQuickfinder( businessObject, (String)null, false, 0, attributeName, field, displayedFieldNames );
 304  
     }
 305  
 
 306  
     public static Field setFieldQuickfinder(BusinessObject businessObject,
 307  
             String attributeName, Field field, List displayedFieldNames, SelectiveReferenceRefresher srr) {
 308  0
         return setFieldQuickfinder( businessObject, (String)null, false, 0, attributeName, field, displayedFieldNames, srr );
 309  
     }
 310  
 
 311  
     /**
 312  
      * Sets a fields quickfinder class and field conversions for an attribute.
 313  
      */
 314  
     public static Field setFieldQuickfinder(BusinessObject businessObject, String collectionName, boolean addLine, int index,
 315  
             String attributeName, Field field, List displayedFieldNames, SelectiveReferenceRefresher srr) {
 316  0
         field = setFieldQuickfinder(businessObject, collectionName, addLine, index, attributeName, field, displayedFieldNames);
 317  0
         if (srr != null) {
 318  0
             String collectionPrefix = "";
 319  0
             if ( collectionName != null ) {
 320  0
                 if (addLine) {
 321  0
                     collectionPrefix = KNSConstants.MAINTENANCE_ADD_PREFIX + collectionName + ".";
 322  
                 }
 323  
                 else {
 324  0
                     collectionPrefix = collectionName + "[" + index + "].";
 325  
                 }
 326  
             }
 327  0
             field.setReferencesToRefresh(convertReferencesToSelectCollectionToString(
 328  
                     srr.getAffectedReferencesFromLookup(businessObject, attributeName, collectionPrefix)));
 329  
         }
 330  0
         return field;
 331  
     }
 332  
 
 333  
     /**
 334  
      * Sets a fields quickfinder class and field conversions for an attribute.
 335  
      */
 336  
     public static Field setFieldQuickfinder(BusinessObject businessObject, String collectionName, boolean addLine, int index,
 337  
                                             String attributeName, Field field, List displayedFieldNames) {
 338  0
         boolean noLookup = false;
 339  0
         if (businessObject == null) {
 340  0
             return field;
 341  
         }
 342  
 
 343  0
         Boolean noLookupField = businessObjectDictionaryService.noLookupFieldLookup(businessObject.getClass(), attributeName);
 344  0
         if (noLookupField != null && noLookupField) {
 345  0
             noLookup = true;
 346  
         }
 347  
 
 348  0
          return setFieldQuickfinder(businessObject, collectionName, addLine, index, attributeName, field, displayedFieldNames, noLookup);
 349  
 
 350  
     }
 351  
 
 352  
     public static Field setFieldQuickfinder(BusinessObject businessObject, String collectionName, boolean addLine, int index, String attributeName, Field field, List displayedFieldNames, boolean noLookupField)
 353  
     {
 354  0
          if (businessObject == null) {
 355  0
             return field;
 356  
         }
 357  
 
 358  0
         if (noLookupField) {
 359  0
             return field;
 360  
         }
 361  0
         BusinessObjectRelationship relationship = null;
 362  0
         if ( LOG.isDebugEnabled() ) {
 363  0
             LOG.debug( "setFieldQuickfinder("+businessObject.getClass().getName()+","+attributeName+","+field+","+displayedFieldNames+")" );
 364  
         }
 365  
 
 366  0
         relationship = businessObjectMetaDataService.getBusinessObjectRelationship(businessObject, businessObject.getClass(), attributeName, "", false);
 367  
 
 368  0
         String collectionPrefix = "";
 369  0
         if ( collectionName != null ) {
 370  0
             if (addLine) {
 371  0
                 collectionPrefix = KNSConstants.MAINTENANCE_ADD_PREFIX + collectionName + ".";
 372  
             }
 373  
             else {
 374  0
                 collectionPrefix = collectionName + "[" + index + "].";
 375  
             }
 376  
         }
 377  
 
 378  0
         if (relationship == null) {
 379  0
             Class c = ObjectUtils.getPropertyType(businessObject, attributeName, persistenceStructureService);
 380  
 
 381  0
             if(c!=null) {
 382  0
                 if (attributeName.contains(".")) {
 383  0
                     attributeName = StringUtils.substringBeforeLast( attributeName, "." );
 384  
                 }
 385  
 
 386  0
                 RelationshipDefinition ddReference = businessObjectMetaDataService.getBusinessObjectRelationshipDefinition(businessObject, attributeName);
 387  0
                 relationship = businessObjectMetaDataService.getBusinessObjectRelationship(ddReference, businessObject, businessObject.getClass(), attributeName, "", false);
 388  0
                 if(relationship!=null) {
 389  0
                     field.setQuickFinderClassNameImpl(relationship.getRelatedClass().getName());
 390  0
                     field.setFieldConversions(generateFieldConversions( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, null));
 391  0
                     field.setLookupParameters(generateLookupParameters( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, null));
 392  0
                     field.setBaseLookupUrl(LookupUtils.getBaseLookupUrl(false));
 393  0
                     field.setImageSrc(businessObjectDictionaryService.getSearchIconOverride(businessObject.getClass()));
 394  
                 }
 395  
             }
 396  
 
 397  0
             return field;
 398  
         }
 399  0
         if (ObjectUtils.isNestedAttribute(attributeName)) {
 400  
             //first determine the prefix and the attribute we are referring to
 401  0
             String nestedAttributePrefix = StringUtils.substringBeforeLast(attributeName, ".");
 402  
 
 403  0
             field.setQuickFinderClassNameImpl(relationship.getRelatedClass().getName());
 404  0
             field.setFieldConversions( generateFieldConversions( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, nestedAttributePrefix ) );
 405  0
             field.setLookupParameters( generateLookupParameters( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, nestedAttributePrefix ) );
 406  0
             field.setBaseLookupUrl(LookupUtils.getBaseLookupUrl(false));
 407  0
         } else {
 408  0
             field.setQuickFinderClassNameImpl(relationship.getRelatedClass().getName());
 409  0
             field.setFieldConversions( generateFieldConversions( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, null ) );
 410  0
             field.setLookupParameters( generateLookupParameters( businessObject, collectionPrefix, relationship, field.getPropertyPrefix(), displayedFieldNames, null ) );
 411  0
             field.setBaseLookupUrl(LookupUtils.getBaseLookupUrl(false));
 412  
         }
 413  0
         field.setImageSrc(businessObjectDictionaryService.getSearchIconOverride(businessObject.getClass()));
 414  
 
 415  0
         return field;
 416  
     }
 417  
 
 418  0
     private static String BASE_LOOKUP_ACTION_URL = null;
 419  0
     private static String BASE_MULTIPLE_VALUE_LOOKUP_ACTION_URL = null;
 420  0
     private static String BASE_INQUIRY_ACTION_URL = null;
 421  
     
 422  
     public static String getBaseLookupUrl(boolean isMultipleValue) {
 423  0
         ConfigurationService kualiConfigurationService = KNSServiceLocator.getKualiConfigurationService();
 424  0
             if ( isMultipleValue ) {
 425  0
                     if ( BASE_MULTIPLE_VALUE_LOOKUP_ACTION_URL == null ) {
 426  0
                             String lookupUrl = kualiConfigurationService.getPropertyString(KNSConstants.APPLICATION_URL_KEY);
 427  0
                             if (!lookupUrl.endsWith("/")) {
 428  0
                                     lookupUrl = lookupUrl + "/";
 429  
                             }
 430  0
                                 lookupUrl += "kr/" + KNSConstants.MULTIPLE_VALUE_LOOKUP_ACTION;
 431  0
                                 BASE_MULTIPLE_VALUE_LOOKUP_ACTION_URL = lookupUrl;
 432  
                     }
 433  0
                     return BASE_MULTIPLE_VALUE_LOOKUP_ACTION_URL;
 434  
             } else {
 435  0
                     if ( BASE_LOOKUP_ACTION_URL == null ) {
 436  0
                             String lookupUrl = kualiConfigurationService.getPropertyString(KNSConstants.APPLICATION_URL_KEY);
 437  0
                             if (!lookupUrl.endsWith("/")) {
 438  0
                                     lookupUrl = lookupUrl + "/";
 439  
                             }
 440  0
                                 lookupUrl += "kr/" + KNSConstants.LOOKUP_ACTION;
 441  0
                                 BASE_LOOKUP_ACTION_URL = lookupUrl;
 442  
                     }
 443  0
                     return BASE_LOOKUP_ACTION_URL;
 444  
             }
 445  
     }
 446  
 
 447  
     public static String getBaseInquiryUrl() {
 448  0
             if ( BASE_INQUIRY_ACTION_URL == null ) {
 449  0
                     StringBuffer inquiryUrl = new StringBuffer( 
 450  
                                     KNSServiceLocator.getKualiConfigurationService().getPropertyString(KNSConstants.APPLICATION_URL_KEY) );
 451  0
                         if (inquiryUrl.charAt(inquiryUrl.length()-1) != '/' ) {
 452  0
                                 inquiryUrl.append( '/' );
 453  
                         }
 454  0
                         inquiryUrl.append("kr/");
 455  0
                         inquiryUrl.append( KNSConstants.INQUIRY_ACTION );
 456  0
                         BASE_INQUIRY_ACTION_URL = inquiryUrl.toString();
 457  
             }
 458  0
             return BASE_INQUIRY_ACTION_URL;
 459  
     }
 460  
 
 461  
     public static String transformLookupUrlToMultiple(String lookupUrl) {
 462  0
             return lookupUrl.replace("kr/" + KNSConstants.LOOKUP_ACTION, "kr/" + KNSConstants.MULTIPLE_VALUE_LOOKUP_ACTION);
 463  
     }
 464  
 
 465  
     /**
 466  
      * Sets whether a field should have direct inquiries enabled.  The direct inquiry is the functionality on a page such that if the primary key for
 467  
      * a quickfinder is filled in and the direct inquiry button is pressed, then a new window will popup showing an inquiry page without going through
 468  
      * the lookup first.
 469  
      *
 470  
      * For this method to work properly, it must be called after setFieldQuickfinder
 471  
      * //TODO: chb: that should not be the case -- the relationship object the two rely upon should be established outside of the lookup/quickfinder code
 472  
      *
 473  
      *
 474  
      * @param field
 475  
      */
 476  
     private static void setFieldDirectInquiry(Field field) {
 477  0
         if (StringUtils.isNotBlank(field.getFieldConversions())) {
 478  0
             boolean directInquiriesEnabled = CoreFrameworkServiceLocator.getParameterService().getParameterValueAsBoolean(KNSConstants.KNS_NAMESPACE, KNSConstants.DetailTypes.ALL_DETAIL_TYPE, KNSConstants.SystemGroupParameterNames.ENABLE_DIRECT_INQUIRIES_IND);
 479  0
             if (directInquiriesEnabled) {
 480  0
                 if (StringUtils.isNotBlank(field.getFieldConversions())) {
 481  0
                     String fieldConversions = field.getFieldConversions();
 482  0
                     String newInquiryParameters = KNSConstants.EMPTY_STRING;
 483  0
                     String[] conversions = StringUtils.split(fieldConversions, KNSConstants.FIELD_CONVERSIONS_SEPARATOR);
 484  
 
 485  0
                     for (int l = 0; l < conversions.length; l++) {
 486  0
                         String conversion = conversions[l];
 487  
                         //String[] conversionPair = StringUtils.split(conversion, KNSConstants.FIELD_CONVERSION_PAIR_SEPARATOR);
 488  0
                         String[] conversionPair = StringUtils.split(conversion, KNSConstants.FIELD_CONVERSION_PAIR_SEPARATOR, 2);
 489  0
                         String conversionFrom = conversionPair[0];
 490  0
                         String conversionTo = conversionPair[1];
 491  0
                         newInquiryParameters += (conversionTo + KNSConstants.FIELD_CONVERSION_PAIR_SEPARATOR + conversionFrom);
 492  
 
 493  0
                         if (l < conversions.length - 1) {
 494  0
                             newInquiryParameters += KNSConstants.FIELD_CONVERSIONS_SEPARATOR;
 495  
                         }
 496  
                     }
 497  
 
 498  0
                     field.setInquiryParameters(newInquiryParameters);
 499  
                 }
 500  
             }
 501  0
             field.setFieldDirectInquiryEnabled(directInquiriesEnabled);
 502  0
         }
 503  
         else {
 504  0
             field.setFieldDirectInquiryEnabled(false);
 505  
         }
 506  0
     }
 507  
 
 508  
     /**
 509  
      *
 510  
      * @param field
 511  
      * @return the altered Field object
 512  
      */
 513  
     public static Field setFieldDirectInquiry(BusinessObject businessObject, String attributeName, Field field)
 514  
     {
 515  0
                 if (businessObject == null)
 516  
                 {
 517  0
             return field;
 518  
         }
 519  
 
 520  0
         Boolean noDirectInquiry = businessObjectDictionaryService.noDirectInquiryFieldLookup(businessObject.getClass(), attributeName);
 521  
         //check if noDirectInquiry is present and true, but if it's not set in existing data dictionary definitions, don't create a direct inquiry
 522  0
         if (noDirectInquiry != null && noDirectInquiry.booleanValue() || noDirectInquiry == null) {
 523  0
             return field;
 524  
         }
 525  
 
 526  0
         setFieldDirectInquiry(field);
 527  
 
 528  0
         return field;
 529  
     }
 530  
 
 531  0
     private static Map<Class,Map<String,Map>> referencesForForeignKey = new HashMap<Class, Map<String,Map>>();
 532  
 
 533  
     public static Map getPrimitiveReference(BusinessObject businessObject, String attributeName) {
 534  0
         Map chosenReferenceByKeySize = new HashMap();
 535  0
         Map chosenReferenceByFieldName = new HashMap();
 536  
 
 537  0
         Map referenceClasses = null;
 538  
 
 539  
         try {
 540  
             // add special caching of these relationships since the Spring caching is so expensive
 541  0
             Map<String,Map> propMap = referencesForForeignKey.get(businessObject.getClass());
 542  0
             if ( propMap == null ) {
 543  0
                 propMap = new HashMap<String, Map>();
 544  0
                 referencesForForeignKey.put(businessObject.getClass(), propMap);
 545  
             }
 546  0
             if ( propMap.containsKey(attributeName) ) {
 547  0
                 referenceClasses = propMap.get( attributeName );
 548  
             } else {
 549  
                     //KFSMI-709: Make Inquiry Framework use BusinessObjectMetadataService instead of just PersistenceStructureService
 550  0
                     referenceClasses = businessObjectMetaDataService.getReferencesForForeignKey(businessObject, attributeName);
 551  0
                     if(referenceClasses==null || referenceClasses.isEmpty()) {
 552  0
                         if ( persistenceStructureService.isPersistable(businessObject.getClass()) ) {
 553  0
                             referenceClasses = persistenceStructureService.getReferencesForForeignKey(businessObject.getClass(), attributeName);
 554  
                         }
 555  
                     }
 556  0
                 propMap.put(attributeName, referenceClasses);
 557  
             }
 558  0
         } catch ( ClassNotPersistableException ex ) {
 559  
             // do nothing, there is no quickfinder
 560  0
             Map<String,Map> propMap = referencesForForeignKey.get(businessObject.getClass());
 561  0
             propMap.put(attributeName, null);
 562  0
         }
 563  
 
 564  
         // if field is not fk to any reference class, return field object w no quickfinder
 565  0
         if (referenceClasses == null || referenceClasses.isEmpty()) {
 566  0
             return chosenReferenceByKeySize;
 567  
         }
 568  
 
 569  
         /*
 570  
          * if field is fk to more than one reference, take the class with the least # of pk fields, this should give the correct
 571  
          * grain for the attribute
 572  
          */
 573  0
         int minKeys = Integer.MAX_VALUE;
 574  0
         for (Iterator iter = referenceClasses.keySet().iterator(); iter.hasNext();) {
 575  0
             String attr = (String) iter.next();
 576  0
             Class clazz = (Class) referenceClasses.get(attr);
 577  0
             List pkNames = businessObjectMetaDataService.listPrimaryKeyFieldNames(clazz);
 578  
 
 579  
             // Compare based on key size.
 580  0
             if (pkNames.size() < minKeys) {
 581  0
                 minKeys = pkNames.size();
 582  0
                 chosenReferenceByKeySize.clear();
 583  0
                 chosenReferenceByKeySize.put(attr, clazz);
 584  
             }
 585  
 
 586  
             // Compare based on field name.
 587  0
             if (attributeName.startsWith(attr)) {
 588  0
                 chosenReferenceByFieldName.clear();
 589  0
                 chosenReferenceByFieldName.put(attr, clazz);
 590  
             }
 591  0
         }
 592  
 
 593  
         // If a compatible key was found based on field names, prefer it, otherwise use choice by key size.
 594  0
         return chosenReferenceByFieldName.isEmpty() ? chosenReferenceByKeySize : chosenReferenceByFieldName;
 595  
     }
 596  
 
 597  
     /**
 598  
      *
 599  
      * This method walks through the nested attribute and finds the last business object in the chain and returns it (excluding the
 600  
      * last parameter which is the actual attribute)
 601  
      *
 602  
      * @param attributeName
 603  
      * @return
 604  
      */
 605  
     public static BusinessObject getNestedBusinessObject(BusinessObject bo, String attributeName) {
 606  0
         String[] nestedAttributes = StringUtils.split(attributeName, ".");
 607  
 
 608  0
         BusinessObject childBO = null;
 609  0
         String attributeRefName = "";
 610  0
         Class clazz = null;
 611  0
         if (nestedAttributes.length > 1) {
 612  0
             String attributeStringSoFar = "";
 613  0
             for (int i = 0; i < nestedAttributes.length - 1; i++) {
 614  
                 // we need to build a string of the attribute names depending on which iteration we're in.
 615  
                 // so if the original attributeName string we're using is "a.b.c.d.e", then first iteration would use
 616  
                 // "a", 2nd "a.b", 3rd "a.b.c", etc.
 617  0
                 if (i != 0) {
 618  0
                     attributeStringSoFar = attributeStringSoFar + ".";
 619  
                 }
 620  0
                 attributeStringSoFar = attributeStringSoFar + nestedAttributes[i];
 621  
 
 622  0
                 clazz = ObjectUtils.getPropertyType( bo, attributeStringSoFar, persistenceStructureService );
 623  
 
 624  0
                 if (clazz != null && BusinessObject.class.isAssignableFrom(clazz)) {
 625  
                     try {
 626  0
                             childBO = (BusinessObject) ObjectUtils.createNewObjectFromClass(clazz);
 627  
                     }
 628  0
                     catch (Exception e) {
 629  0
                         return null;
 630  0
                     }
 631  
                 }
 632  
             }
 633  
         }
 634  0
         return childBO;
 635  
     }
 636  
 
 637  
     public static Class getNestedReferenceClass(BusinessObject businessObject, String attributeName) {
 638  0
         BusinessObject bo = getNestedBusinessObject(businessObject, attributeName);
 639  0
         return null == bo ? null : bo.getClass();
 640  
     }
 641  
 
 642  
     private static String generateFieldConversions(BusinessObject businessObject, String collectionName, BusinessObjectRelationship relationship, String propertyPrefix, List displayedFieldNames, String nestedObjectPrefix) {
 643  0
         String fieldConversions = "";
 644  
 
 645  0
         if ( LOG.isDebugEnabled() ) {
 646  0
             LOG.debug( "generateFieldConversions(" + businessObject.getClass().getName() + "," + collectionName + ",\n" + relationship + "\n," + propertyPrefix + "," + displayedFieldNames + "," + nestedObjectPrefix + ")" );
 647  
         }
 648  
 
 649  
         // get the references for the given property
 650  0
         for ( Map.Entry<String,String> entry : relationship.getParentToChildReferences().entrySet() ) {
 651  0
             String fromField = entry.getValue();
 652  0
             String toField = entry.getKey();
 653  
 
 654  
             // find the displayed to field mapping
 655  0
             if (!displayedFieldNames.contains(toField)) {
 656  0
                 toField = translateToDisplayedField(businessObject.getClass(), toField, displayedFieldNames);
 657  
             }
 658  
 
 659  0
             if (StringUtils.isNotBlank(fieldConversions)) {
 660  0
                 fieldConversions += ",";
 661  
             }
 662  
 
 663  0
             if ( StringUtils.isNotEmpty( propertyPrefix ) ) {
 664  0
                 toField = propertyPrefix + "." + toField;
 665  
             }
 666  
 
 667  0
             if ( StringUtils.isNotEmpty( collectionName ) ) {
 668  0
                 toField = collectionName + toField;
 669  
             }
 670  
 
 671  0
             fieldConversions += fromField + ":" + toField;
 672  0
         }
 673  
 
 674  0
         return fieldConversions;
 675  
     }
 676  
 
 677  
     private static String generateLookupParameters(BusinessObject businessObject, String collectionName, BusinessObjectRelationship relationship, String propertyPrefix, List displayedFieldNames, String nestedObjectPrefix) {
 678  
 
 679  0
         String lookupParameters = "";
 680  
 
 681  0
         List displayedQFFieldNames = businessObjectDictionaryService.getLookupFieldNames(relationship.getRelatedClass());
 682  0
         for ( Map.Entry<String,String> entry : relationship.getParentToChildReferences().entrySet() ) {
 683  0
             String fromField = entry.getKey();
 684  0
             String toField = entry.getValue();
 685  
 
 686  0
             if ( relationship.getUserVisibleIdentifierKey() == null || relationship.getUserVisibleIdentifierKey().equals( fromField ) ) {
 687  
                 // find the displayed from field mapping
 688  0
                 if (!displayedFieldNames.contains(fromField)) {
 689  0
                     fromField = translateToDisplayedField(businessObject.getClass(), fromField, displayedFieldNames);
 690  
                 }
 691  
 
 692  
                 // translate to field
 693  0
                 if (displayedQFFieldNames != null && !displayedQFFieldNames.contains(toField)) {
 694  0
                     toField = translateToDisplayedField(relationship.getRelatedClass(), toField, displayedQFFieldNames);
 695  
                 }
 696  
 
 697  0
                 if (StringUtils.isNotBlank(lookupParameters)) {
 698  0
                     lookupParameters += ",";
 699  
                 }
 700  
 
 701  0
                 if (propertyPrefix != null && !propertyPrefix.equals("")) {
 702  0
                     fromField = propertyPrefix + "." + fromField;
 703  
                 }
 704  
 
 705  0
                 if ( StringUtils.isNotEmpty( collectionName ) ) {
 706  0
                     fromField = collectionName + fromField;
 707  
                 }
 708  
 
 709  0
                 lookupParameters += fromField + ":" + toField;
 710  
             }
 711  0
         }
 712  
 
 713  0
         return lookupParameters;
 714  
     }
 715  
 
 716  
 
 717  
     private static String translateToDisplayedField(Class businessObjectClass, String fieldName, List displayedFieldNames) {        
 718  0
         if ( persistenceStructureService.isPersistable(businessObjectClass) ) {
 719  0
             Map nestedFkMap = persistenceStructureService.getNestedForeignKeyMap(businessObjectClass);
 720  
 
 721  
             // translate to primitive fk if nested
 722  
             /*
 723  
              * if (ObjectUtils.isNestedAttribute(fieldName) && nestedFkMap.containsKey(fieldName)) { fieldName = (String)
 724  
              * nestedFkMap.get(fieldName); }
 725  
              */
 726  
 
 727  0
             if (!displayedFieldNames.contains(fieldName)) {
 728  0
                 for (Iterator iterator = displayedFieldNames.iterator(); iterator.hasNext();) {
 729  0
                     String dispField = (String) iterator.next();
 730  
 
 731  0
                     if (nestedFkMap.containsKey(dispField) && nestedFkMap.get(dispField).equals(fieldName)) {
 732  0
                         fieldName = dispField;
 733  
                     }
 734  0
                 }
 735  
             }
 736  
         }
 737  
 
 738  0
         return fieldName;
 739  
     }
 740  
 
 741  
     public static String convertReferencesToSelectCollectionToString(Collection<String> referencesToRefresh) {
 742  0
         StringBuilder buf = new StringBuilder();
 743  0
         for (String reference : referencesToRefresh) {
 744  0
             buf.append(reference).append(KNSConstants.REFERENCES_TO_REFRESH_SEPARATOR);
 745  
         }
 746  0
         if (!referencesToRefresh.isEmpty()) {
 747  
             // we appended one too many separators, remove it
 748  0
             buf.delete(buf.length() - KNSConstants.REFERENCES_TO_REFRESH_SEPARATOR.length(), buf.length());
 749  
         }
 750  0
         return buf.toString();
 751  
     }
 752  
 
 753  
     public static String convertSetOfObjectIdsToString(Set<String> objectIds) {
 754  0
         if (objectIds.isEmpty()) {
 755  0
             return "";
 756  
         }
 757  0
         StringBuilder buf = new StringBuilder();
 758  0
         for (String objectId : objectIds) {
 759  0
             if (objectId.contains(KNSConstants.MULTIPLE_VALUE_LOOKUP_OBJ_IDS_SEPARATOR)) {
 760  0
                 throw new RuntimeException("object ID " + objectId + " contains the selected obj ID separator");
 761  
             }
 762  0
             buf.append(objectId).append(KNSConstants.MULTIPLE_VALUE_LOOKUP_OBJ_IDS_SEPARATOR);
 763  
         }
 764  
         // added one extra separator, remove it
 765  0
         buf.delete(buf.length() - KNSConstants.MULTIPLE_VALUE_LOOKUP_OBJ_IDS_SEPARATOR.length(), buf.length());
 766  
 
 767  0
         return buf.toString();
 768  
     }
 769  
 
 770  
     public static Set<String> convertStringOfObjectIdsToSet(String objectIdsString) {
 771  0
         Set<String> set = new HashSet<String>();
 772  
 
 773  0
         if (StringUtils.isNotBlank(objectIdsString)) {
 774  0
             String[] objectIds = StringUtils.splitByWholeSeparator(objectIdsString, KNSConstants.MULTIPLE_VALUE_LOOKUP_OBJ_IDS_SEPARATOR);
 775  0
             for (String objectId : objectIds) {
 776  0
                 set.add(objectId);
 777  
             }
 778  
         }
 779  0
         return set;
 780  
     }
 781  
 
 782  
     /**
 783  
      * Given a list of results from a lookup, determines the best comparator to use on the String values of each of these columns
 784  
      *
 785  
      * This method exists because each cell (represented by the Column object) lists the comparator that should be used within it based on the property value class,
 786  
      * so we gotta go thru the whole list and determine the best comparator to use
 787  
      *
 788  
      * @param resultsTable
 789  
      * @param column
 790  
      * @return
 791  
      */
 792  
     public static Comparator findBestValueComparatorForColumn(List<ResultRow> resultTable, int column) {
 793  
         // BIG HACK
 794  0
         Comparator comp = NullValueComparator.getInstance();
 795  0
         for (ResultRow row : resultTable) {
 796  0
             Comparator tempComp = row.getColumns().get(column).getValueComparator();
 797  0
             if (tempComp != null && !NullValueComparator.class.equals(tempComp.getClass())) {
 798  0
                 return tempComp;
 799  
             }
 800  0
         }
 801  0
         return comp;
 802  
     }
 803  
 
 804  
     /**
 805  
      * Given 3 sets of object IDs: the set of selected object IDs before rendering the current page,
 806  
      * the set of object IDs rendered on the page, and the set of object IDs selected on the page, computes
 807  
      * the total set of selected object IDs.
 808  
      *
 809  
      * Instead of storing it in a set, returns it in a map with the selected object ID as both the key and value
 810  
      * @param previouslySelectedObjectIds
 811  
      * @param displayedObjectIds
 812  
      * @param selectedObjectIds
 813  
      * @return
 814  
      */
 815  
     public static Map<String, String> generateCompositeSelectedObjectIds(Set<String> previouslySelectedObjectIds, Set<String> displayedObjectIds, Set<String> selectedObjectIds) {
 816  0
         Map<String, String> tempMap = new HashMap<String, String>();
 817  
         // Equivalent to the set operation:
 818  
         // (P - D) union C, where - is the set difference operator
 819  
         // P is the list of object IDs previously passed in, D is the set of displayed object IDs, and C is the set of checked obj IDs
 820  
         // since HTML does not pass a value for non-selected dcheckboxes
 821  
 
 822  
         // first build a map w/ all the previouslySelectedObjectIds as keys
 823  0
         for (String previouslySelectedObjectId : previouslySelectedObjectIds) {
 824  0
             tempMap.put(previouslySelectedObjectId, previouslySelectedObjectId);
 825  
         }
 826  
         // then remove all the displayed elements (any selected displayed elements will be added back in the next loop)
 827  0
         for (String displayedObjectId : displayedObjectIds) {
 828  0
             tempMap.remove(displayedObjectId);
 829  
         }
 830  
         // put back the selected IDs
 831  0
         for (String selectedObjectId : selectedObjectIds) {
 832  0
             tempMap.put(selectedObjectId, selectedObjectId);
 833  
         }
 834  0
         return tempMap;
 835  
     }
 836  
 
 837  
     /**
 838  
      * Removes fields identified in the data dictionary as hidden from the lookup field values.
 839  
      * (This will remove Universal User ID and Person name from search requests when a user ID is entered.)
 840  
      *
 841  
      * @param fieldValues
 842  
      */
 843  
     public static void removeHiddenCriteriaFields( Class businessObjectClass, Map fieldValues ) {
 844  0
         List<String> lookupFieldAttributeList = businessObjectMetaDataService.getLookupableFieldNames(businessObjectClass);
 845  0
         if (lookupFieldAttributeList != null) {
 846  0
             for (Iterator iter = lookupFieldAttributeList.iterator(); iter.hasNext();) {
 847  0
                 String attributeName = (String) iter.next();
 848  0
                 if (fieldValues.containsKey(attributeName)) {
 849  0
                     ControlDefinition controlDef = dataDictionaryService.getAttributeControlDefinition(businessObjectClass, attributeName);
 850  0
                     if (controlDef != null && controlDef.isHidden() ) {
 851  0
                         fieldValues.remove(attributeName);
 852  
                     }
 853  
                 }
 854  0
             }
 855  
         }
 856  0
         }
 857  
 
 858  
     /**
 859  
      * Determines what Timestamp should be used for active queries on effective dated records. Determination made as
 860  
      * follows:
 861  
      * <ul>
 862  
      *   <li>Use activeAsOfDate value from search values Map if value is not empty</li>
 863  
      *   <li>If search value given, try to convert to sql date, if conversion fails, try to convert to Timestamp</li>
 864  
      *   <li>If search value empty, use current Date</li>
 865  
      *   <li>If Timestamp value not given, create Timestamp from given Date setting the time as 1 second before midnight
 866  
      * </ul>
 867  
      * 
 868  
      * @param searchValues - Map containing search key/value pairs
 869  
      * @return Timestamp to be used for active criteria
 870  
      */
 871  
         public static Timestamp getActiveDateTimestampForCriteria(Map searchValues) {
 872  0
                 Date activeDate = dateTimeService.getCurrentSqlDate();
 873  0
                 Timestamp activeTimestamp = null;
 874  0
                 if (searchValues.containsKey(KNSPropertyConstants.ACTIVE_AS_OF_DATE)) {
 875  0
                         String activeAsOfDate = (String) searchValues.get(KNSPropertyConstants.ACTIVE_AS_OF_DATE);
 876  0
                         if (StringUtils.isNotBlank(activeAsOfDate)) {
 877  
                                 try {
 878  0
                                         activeDate = dateTimeService.convertToSqlDate(ObjectUtils.clean(activeAsOfDate));
 879  0
                                 } catch (ParseException e) {
 880  
                                         // try to parse as timestamp
 881  
                                         try {
 882  0
                                                 activeTimestamp = dateTimeService.convertToSqlTimestamp(ObjectUtils.clean(activeAsOfDate));
 883  0
                                         } catch (ParseException e1) {
 884  0
                                                 throw new RuntimeException("Unable to convert date: " + ObjectUtils.clean(activeAsOfDate));
 885  0
                                         }
 886  0
                                 }
 887  
                         }
 888  
                 }
 889  
 
 890  
                 // if timestamp not given set to 1 second before midnight on the given date
 891  0
                 if (activeTimestamp == null) {
 892  0
                         Calendar cal = Calendar.getInstance();
 893  0
                         cal.setTime(activeDate);
 894  0
                         cal.set(Calendar.HOUR, cal.getMaximum(Calendar.HOUR));
 895  0
                         cal.set(Calendar.MINUTE, cal.getMaximum(Calendar.MINUTE));
 896  0
                         cal.set(Calendar.SECOND, cal.getMaximum(Calendar.SECOND));
 897  
 
 898  0
                         activeTimestamp = new Timestamp(cal.getTime().getTime());
 899  
                 }
 900  
 
 901  0
                 return activeTimestamp;
 902  
         }
 903  
 }