1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.web.controller;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.kuali.rice.core.api.config.property.ConfigContext;
20 import org.kuali.rice.core.api.exception.RiceRuntimeException;
21 import org.kuali.rice.kim.api.identity.Person;
22 import org.kuali.rice.krad.exception.AuthorizationException;
23 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
24 import org.kuali.rice.krad.service.ModuleService;
25 import org.kuali.rice.krad.uif.UifConstants;
26 import org.kuali.rice.krad.uif.UifParameters;
27 import org.kuali.rice.krad.uif.UifPropertyPaths;
28 import org.kuali.rice.krad.uif.field.AttributeQueryResult;
29 import org.kuali.rice.krad.uif.service.ViewService;
30 import org.kuali.rice.krad.uif.util.LookupInquiryUtils;
31 import org.kuali.rice.krad.uif.view.DialogManager;
32 import org.kuali.rice.krad.uif.view.MessageView;
33 import org.kuali.rice.krad.uif.view.View;
34 import org.kuali.rice.krad.util.GlobalVariables;
35 import org.kuali.rice.krad.util.KRADConstants;
36 import org.kuali.rice.krad.util.KRADUtils;
37 import org.kuali.rice.krad.util.UrlFactory;
38 import org.kuali.rice.krad.web.controller.helper.DataTablesPagingHelper;
39 import org.kuali.rice.krad.web.form.HistoryFlow;
40 import org.kuali.rice.krad.web.form.HistoryManager;
41 import org.kuali.rice.krad.web.form.UifFormBase;
42 import org.kuali.rice.krad.web.form.UifFormManager;
43 import org.springframework.util.Assert;
44 import org.springframework.validation.BindingResult;
45 import org.springframework.web.bind.annotation.ModelAttribute;
46 import org.springframework.web.bind.annotation.RequestMapping;
47 import org.springframework.web.bind.annotation.RequestMethod;
48 import org.springframework.web.bind.annotation.ResponseBody;
49 import org.springframework.web.servlet.ModelAndView;
50 import org.springframework.web.servlet.support.RequestContextUtils;
51 import org.springframework.web.servlet.view.UrlBasedViewResolver;
52
53 import javax.servlet.http.HttpServletRequest;
54 import javax.servlet.http.HttpServletResponse;
55 import java.util.Enumeration;
56 import java.util.HashMap;
57 import java.util.Map;
58 import java.util.Map.Entry;
59 import java.util.Properties;
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78 public abstract class UifControllerBase {
79 private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(UifControllerBase.class);
80
81 private UrlBasedViewResolver viewResolver;
82
83
84
85
86
87
88
89
90
91 @ModelAttribute(value = "KualiForm")
92 public UifFormBase initForm(HttpServletRequest request, HttpServletResponse response) {
93 UifFormBase requestForm = null;
94
95
96 UifFormManager uifFormManager = (UifFormManager) request.getSession().getAttribute(UifParameters.FORM_MANAGER);
97 if (uifFormManager == null) {
98 uifFormManager = new UifFormManager();
99 request.getSession().setAttribute(UifParameters.FORM_MANAGER, uifFormManager);
100 }
101
102
103 GlobalVariables.setUifFormManager(uifFormManager);
104
105
106 requestForm = createInitialForm(request);
107
108 String formKeyParam = request.getParameter(UifParameters.FORM_KEY);
109 if (StringUtils.isNotBlank(formKeyParam)) {
110
111 uifFormManager.updateFormWithSession(requestForm, formKeyParam);
112 }
113
114
115 String requestedFormKey = request.getParameter(UifParameters.REQUESTED_FORM_KEY);
116 if (StringUtils.isNotBlank(requestedFormKey)) {
117 requestForm.setRequestedFormKey(requestedFormKey);
118 } else {
119 requestForm.setRequestedFormKey(formKeyParam);
120 }
121
122
123 String referer = request.getHeader(UifConstants.REFERER);
124
125
126 if (StringUtils.isBlank(referer) && StringUtils.isBlank(requestForm.getReturnLocation())) {
127 requestForm.setReturnLocation(UifConstants.NO_RETURN);
128 } else if (StringUtils.isBlank(requestForm.getReturnLocation())) {
129 requestForm.setReturnLocation(referer);
130 }
131
132
133 if (requestForm.getInitialRequestParameters() == null) {
134 Map<String, String> requestParams = new HashMap<String, String>();
135 Enumeration<String> names = request.getParameterNames();
136
137 while (names != null && names.hasMoreElements()) {
138 String name = KRADUtils.stripXSSPatterns(names.nextElement());
139 String value = KRADUtils.stripXSSPatterns(request.getParameter(name));
140
141 requestParams.put(name, value);
142 }
143
144 requestParams.remove(UifConstants.UrlParams.LOGIN_USER);
145 requestForm.setInitialRequestParameters(requestParams);
146 }
147
148
149 String requestUrl = KRADUtils.stripXSSPatterns(KRADUtils.getFullURL(request));
150 requestForm.setRequestUrl(requestUrl);
151
152 Object historyManager = request.getSession().getAttribute(UifConstants.HistoryFlow.HISTORY_MANAGER);
153 String flowKey = request.getParameter(UifConstants.HistoryFlow.FLOW);
154
155
156 if (requestForm != null && historyManager != null && historyManager instanceof HistoryManager) {
157 requestForm.setHistoryManager((HistoryManager) historyManager);
158 requestForm.setFlowKey(flowKey);
159 }
160
161
162 request.setAttribute(UifConstants.REQUEST_FORM, requestForm);
163
164 return requestForm;
165 }
166
167
168
169
170
171
172
173
174 protected abstract UifFormBase createInitialForm(HttpServletRequest request);
175
176
177
178
179 @RequestMapping()
180 public ModelAndView defaultMapping(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
181 HttpServletRequest request, HttpServletResponse response) {
182 return start(form, result, request, response);
183 }
184
185
186
187
188
189 @RequestMapping(params = "methodToCall=start")
190 public ModelAndView start(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
191 HttpServletRequest request, HttpServletResponse response) {
192
193
194
195 if (form.getView() != null) {
196 String methodToCall = request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER);
197 checkViewAuthorization(form, methodToCall);
198 }
199
200 return getUIFModelAndView(form);
201 }
202
203
204
205
206
207
208
209
210
211
212
213
214
215 public void checkViewAuthorization(UifFormBase form, String methodToCall) throws AuthorizationException {
216
217 if (GlobalVariables.getUserSession() == null) {
218 return;
219 }
220
221 Person user = GlobalVariables.getUserSession().getPerson();
222
223 boolean canOpenView = form.getView().getAuthorizer().canOpenView(form.getView(), form, user);
224 if (!canOpenView) {
225 throw new AuthorizationException(user.getPrincipalName(), "open", form.getView().getId(),
226 "User '" + user.getPrincipalName() + "' is not authorized to open view ID: " + form.getView()
227 .getId(), null);
228 }
229 }
230
231
232
233
234 @RequestMapping(params = "methodToCall=sessionTimeout")
235 public ModelAndView sessionTimeout(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
236 HttpServletRequest request, HttpServletResponse response) {
237 return getUIFModelAndView(form);
238 }
239
240
241
242
243
244
245 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=addLine")
246 public ModelAndView addLine(@ModelAttribute("KualiForm") UifFormBase uifForm, BindingResult result,
247 HttpServletRequest request, HttpServletResponse response) {
248
249 String selectedCollectionPath = uifForm.getActionParamaterValue(UifParameters.SELLECTED_COLLECTION_PATH);
250 if (StringUtils.isBlank(selectedCollectionPath)) {
251 throw new RuntimeException("Selected collection was not set for add line action, cannot add new line");
252 }
253
254 View view = uifForm.getPostedView();
255 view.getViewHelperService().processCollectionAddLine(view, uifForm, selectedCollectionPath);
256
257 return getUIFModelAndView(uifForm);
258 }
259
260
261
262
263
264
265
266
267
268
269
270
271 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=addBlankLine")
272 public ModelAndView addBlankLine(@ModelAttribute("KualiForm") UifFormBase uifForm) {
273
274 String selectedCollectionPath = uifForm.getActionParamaterValue(UifParameters.SELLECTED_COLLECTION_PATH);
275 if (StringUtils.isBlank(selectedCollectionPath)) {
276 throw new RuntimeException("Selected collection was not set for add line action, cannot add new line");
277 }
278
279 View view = uifForm.getPostedView();
280 view.getViewHelperService().processCollectionAddBlankLine(view, uifForm, selectedCollectionPath);
281
282 return getUIFModelAndView(uifForm);
283 }
284
285
286
287
288
289 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=saveLine")
290 public ModelAndView saveLine(@ModelAttribute("KualiForm") UifFormBase uifForm, BindingResult result,
291 HttpServletRequest request, HttpServletResponse response) {
292
293 String selectedCollectionPath = uifForm.getActionParamaterValue(UifParameters.SELLECTED_COLLECTION_PATH);
294 if (StringUtils.isBlank(selectedCollectionPath)) {
295 throw new RuntimeException("Selected collection was not set for add line action, cannot add new line");
296 }
297
298 int selectedLineIndex = -1;
299 String selectedLine = uifForm.getActionParamaterValue(UifParameters.SELECTED_LINE_INDEX);
300 if (StringUtils.isNotBlank(selectedLine)) {
301 selectedLineIndex = Integer.parseInt(selectedLine);
302 }
303
304 if (selectedLineIndex == -1) {
305 throw new RuntimeException("Selected line index was not set for delete line action, cannot delete line");
306 }
307
308 View view = uifForm.getPostedView();
309 view.getViewHelperService().processCollectionSaveLine(view, uifForm, selectedCollectionPath, selectedLineIndex);
310
311 return getUIFModelAndView(uifForm);
312 }
313
314
315
316
317
318
319
320 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=deleteLine")
321 public ModelAndView deleteLine(@ModelAttribute("KualiForm") UifFormBase uifForm, BindingResult result,
322 HttpServletRequest request, HttpServletResponse response) {
323
324 String selectedCollectionPath = uifForm.getActionParamaterValue(UifParameters.SELLECTED_COLLECTION_PATH);
325 if (StringUtils.isBlank(selectedCollectionPath)) {
326 throw new RuntimeException("Selected collection was not set for delete line action, cannot delete line");
327 }
328
329 int selectedLineIndex = -1;
330 String selectedLine = uifForm.getActionParamaterValue(UifParameters.SELECTED_LINE_INDEX);
331 if (StringUtils.isNotBlank(selectedLine)) {
332 selectedLineIndex = Integer.parseInt(selectedLine);
333 }
334
335 if (selectedLineIndex == -1) {
336 throw new RuntimeException("Selected line index was not set for delete line action, cannot delete line");
337 }
338
339 View view = uifForm.getPostedView();
340 view.getViewHelperService().processCollectionDeleteLine(view, uifForm, selectedCollectionPath,
341 selectedLineIndex);
342
343 return getUIFModelAndView(uifForm);
344 }
345
346
347
348
349 @RequestMapping(params = "methodToCall=cancel")
350 public ModelAndView cancel(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
351 HttpServletRequest request, HttpServletResponse response) {
352 return back(form, result, request, response);
353 }
354
355
356
357
358
359 @RequestMapping(params = "methodToCall=back")
360 public ModelAndView back(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
361 HttpServletRequest request, HttpServletResponse response) {
362 Properties props = new Properties();
363 props.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.REFRESH);
364
365 if (StringUtils.isNotBlank(form.getReturnFormKey())) {
366 props.put(UifParameters.FORM_KEY, form.getReturnFormKey());
367 }
368
369 HistoryFlow historyFlow = form.getHistoryManager().getMostRecentFlowByFormKey(form.getFlowKey(),
370 form.getRequestedFormKey());
371
372 String returnUrl = form.getReturnLocation();
373
374
375 if (historyFlow != null) {
376 returnUrl = historyFlow.getFlowReturnPoint();
377 }
378
379
380 String returnToStart = form.getActionParamaterValue(UifConstants.HistoryFlow.RETURN_TO_START);
381 if (StringUtils.isBlank(returnToStart)) {
382 returnToStart = request.getParameter(UifConstants.HistoryFlow.RETURN_TO_START);
383 }
384
385 if (StringUtils.isNotBlank(returnToStart)
386 && Boolean.parseBoolean(returnToStart)
387 && historyFlow != null
388 && StringUtils.isNotBlank(historyFlow.getFlowStartPoint())) {
389 returnUrl = historyFlow.getFlowStartPoint();
390 }
391
392
393 if (StringUtils.isBlank(returnUrl) || returnUrl.equals(UifConstants.NO_RETURN)) {
394 returnUrl = ConfigContext.getCurrentContextConfig().getProperty(KRADConstants.APPLICATION_URL_KEY);
395 }
396
397
398 GlobalVariables.getUifFormManager().removeSessionForm(form);
399
400 return performRedirect(form, returnUrl, props);
401 }
402
403
404
405
406
407
408 @RequestMapping(params = "methodToCall=returnToPrevious")
409 public ModelAndView returnToPrevious(@ModelAttribute("KualiForm") UifFormBase form) {
410
411 return returnToHistory(form, false);
412 }
413
414
415
416
417
418
419 @RequestMapping(params = "methodToCall=returnToHub")
420 public ModelAndView returnToHub(@ModelAttribute("KualiForm") UifFormBase form) {
421
422 return returnToHistory(form, true);
423 }
424
425
426
427
428
429
430
431
432
433 public ModelAndView returnToHistory(UifFormBase form, boolean homeFlag) {
434 String returnUrl = form.getReturnLocation();
435
436 if (StringUtils.isBlank(returnUrl) || homeFlag) {
437 returnUrl = ConfigContext.getCurrentContextConfig().getProperty(KRADConstants.APPLICATION_URL_KEY);
438 }
439
440
441 Properties props = new Properties();
442 props.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.REFRESH);
443
444
445 GlobalVariables.getUifFormManager().removeSessionForm(form);
446
447 return performRedirect(form, returnUrl, props);
448 }
449
450
451
452
453 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=navigate")
454 public ModelAndView navigate(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
455 HttpServletRequest request, HttpServletResponse response) {
456 String pageId = form.getActionParamaterValue(UifParameters.NAVIGATE_TO_PAGE_ID);
457
458
459 form.setDirtyForm(false);
460
461 return getUIFModelAndView(form, pageId);
462 }
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479 @RequestMapping(params = "methodToCall=refresh")
480 public ModelAndView refresh(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
481 HttpServletRequest request, HttpServletResponse response) throws Exception {
482
483
484 String flashMapSelectedLineValues = "";
485 if (RequestContextUtils.getInputFlashMap(request) != null) {
486 flashMapSelectedLineValues = (String) RequestContextUtils.getInputFlashMap(request).get(
487 UifParameters.SELECTED_LINE_VALUES);
488 }
489 String refreshCallerType = "";
490 if (request.getParameterMap().containsKey(KRADConstants.REFRESH_CALLER_TYPE)) {
491 refreshCallerType = request.getParameter(KRADConstants.REFRESH_CALLER_TYPE);
492 }
493
494
495 if (StringUtils.equals(refreshCallerType, UifConstants.RefreshCallerTypes.MULTI_VALUE_LOOKUP)) {
496 String lookupCollectionName = "";
497 if (request.getParameterMap().containsKey(UifParameters.LOOKUP_COLLECTION_NAME)) {
498 lookupCollectionName = request.getParameter(UifParameters.LOOKUP_COLLECTION_NAME);
499 }
500
501 if (StringUtils.isBlank(lookupCollectionName)) {
502 throw new RuntimeException(
503 "Lookup collection name is required for processing multi-value lookup results");
504 }
505
506 String selectedLineValues = "";
507 if (request.getParameterMap().containsKey(UifParameters.SELECTED_LINE_VALUES)) {
508 selectedLineValues = request.getParameter(UifParameters.SELECTED_LINE_VALUES);
509 }
510 if (!StringUtils.isBlank(flashMapSelectedLineValues)) {
511 selectedLineValues = flashMapSelectedLineValues;
512 }
513
514
515 form.getPostedView().getViewHelperService().processMultipleValueLookupResults(form.getPostedView(), form,
516 lookupCollectionName, selectedLineValues);
517 }
518
519 if (request.getParameterMap().containsKey(KRADConstants.REFERENCES_TO_REFRESH)) {
520 String referencesToRefresh = request.getParameter(KRADConstants.REFERENCES_TO_REFRESH);
521 form.getPostedView().getViewHelperService().refreshReferences(form, referencesToRefresh);
522 }
523
524 return getUIFModelAndView(form);
525 }
526
527
528
529
530
531 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=performLookup")
532 public ModelAndView performLookup(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
533 HttpServletRequest request, HttpServletResponse response) {
534 Properties lookupParameters = form.getActionParametersAsProperties();
535
536 String lookupObjectClassName = (String) lookupParameters.get(UifParameters.DATA_OBJECT_CLASS_NAME);
537 Class<?> lookupObjectClass = null;
538 try {
539 lookupObjectClass = Class.forName(lookupObjectClassName);
540 } catch (ClassNotFoundException e) {
541 LOG.error("Unable to get class for name: " + lookupObjectClassName);
542 throw new RuntimeException("Unable to get class for name: " + lookupObjectClassName, e);
543 }
544
545
546 String lookupParameterString = (String) lookupParameters.get(UifParameters.LOOKUP_PARAMETERS);
547 if (lookupParameterString != null) {
548 Map<String, String> lookupParameterFields = KRADUtils.getMapFromParameterString(lookupParameterString);
549 for (Entry<String, String> lookupParameter : lookupParameterFields.entrySet()) {
550 String lookupParameterValue = LookupInquiryUtils.retrieveLookupParameterValue(form, request,
551 lookupObjectClass, lookupParameter.getValue(), lookupParameter.getKey());
552
553 if (StringUtils.isNotBlank(lookupParameterValue)) {
554 lookupParameters.put(UifPropertyPaths.LOOKUP_CRITERIA + "['" + lookupParameter.getValue() + "']",
555 lookupParameterValue);
556 }
557 }
558
559 lookupParameters.remove(UifParameters.LOOKUP_PARAMETERS);
560 }
561
562
563
564 String baseLookupUrl = (String) lookupParameters.get(UifParameters.BASE_LOOKUP_URL);
565 lookupParameters.remove(UifParameters.BASE_LOOKUP_URL);
566
567
568 lookupParameters.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.START);
569 String autoSearchString = (String) lookupParameters.get(UifParameters.AUTO_SEARCH);
570 if (Boolean.parseBoolean(autoSearchString)) {
571 lookupParameters.put(UifParameters.METHOD_TO_CALL, UifConstants.MethodToCallNames.SEARCH);
572 }
573
574 lookupParameters.put(UifParameters.RETURN_LOCATION, form.getFormPostUrl());
575 lookupParameters.put(UifParameters.RETURN_FORM_KEY, form.getFormKey());
576
577
578 if (lookupObjectClass != null) {
579 ModuleService responsibleModuleService =
580 KRADServiceLocatorWeb.getKualiModuleService().getResponsibleModuleService(lookupObjectClass);
581 if (responsibleModuleService != null && responsibleModuleService.isExternalizable(lookupObjectClass)) {
582 String lookupUrl = responsibleModuleService.getExternalizableDataObjectLookupUrl(lookupObjectClass,
583 lookupParameters);
584
585 return performRedirect(form, lookupUrl, new Properties());
586 }
587 }
588
589 return performRedirect(form, baseLookupUrl, lookupParameters);
590 }
591
592
593
594
595
596 @RequestMapping(method = RequestMethod.POST, params = "methodToCall=checkForm")
597 public ModelAndView checkForm(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
598 HttpServletRequest request, HttpServletResponse response) {
599 KRADServiceLocatorWeb.getViewValidationService().validateViewSimulation(form.getPostedView(), form);
600
601 return getUIFModelAndView(form);
602 }
603
604
605
606
607
608
609
610 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=performFieldSuggest")
611 public
612 @ResponseBody
613 AttributeQueryResult performFieldSuggest(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
614 HttpServletRequest request, HttpServletResponse response) {
615
616
617 Map<String, String> queryParameters = new HashMap<String, String>();
618 for (Object parameterName : request.getParameterMap().keySet()) {
619 if (parameterName.toString().startsWith(UifParameters.QUERY_PARAMETER + ".")) {
620 String fieldName = StringUtils.substringAfter(parameterName.toString(),
621 UifParameters.QUERY_PARAMETER + ".");
622 String fieldValue = request.getParameter(parameterName.toString());
623 queryParameters.put(fieldName, fieldValue);
624 }
625 }
626
627
628 String queryFieldId = request.getParameter(UifParameters.QUERY_FIELD_ID);
629 if (StringUtils.isBlank(queryFieldId)) {
630 throw new RuntimeException("Unable to find id for field to perform query on under request parameter name: "
631 + UifParameters.QUERY_FIELD_ID);
632 }
633
634
635 String queryTerm = request.getParameter(UifParameters.QUERY_TERM);
636 if (StringUtils.isBlank(queryTerm)) {
637 throw new RuntimeException(
638 "Unable to find id for query term value for attribute query on under request parameter name: "
639 + UifParameters.QUERY_TERM);
640 }
641
642
643 AttributeQueryResult queryResult = KRADServiceLocatorWeb.getAttributeQueryService().performFieldSuggestQuery(
644 form.getPostedView(), queryFieldId, queryTerm, queryParameters);
645
646 return queryResult;
647 }
648
649
650
651
652
653
654
655
656 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=performFieldQuery")
657 public
658 @ResponseBody
659 AttributeQueryResult performFieldQuery(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
660 HttpServletRequest request, HttpServletResponse response) {
661
662
663 Map<String, String> queryParameters = new HashMap<String, String>();
664 for (Object parameterName : request.getParameterMap().keySet()) {
665 if (parameterName.toString().startsWith(UifParameters.QUERY_PARAMETER + ".")) {
666 String fieldName = StringUtils.substringAfter(parameterName.toString(),
667 UifParameters.QUERY_PARAMETER + ".");
668 String fieldValue = request.getParameter(parameterName.toString());
669 queryParameters.put(fieldName, fieldValue);
670 }
671 }
672
673
674 String queryFieldId = request.getParameter(UifParameters.QUERY_FIELD_ID);
675 if (StringUtils.isBlank(queryFieldId)) {
676 throw new RuntimeException("Unable to find id for field to perform query on under request parameter name: "
677 + UifParameters.QUERY_FIELD_ID);
678 }
679
680
681 AttributeQueryResult queryResult = KRADServiceLocatorWeb.getAttributeQueryService().performFieldQuery(
682 form.getPostedView(), queryFieldId, queryParameters);
683
684 return queryResult;
685 }
686
687
688
689
690
691
692
693
694 protected boolean hasDialogBeenDisplayed(String dialogId, UifFormBase form) {
695 return (form.getDialogManager().hasDialogBeenDisplayed(dialogId));
696 }
697
698
699
700
701
702
703
704
705 protected boolean hasDialogBeenAnswered(String dialogId, UifFormBase form) {
706 return (form.getDialogManager().hasDialogBeenAnswered(dialogId));
707 }
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730 protected boolean getBooleanDialogResponse(String dialogId, UifFormBase form, HttpServletRequest request,
731 HttpServletResponse response) {
732 DialogManager dm = form.getDialogManager();
733 if (!dm.hasDialogBeenAnswered(dialogId)) {
734 showDialog(dialogId, form, request, response);
735
736
737
738 throw new RiceRuntimeException("Dialog has not yet been answered by client. "
739 + "Check that hasDialogBeenAnswered(id) returns true.");
740 }
741
742 return dm.wasDialogAnswerAffirmative(dialogId);
743 }
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760 protected String getStringDialogResponse(String dialogId, UifFormBase form, HttpServletRequest request,
761 HttpServletResponse response) {
762 DialogManager dm = form.getDialogManager();
763 if (!dm.hasDialogBeenAnswered(dialogId)) {
764 showDialog(dialogId, form, request, response);
765
766
767
768 throw new RiceRuntimeException("Dialog has not yet been answered by client. "
769 + "Check that hasDialogBeenAnswered(id) returns true.");
770 }
771
772 return dm.getDialogAnswer(dialogId);
773 }
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791 protected ModelAndView showDialog(String dialogId, UifFormBase form, HttpServletRequest request,
792 HttpServletResponse response) {
793
794 form.setLightboxScript("openLightboxOnLoad('" + dialogId + "');");
795 form.getDialogManager().addDialog(dialogId, form.getMethodToCall());
796
797
798
799 if (form.isAjaxRequest()) {
800 form.setAjaxReturnType(UifConstants.AjaxReturnTypes.UPDATEDIALOG.getKey());
801 form.setUpdateComponentId(dialogId);
802 }
803
804 return getUIFModelAndView(form);
805 }
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822 @RequestMapping(params = "methodToCall=returnFromLightbox")
823 public ModelAndView returnFromLightbox(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
824 HttpServletRequest request, HttpServletResponse response) {
825 String newMethodToCall = "";
826
827
828 DialogManager dm = form.getDialogManager();
829 String dialogId = dm.getCurrentDialogId();
830 if (dialogId == null) {
831
832
833
834 newMethodToCall = "start";
835 } else {
836 dm.setDialogAnswer(dialogId, form.getDialogResponse());
837 dm.setDialogExplanation(dialogId, form.getDialogExplanation());
838 newMethodToCall = dm.getDialogReturnMethod(dialogId);
839 dm.setCurrentDialogId(null);
840 }
841
842
843 Properties props = new Properties();
844 props.put(UifParameters.METHOD_TO_CALL, newMethodToCall);
845 props.put(UifParameters.VIEW_ID, form.getViewId());
846 props.put(UifParameters.FORM_KEY, form.getFormKey());
847 props.put(UifParameters.AJAX_REQUEST, "false");
848
849 return performRedirect(form, form.getFormPostUrl(), props);
850 }
851
852
853
854
855
856
857
858
859
860
861
862 protected ModelAndView performRedirect(UifFormBase form, String baseUrl, Properties urlParameters) {
863 String redirectUrl = UrlFactory.parameterizeUrl(baseUrl, urlParameters);
864
865 return performRedirect(form, redirectUrl);
866 }
867
868
869
870
871
872
873
874
875 protected ModelAndView performRedirect(UifFormBase form, String redirectUrl) {
876
877 form.setRequestRedirected(true);
878
879
880 form.setAjaxReturnType(UifConstants.AjaxReturnTypes.REDIRECT.getKey());
881
882 ModelAndView modelAndView;
883 if (form.isAjaxRequest()) {
884 modelAndView = getUIFModelAndView(form, form.getPageId());
885 modelAndView.addObject("redirectUrl", redirectUrl);
886 } else {
887 modelAndView = new ModelAndView(UifConstants.REDIRECT_PREFIX + redirectUrl);
888 }
889
890 return modelAndView;
891 }
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907 protected ModelAndView getMessageView(UifFormBase form, String headerText, String messageText) {
908
909 MessageView messageView = (MessageView) getViewService().getViewById(UifConstants.MESSAGE_VIEW_ID);
910
911 messageView.setHeaderText(headerText);
912 messageView.setMessageText(messageText);
913
914 form.setViewId(UifConstants.MESSAGE_VIEW_ID);
915 form.setView(messageView);
916
917 return getUIFModelAndView(form);
918 }
919
920
921
922
923
924
925
926
927 protected ModelAndView getUIFModelAndView(UifFormBase form) {
928 return getUIFModelAndView(form, form.getPageId());
929 }
930
931
932
933
934
935
936
937
938
939
940 protected ModelAndView getUIFModelAndView(UifFormBase form, String pageId) {
941 return UifControllerHelper.getUIFModelAndView(form, pageId);
942 }
943
944
945
946
947
948
949
950
951
952 protected ModelAndView getUIFModelAndViewWithInit(UifFormBase form, String viewId) {
953 View view = getViewService().getViewById(viewId);
954
955 Assert.notNull(view, "View not found with id: " + viewId);
956
957 form.setView(view);
958 form.setViewId(viewId);
959
960 return UifControllerHelper.getUIFModelAndView(form, form.getPageId());
961 }
962
963
964
965
966
967
968
969
970
971
972 protected ModelAndView getUIFModelAndView(UifFormBase form, Map<String, Object> additionalViewAttributes) {
973 ModelAndView modelAndView = UifControllerHelper.getUIFModelAndView(form, form.getPageId());
974
975 if (additionalViewAttributes != null) {
976 for (Map.Entry<String, Object> additionalViewAttribute : additionalViewAttributes.entrySet()) {
977 modelAndView.getModelMap().put(additionalViewAttribute.getKey(), additionalViewAttribute.getValue());
978 }
979 }
980
981 return modelAndView;
982 }
983
984 protected ViewService getViewService() {
985 return KRADServiceLocatorWeb.getViewService();
986 }
987
988
989
990
991
992
993
994
995
996
997 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=" + UifConstants.MethodToCallNames.TABLE_CSV,
998 produces = {"text/csv"})
999 @ResponseBody
1000 public String tableCsvRetrieval(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1001 HttpServletRequest request, HttpServletResponse response) {
1002 LOG.debug("processing csv table data request");
1003
1004 return retrieveTableData(form, result, request, response);
1005 }
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=" + UifConstants.MethodToCallNames.TABLE_XLS,
1017 produces = {"application/vnd.ms-excel"})
1018 @ResponseBody
1019 public String tableXlsRetrieval(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1020 HttpServletRequest request, HttpServletResponse response) {
1021 LOG.debug("processing xls table data request");
1022
1023 return retrieveTableData(form, result, request, response);
1024 }
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=" + UifConstants.MethodToCallNames.TABLE_XML,
1036 produces = {"application/xml"})
1037 @ResponseBody
1038 public String tableXmlRetrieval(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1039 HttpServletRequest request, HttpServletResponse response) {
1040 LOG.debug("processing xml table data request");
1041
1042 return retrieveTableData(form, result, request, response);
1043 }
1044
1045
1046
1047
1048
1049 private String retrieveTableData(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1050 HttpServletRequest request, HttpServletResponse response) {
1051 LOG.debug("processing table data request");
1052
1053 String tableData = "";
1054 String formatType = getValidatedFormatType(request.getParameter("formatType"));
1055 String contentType = getContentType(formatType);
1056
1057 UifFormManager uifFormManager = (UifFormManager) request.getSession().getAttribute(UifParameters.FORM_MANAGER);
1058 String formKey = request.getParameter(UifParameters.FORM_KEY);
1059 String tableId = request.getParameter(UifParameters.TABLE_ID);
1060 UifFormBase currentForm = uifFormManager.getSessionForm(formKey);
1061 View view;
1062 if (currentForm.getPostedView() != null) {
1063 view = currentForm.getPostedView();
1064 } else {
1065 view = currentForm.getView();
1066 }
1067
1068 LOG.debug("identifying table from model and form");
1069 tableData = view.getViewHelperService().buildExportTableData(view, currentForm, tableId, formatType);
1070
1071
1072 response.setHeader("content-type", contentType);
1073 response.setHeader("Content-disposition", "attachment; filename=\"export." + formatType + "\"");
1074 response.setHeader("Expires", "0");
1075 response.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0");
1076 response.setHeader("Pragma", "public");
1077
1078 return tableData;
1079 }
1080
1081
1082
1083
1084
1085
1086
1087 private String getValidatedFormatType(String formatType) {
1088 if ("xls".equals(formatType) || "xml".equals(formatType) || "csv".equals(formatType)) {
1089 return formatType;
1090 }
1091 return "csv";
1092 }
1093
1094
1095
1096
1097
1098
1099
1100 private String getContentType(String formatType) {
1101 if ("csv".equals(formatType)) {
1102 return "text/csv";
1103 } else if ("xls".equals(formatType)) {
1104 return "application/vnd.ms-excel";
1105 } else if ("xml".equals(formatType)) {
1106 return "application/xml";
1107 }
1108 return "text/csv";
1109 }
1110
1111
1112
1113
1114
1115
1116
1117 @RequestMapping(method = RequestMethod.GET, params = "methodToCall=tableJsonRetrieval")
1118 public ModelAndView tableJsonRetrieval(@ModelAttribute("KualiForm") UifFormBase form, BindingResult result,
1119 HttpServletRequest request, HttpServletResponse response) {
1120 String tableId = request.getParameter(UifParameters.TABLE_ID);
1121
1122 DataTablesPagingHelper.DataTablesInputs dataTablesInputs = new DataTablesPagingHelper.DataTablesInputs(request);
1123
1124 DataTablesPagingHelper pagingHelper = createDataTablesPagingHelperInstance(form, request);
1125 pagingHelper.processPagingRequest(form.getPostedView(), tableId, form, dataTablesInputs);
1126
1127 Map<String, Object> additionalViewAttributes = new HashMap<String, Object>();
1128 additionalViewAttributes.put(UifParameters.DATA_TABLES_PAGING_HELPER, pagingHelper);
1129
1130 return getUIFModelAndView(form, additionalViewAttributes);
1131 }
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142 protected DataTablesPagingHelper createDataTablesPagingHelperInstance(UifFormBase form,
1143 HttpServletRequest request) {
1144 return new DataTablesPagingHelper();
1145 }
1146 }