1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
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 | |
|
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 | |
|
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 | |
|
93 | |
|
94 | |
|
95 | |
public void setBusinessObjectMetaDataService(BusinessObjectMetaDataService businessObjectMetaDataService) { |
96 | 0 | LookupUtils.businessObjectMetaDataService = businessObjectMetaDataService; |
97 | 0 | } |
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
|
106 | |
|
107 | |
|
108 | |
|
109 | |
|
110 | |
public static String forceUppercase(Class boClass, String fieldName, String fieldValue) { |
111 | |
|
112 | |
|
113 | 0 | if (StringUtils.isBlank(fieldValue)) { |
114 | 0 | return fieldValue; |
115 | |
} |
116 | |
|
117 | |
|
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 | |
|
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 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
|
153 | |
|
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 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
|
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 | |
|
189 | |
|
190 | |
|
191 | |
|
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 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
|
206 | |
|
207 | |
|
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 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
|
237 | |
private static Integer getBusinessObjectSearchResultsLimit(Class businessObjectClass) { |
238 | 0 | return businessObjectDictionaryService.getLookupResultSetLimit(businessObjectClass); |
239 | |
} |
240 | |
|
241 | |
|
242 | |
|
243 | |
|
244 | |
|
245 | |
|
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 | |
|
257 | |
|
258 | |
|
259 | |
|
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 | |
|
280 | |
|
281 | |
|
282 | |
|
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 | |
|
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 | |
|
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 | |
|
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 | |
|
467 | |
|
468 | |
|
469 | |
|
470 | |
|
471 | |
|
472 | |
|
473 | |
|
474 | |
|
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 | |
|
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 | |
|
511 | |
|
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 | |
|
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 | |
|
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 | |
|
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 | |
|
560 | 0 | Map<String,Map> propMap = referencesForForeignKey.get(businessObject.getClass()); |
561 | 0 | propMap.put(attributeName, null); |
562 | 0 | } |
563 | |
|
564 | |
|
565 | 0 | if (referenceClasses == null || referenceClasses.isEmpty()) { |
566 | 0 | return chosenReferenceByKeySize; |
567 | |
} |
568 | |
|
569 | |
|
570 | |
|
571 | |
|
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 | |
|
580 | 0 | if (pkNames.size() < minKeys) { |
581 | 0 | minKeys = pkNames.size(); |
582 | 0 | chosenReferenceByKeySize.clear(); |
583 | 0 | chosenReferenceByKeySize.put(attr, clazz); |
584 | |
} |
585 | |
|
586 | |
|
587 | 0 | if (attributeName.startsWith(attr)) { |
588 | 0 | chosenReferenceByFieldName.clear(); |
589 | 0 | chosenReferenceByFieldName.put(attr, clazz); |
590 | |
} |
591 | 0 | } |
592 | |
|
593 | |
|
594 | 0 | return chosenReferenceByFieldName.isEmpty() ? chosenReferenceByKeySize : chosenReferenceByFieldName; |
595 | |
} |
596 | |
|
597 | |
|
598 | |
|
599 | |
|
600 | |
|
601 | |
|
602 | |
|
603 | |
|
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 | |
|
615 | |
|
616 | |
|
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 | |
|
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 | |
|
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 | |
|
688 | 0 | if (!displayedFieldNames.contains(fromField)) { |
689 | 0 | fromField = translateToDisplayedField(businessObject.getClass(), fromField, displayedFieldNames); |
690 | |
} |
691 | |
|
692 | |
|
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 | |
|
722 | |
|
723 | |
|
724 | |
|
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 | |
|
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 | |
|
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 | |
|
784 | |
|
785 | |
|
786 | |
|
787 | |
|
788 | |
|
789 | |
|
790 | |
|
791 | |
|
792 | |
public static Comparator findBestValueComparatorForColumn(List<ResultRow> resultTable, int column) { |
793 | |
|
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 | |
|
806 | |
|
807 | |
|
808 | |
|
809 | |
|
810 | |
|
811 | |
|
812 | |
|
813 | |
|
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 | |
|
818 | |
|
819 | |
|
820 | |
|
821 | |
|
822 | |
|
823 | 0 | for (String previouslySelectedObjectId : previouslySelectedObjectIds) { |
824 | 0 | tempMap.put(previouslySelectedObjectId, previouslySelectedObjectId); |
825 | |
} |
826 | |
|
827 | 0 | for (String displayedObjectId : displayedObjectIds) { |
828 | 0 | tempMap.remove(displayedObjectId); |
829 | |
} |
830 | |
|
831 | 0 | for (String selectedObjectId : selectedObjectIds) { |
832 | 0 | tempMap.put(selectedObjectId, selectedObjectId); |
833 | |
} |
834 | 0 | return tempMap; |
835 | |
} |
836 | |
|
837 | |
|
838 | |
|
839 | |
|
840 | |
|
841 | |
|
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 | |
|
860 | |
|
861 | |
|
862 | |
|
863 | |
|
864 | |
|
865 | |
|
866 | |
|
867 | |
|
868 | |
|
869 | |
|
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 | |
|
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 | |
|
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 | |
} |