1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.uif.widget;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.CoreApiServiceLocator;
20 import org.kuali.rice.core.web.format.Formatter;
21 import org.kuali.rice.krad.datadictionary.parse.BeanTag;
22 import org.kuali.rice.krad.datadictionary.parse.BeanTagAttribute;
23 import org.kuali.rice.krad.service.KRADServiceLocator;
24 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
25 import org.kuali.rice.krad.service.ModuleService;
26 import org.kuali.rice.krad.uif.UifConstants;
27 import org.kuali.rice.krad.uif.UifParameters;
28 import org.kuali.rice.krad.uif.component.BindingInfo;
29 import org.kuali.rice.krad.uif.component.Component;
30 import org.kuali.rice.krad.uif.element.Action;
31 import org.kuali.rice.krad.uif.element.Link;
32 import org.kuali.rice.krad.uif.field.DataField;
33 import org.kuali.rice.krad.uif.field.InputField;
34 import org.kuali.rice.krad.uif.util.LookupInquiryUtils;
35 import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
36 import org.kuali.rice.krad.uif.util.ViewModelUtils;
37 import org.kuali.rice.krad.uif.view.View;
38 import org.kuali.rice.krad.util.UrlFactory;
39
40 import java.security.GeneralSecurityException;
41 import java.util.HashMap;
42 import java.util.List;
43 import java.util.Map;
44 import java.util.Map.Entry;
45 import java.util.Properties;
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61 @BeanTag(name = "inquiry", parent = "Uif-Inquiry")
62 public class Inquiry extends WidgetBase {
63 private static final long serialVersionUID = -2154388007867302901L;
64 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(Inquiry.class);
65
66 public static final String INQUIRY_TITLE_PREFIX = "title.inquiry.url.value.prependtext";
67
68 private String baseInquiryUrl;
69
70 private String dataObjectClassName;
71 private String viewName;
72
73 private Map<String, String> inquiryParameters;
74
75 private Link inquiryLink;
76
77 private Action directInquiryAction;
78 private boolean enableDirectInquiry;
79
80 private boolean adjustInquiryParameters;
81 private BindingInfo fieldBindingInfo;
82
83 public Inquiry() {
84 super();
85
86 inquiryParameters = new HashMap<String, String>();
87 }
88
89
90
91
92
93 @Override
94 public void performFinalize(View view, Object model, Component parent) {
95 super.performFinalize(view, model, parent);
96
97 if (!isRender()) {
98 return;
99 }
100
101
102 setRender(false);
103
104
105 if (isReadOnly()) {
106 if (StringUtils.isBlank(((DataField) parent).getBindingInfo().getBindingPath())) {
107 return;
108 }
109
110
111 Object propertyValue = ObjectPropertyUtils.getPropertyValue(model,
112 ((DataField) parent).getBindingInfo().getBindingPath());
113 if ((propertyValue == null) || StringUtils.isBlank(propertyValue.toString())) {
114 return;
115 }
116 }
117
118
119 if (!isReadOnly() && parent instanceof InputField) {
120 if (!enableDirectInquiry) {
121 return;
122 }
123
124
125 if (StringUtils.isBlank(getDataObjectClassName())
126 || (getInquiryParameters() == null)
127 || getInquiryParameters().isEmpty()) {
128
129 adjustInquiryParameters = true;
130 fieldBindingInfo = ((InputField) parent).getBindingInfo();
131 }
132 }
133
134 setupLink(view, model, (DataField) parent);
135 }
136
137
138
139
140
141
142
143
144
145
146
147
148
149 public void setupLink(View view, Object model, DataField field) {
150 String propertyName = field.getBindingInfo().getBindingName();
151
152
153 if (StringUtils.isNotBlank(getDataObjectClassName()) && (getInquiryParameters() != null) &&
154 !getInquiryParameters().isEmpty()) {
155 Class<?> inquiryObjectClass;
156 try {
157 inquiryObjectClass = Class.forName(getDataObjectClassName());
158 } catch (ClassNotFoundException e) {
159 LOG.error("Unable to get class for: " + getDataObjectClassName());
160 throw new RuntimeException(e);
161 }
162
163 updateInquiryParameters(field.getBindingInfo());
164
165 buildInquiryLink(model, propertyName, inquiryObjectClass, getInquiryParameters());
166 }
167
168 else {
169
170 Object parentObject = ViewModelUtils.getParentObjectForMetadata(view, model, field);
171 view.getViewHelperService().buildInquiryLink(parentObject, propertyName, this);
172 }
173 }
174
175
176
177
178
179
180
181 public void updateInquiryParameters(BindingInfo bindingInfo) {
182 Map<String, String> adjustedInquiryParameters = new HashMap<String, String>();
183 for (Entry<String, String> stringEntry : inquiryParameters.entrySet()) {
184 String toField = stringEntry.getValue();
185 String adjustedFromFieldPath = bindingInfo.getPropertyAdjustedBindingPath(stringEntry.getKey());
186
187 adjustedInquiryParameters.put(adjustedFromFieldPath, toField);
188 }
189
190 this.inquiryParameters = adjustedInquiryParameters;
191 }
192
193
194
195
196
197
198
199
200
201
202 public void buildInquiryLink(Object dataObject, String propertyName, Class<?> inquiryObjectClass,
203 Map<String, String> inquiryParams) {
204
205 Properties urlParameters = new Properties();
206
207 urlParameters.setProperty(UifParameters.DATA_OBJECT_CLASS_NAME, inquiryObjectClass.getName());
208 urlParameters.setProperty(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.START);
209 if(StringUtils.isNotBlank(this.viewName)){
210 urlParameters.setProperty(UifParameters.VIEW_NAME, this.viewName);
211 }
212
213 if (getInquiryLink().getLightBox() != null) {
214 getInquiryLink().getLightBox().setAddAppParms(true);
215 }
216
217
218 if (isReadOnly()) {
219 for (Entry<String, String> inquiryParameter : inquiryParams.entrySet()) {
220 String parameterName = inquiryParameter.getKey();
221
222 Object parameterValue = ObjectPropertyUtils.getPropertyValue(dataObject, parameterName);
223
224
225 if (parameterValue == null) {
226 parameterValue = "";
227 } else if (parameterValue instanceof java.sql.Date) {
228 if (Formatter.findFormatter(parameterValue.getClass()) != null) {
229 Formatter formatter = Formatter.getFormatter(parameterValue.getClass());
230 parameterValue = formatter.format(parameterValue);
231 }
232 } else {
233 parameterValue = parameterValue.toString();
234 }
235
236
237
238 if (KRADServiceLocatorWeb.getDataObjectAuthorizationService()
239 .attributeValueNeedsToBeEncryptedOnFormsAndLinks(inquiryObjectClass,
240 inquiryParameter.getValue())) {
241 try {
242 parameterValue = CoreApiServiceLocator.getEncryptionService().encrypt(parameterValue);
243 } catch (GeneralSecurityException e) {
244 throw new RuntimeException("Exception while trying to encrypted value for inquiry framework.",
245 e);
246 }
247 }
248
249
250 urlParameters.put(inquiryParameter.getValue(), parameterValue);
251 }
252
253
254 String inquiryUrl;
255
256
257 ModuleService responsibleModuleService =
258 KRADServiceLocatorWeb.getKualiModuleService().getResponsibleModuleService(inquiryObjectClass);
259 if (responsibleModuleService != null && responsibleModuleService.isExternalizable(inquiryObjectClass)) {
260 inquiryUrl = responsibleModuleService.getExternalizableDataObjectInquiryUrl(inquiryObjectClass,
261 urlParameters);
262 } else {
263 inquiryUrl = UrlFactory.parameterizeUrl(getBaseInquiryUrl(), urlParameters);
264 }
265
266 getInquiryLink().setHref(inquiryUrl);
267
268
269 String linkTitle = createTitleText(inquiryObjectClass);
270 linkTitle = LookupInquiryUtils.getLinkTitleText(linkTitle, inquiryObjectClass, getInquiryParameters());
271 getInquiryLink().setTitle(linkTitle);
272
273 setRender(true);
274 }
275
276
277 if (!isReadOnly()) {
278
279 String inquiryUrl = UrlFactory.parameterizeUrl(getBaseInquiryUrl(), urlParameters);
280
281 StringBuilder paramMapString = new StringBuilder();
282
283
284 for (Entry<String, String> inquiryParameter : inquiryParams.entrySet()) {
285 String inquiryParameterFrom = inquiryParameter.getKey();
286
287 if (adjustInquiryParameters && (fieldBindingInfo != null)) {
288 inquiryParameterFrom = fieldBindingInfo.getPropertyAdjustedBindingPath(inquiryParameterFrom);
289 }
290
291 paramMapString.append(inquiryParameterFrom);
292 paramMapString.append(":");
293 paramMapString.append(inquiryParameter.getValue());
294 paramMapString.append(",");
295 }
296 paramMapString.deleteCharAt(paramMapString.length() - 1);
297
298
299 String lightBoxOptions = "";
300 boolean lightBoxShow = (getInquiryLink().getLightBox() != null);
301 if (lightBoxShow) {
302 lightBoxOptions = getInquiryLink().getLightBox().getTemplateOptionsJSString();
303 }
304
305
306
307 StringBuilder onClickScript = new StringBuilder("showDirectInquiry(\"");
308 onClickScript.append(inquiryUrl);
309 onClickScript.append("\", \"");
310 onClickScript.append(paramMapString);
311 onClickScript.append("\", ");
312 onClickScript.append(lightBoxShow);
313 onClickScript.append(", ");
314 onClickScript.append(lightBoxOptions);
315 onClickScript.append(");");
316
317 directInquiryAction.setPerformDirtyValidation(false);
318 directInquiryAction.setActionScript(onClickScript.toString());
319
320 setRender(true);
321 }
322 }
323
324
325
326
327
328
329
330 public String createTitleText(Class<?> dataObjectClass) {
331 String titleText = "";
332
333 String titlePrefixProp = KRADServiceLocator.getKualiConfigurationService().getPropertyValueAsString(
334 INQUIRY_TITLE_PREFIX);
335 if (StringUtils.isNotBlank(titlePrefixProp)) {
336 titleText += titlePrefixProp + " ";
337 }
338
339 String objectLabel = KRADServiceLocatorWeb.getDataDictionaryService().getDataDictionary().getDataObjectEntry(
340 dataObjectClass.getName()).getObjectLabel();
341 if (StringUtils.isNotBlank(objectLabel)) {
342 titleText += objectLabel + " ";
343 }
344
345 return titleText;
346 }
347
348
349
350
351 @Override
352 public List<Component> getComponentsForLifecycle() {
353 List<Component> components = super.getComponentsForLifecycle();
354
355 components.add(getInquiryLink());
356 components.add(getDirectInquiryAction());
357
358 return components;
359 }
360
361
362
363
364
365
366
367
368
369
370
371
372
373 @BeanTagAttribute(name="baseInquiryUrl")
374 public String getBaseInquiryUrl() {
375 return this.baseInquiryUrl;
376 }
377
378
379
380
381
382
383 public void setBaseInquiryUrl(String baseInquiryUrl) {
384 this.baseInquiryUrl = baseInquiryUrl;
385 }
386
387
388
389
390
391
392
393
394
395
396
397
398 @BeanTagAttribute(name="dataObjectClassName")
399 public String getDataObjectClassName() {
400 return this.dataObjectClassName;
401 }
402
403
404
405
406
407
408 public void setDataObjectClassName(String dataObjectClassName) {
409 this.dataObjectClassName = dataObjectClassName;
410 }
411
412
413
414
415
416
417
418
419
420
421
422
423 @BeanTagAttribute(name="viewName")
424 public String getViewName() {
425 return this.viewName;
426 }
427
428
429
430
431
432
433 public void setViewName(String viewName) {
434 this.viewName = viewName;
435 }
436
437
438
439
440
441
442
443
444
445
446
447
448
449 @BeanTagAttribute(name="inquiryParameters",type= BeanTagAttribute.AttributeType.MAPVALUE)
450 public Map<String, String> getInquiryParameters() {
451 return this.inquiryParameters;
452 }
453
454
455
456
457
458
459
460 public void setInquiryParameters(Map<String, String> inquiryParameters) {
461 this.inquiryParameters = inquiryParameters;
462 }
463
464
465
466
467
468
469 @BeanTagAttribute(name="inquiryLink",type= BeanTagAttribute.AttributeType.SINGLEBEAN)
470 public Link getInquiryLink() {
471 return this.inquiryLink;
472 }
473
474
475
476
477
478
479 public void setInquiryLink(Link inquiryLink) {
480 this.inquiryLink = inquiryLink;
481 }
482
483
484
485
486
487
488 @BeanTagAttribute(name="directInquiryAction",type= BeanTagAttribute.AttributeType.SINGLEBEAN)
489 public Action getDirectInquiryAction() {
490 return this.directInquiryAction;
491 }
492
493
494
495
496
497
498 public void setDirectInquiryAction(Action directInquiryAction) {
499 this.directInquiryAction = directInquiryAction;
500 }
501
502
503
504
505
506
507 @BeanTagAttribute(name="enableDirectInquiry")
508 public boolean isEnableDirectInquiry() {
509 return enableDirectInquiry;
510 }
511
512
513
514
515
516
517 public void setEnableDirectInquiry(boolean enableDirectInquiry) {
518 this.enableDirectInquiry = enableDirectInquiry;
519 }
520 }