1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.rice.krad.web.form;
17
18 import org.apache.commons.lang.StringUtils;
19 import org.codehaus.jackson.map.ObjectMapper;
20 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
21 import org.kuali.rice.krad.uif.UifConstants;
22 import org.kuali.rice.krad.uif.UifParameters;
23 import org.kuali.rice.krad.uif.view.History;
24 import org.kuali.rice.krad.uif.view.View;
25 import org.kuali.rice.krad.uif.service.ViewService;
26 import org.kuali.rice.krad.uif.view.ViewIndex;
27 import org.kuali.rice.krad.uif.view.ViewModel;
28 import org.kuali.rice.krad.util.KRADUtils;
29 import org.springframework.web.multipart.MultipartFile;
30 import org.kuali.rice.krad.uif.UifConstants.ViewType;
31
32 import javax.servlet.http.HttpServletRequest;
33 import java.io.IOException;
34 import java.util.ArrayList;
35 import java.util.HashMap;
36 import java.util.List;
37 import java.util.Map;
38 import java.util.Properties;
39 import java.util.Set;
40 import java.util.UUID;
41
42
43
44
45
46
47
48
49
50
51
52 public class UifFormBase implements ViewModel {
53 private static final long serialVersionUID = 8432543267099454434L;
54
55
56 protected String viewId;
57 protected String viewName;
58 protected ViewType viewTypeName;
59 protected String pageId;
60 protected String methodToCall;
61 protected String formKey;
62 protected String jumpToId;
63 protected String jumpToName;
64 protected String focusId;
65 protected String formPostUrl;
66
67 protected boolean defaultsApplied;
68 protected boolean skipViewInit;
69
70 protected View view;
71 protected View postedView;
72
73 protected Map<String, String> viewRequestParameters;
74 protected List<String> readOnlyFieldsList;
75
76 protected Map<String, Object> newCollectionLines;
77 protected Map<String, String> actionParameters;
78 protected Map<String, Object> clientStateForSyncing;
79 protected Map<String, Set<String>> selectedCollectionLines;
80
81 protected MultipartFile attachmentFile;
82
83
84 protected String returnLocation;
85 protected String returnFormKey;
86
87 protected History formHistory;
88
89 protected boolean renderFullView;
90 protected boolean validateDirty;
91
92 public UifFormBase() {
93 formKey = generateFormKey();
94 renderFullView = true;
95 defaultsApplied = false;
96 skipViewInit = false;
97
98 formHistory = new History();
99
100 readOnlyFieldsList = new ArrayList<String>();
101 viewRequestParameters = new HashMap<String, String>();
102 newCollectionLines = new HashMap<String, Object>();
103 actionParameters = new HashMap<String, String>();
104 clientStateForSyncing = new HashMap<String, Object>();
105 selectedCollectionLines = new HashMap<String, Set<String>>();
106 }
107
108
109
110
111
112
113
114 protected String generateFormKey() {
115 return UUID.randomUUID().toString();
116 }
117
118
119
120
121
122
123
124 public void postBind(HttpServletRequest request) {
125
126 formPostUrl = request.getRequestURL().toString();
127
128
129 if (request.getParameterMap().containsKey(UifParameters.CLIENT_VIEW_STATE)) {
130 String clientStateJSON = request.getParameter(UifParameters.CLIENT_VIEW_STATE);
131 if (StringUtils.isNotBlank(clientStateJSON)) {
132
133 clientStateJSON = StringUtils.replace(clientStateJSON, "'", "\"");
134
135 ObjectMapper mapper = new ObjectMapper();
136 try {
137 clientStateForSyncing = mapper.readValue(clientStateJSON, Map.class);
138 } catch (IOException e) {
139 throw new RuntimeException("Unable to decode client side state JSON", e);
140 }
141 }
142 }
143
144
145 if (request.getParameter(UifParameters.READ_ONLY_FIELDS) != null) {
146 String readOnlyFields = request.getParameter(UifParameters.READ_ONLY_FIELDS);
147 setReadOnlyFieldsList(KRADUtils.convertStringParameterToList(readOnlyFields));
148 }
149
150
151 if (!request.getParameterMap().containsKey(UifParameters.SKIP_VIEW_INIT)) {
152 skipViewInit = false;
153 }
154 }
155
156
157
158
159 public String getViewId() {
160 return this.viewId;
161 }
162
163
164
165
166 public void setViewId(String viewId) {
167 this.viewId = viewId;
168 }
169
170
171
172
173 public String getViewName() {
174 return this.viewName;
175 }
176
177
178
179
180 public void setViewName(String viewName) {
181 this.viewName = viewName;
182 }
183
184
185
186
187 public ViewType getViewTypeName() {
188 return this.viewTypeName;
189 }
190
191
192
193
194 public void setViewTypeName(ViewType viewTypeName) {
195 this.viewTypeName = viewTypeName;
196 }
197
198
199
200
201 public String getPageId() {
202 return this.pageId;
203 }
204
205
206
207
208 public void setPageId(String pageId) {
209 this.pageId = pageId;
210 }
211
212
213
214
215 public String getFormPostUrl() {
216 return this.formPostUrl;
217 }
218
219
220
221
222 public void setFormPostUrl(String formPostUrl) {
223 this.formPostUrl = formPostUrl;
224 }
225
226 public String getReturnLocation() {
227 return this.returnLocation;
228 }
229
230 public void setReturnLocation(String returnLocation) {
231 this.returnLocation = returnLocation;
232 }
233
234 public String getReturnFormKey() {
235 return this.returnFormKey;
236 }
237
238 public void setReturnFormKey(String returnFormKey) {
239 this.returnFormKey = returnFormKey;
240 }
241
242
243
244
245
246
247
248
249 public String getMethodToCall() {
250 return this.methodToCall;
251 }
252
253
254
255
256
257
258 public void setMethodToCall(String methodToCall) {
259 this.methodToCall = methodToCall;
260 }
261
262
263
264
265 public Map<String, String> getViewRequestParameters() {
266 return this.viewRequestParameters;
267 }
268
269
270
271
272 public void setViewRequestParameters(Map<String, String> viewRequestParameters) {
273 this.viewRequestParameters = viewRequestParameters;
274 }
275
276
277
278
279 public List<String> getReadOnlyFieldsList() {
280 return readOnlyFieldsList;
281 }
282
283
284
285
286 public void setReadOnlyFieldsList(List<String> readOnlyFieldsList) {
287 this.readOnlyFieldsList = readOnlyFieldsList;
288 }
289
290
291
292
293 public Map<String, Object> getNewCollectionLines() {
294 return this.newCollectionLines;
295 }
296
297
298
299
300 public void setNewCollectionLines(Map<String, Object> newCollectionLines) {
301 this.newCollectionLines = newCollectionLines;
302 }
303
304
305
306
307 public Map<String, String> getActionParameters() {
308 return this.actionParameters;
309 }
310
311
312
313
314
315
316 public Properties getActionParametersAsProperties() {
317 return KRADUtils.convertMapToProperties(actionParameters);
318 }
319
320
321
322
323 public void setActionParameters(Map<String, String> actionParameters) {
324 this.actionParameters = actionParameters;
325 }
326
327
328
329
330
331
332
333
334 public String getActionParamaterValue(String actionParameterName) {
335 if ((actionParameters != null) && actionParameters.containsKey(actionParameterName)) {
336 return actionParameters.get(actionParameterName);
337 }
338
339 return "";
340 }
341
342
343
344
345
346
347
348
349
350
351
352
353
354 public String getActionEvent() {
355 if ((actionParameters != null) && actionParameters.containsKey(UifConstants.UrlParams.ACTION_EVENT)) {
356 return actionParameters.get(UifConstants.UrlParams.ACTION_EVENT);
357 }
358
359 return "";
360 }
361
362
363
364
365 public Map<String, Object> getClientStateForSyncing() {
366 return clientStateForSyncing;
367 }
368
369
370
371
372 public Map<String, Set<String>> getSelectedCollectionLines() {
373 return selectedCollectionLines;
374 }
375
376
377
378
379 public void setSelectedCollectionLines(Map<String, Set<String>> selectedCollectionLines) {
380 this.selectedCollectionLines = selectedCollectionLines;
381 }
382
383
384
385
386
387
388
389
390
391
392
393
394 public String getFormKey() {
395 return this.formKey;
396 }
397
398
399
400
401
402
403 public void setFormKey(String formKey) {
404 this.formKey = formKey;
405 }
406
407
408
409
410 public boolean isDefaultsApplied() {
411 return this.defaultsApplied;
412 }
413
414
415
416
417 public void setDefaultsApplied(boolean defaultsApplied) {
418 this.defaultsApplied = defaultsApplied;
419 }
420
421
422
423
424
425
426 public boolean isSkipViewInit() {
427 return skipViewInit;
428 }
429
430
431
432
433
434
435 public void setSkipViewInit(boolean skipViewInit) {
436 this.skipViewInit = skipViewInit;
437 }
438
439
440
441
442
443
444 public MultipartFile getAttachmentFile() {
445 return this.attachmentFile;
446 }
447
448
449
450
451
452
453 public void setAttachmentFile(MultipartFile attachmentFile) {
454 this.attachmentFile = attachmentFile;
455 }
456
457
458
459
460 public boolean isRenderFullView() {
461 return this.renderFullView;
462 }
463
464
465
466
467 public void setRenderFullView(boolean renderFullView) {
468 this.renderFullView = renderFullView;
469 }
470
471
472
473
474 public View getView() {
475 return this.view;
476 }
477
478
479
480
481 public void setView(View view) {
482 this.view = view;
483 }
484
485
486
487
488 public View getPostedView() {
489 return this.postedView;
490 }
491
492
493
494
495 public void setPostedView(View postedView) {
496 this.postedView = postedView;
497 }
498
499
500
501
502
503
504
505 protected ViewService getViewService() {
506 return KRADServiceLocatorWeb.getViewService();
507 }
508
509
510
511
512
513
514
515
516
517 public String getJumpToId() {
518 return this.jumpToId;
519 }
520
521
522
523
524 public void setJumpToId(String jumpToId) {
525 this.jumpToId = jumpToId;
526 }
527
528
529
530
531
532
533
534
535 public String getJumpToName() {
536 return this.jumpToName;
537 }
538
539
540
541
542 public void setJumpToName(String jumpToName) {
543 this.jumpToName = jumpToName;
544 }
545
546
547
548
549
550
551
552 public String getFocusId() {
553 return this.focusId;
554 }
555
556
557
558
559 public void setFocusId(String focusId) {
560 this.focusId = focusId;
561 }
562
563
564
565
566
567
568
569
570
571
572
573
574 public History getFormHistory() {
575 return formHistory;
576 }
577
578
579
580
581
582
583 public void setFormHistory(History history) {
584 this.formHistory = history;
585 }
586
587
588
589
590
591
592
593
594
595
596
597
598
599 public boolean isValidateDirty() {
600 return this.validateDirty;
601 }
602
603
604
605
606
607
608 public void setValidateDirty(boolean validateDirty) {
609 this.validateDirty = validateDirty;
610 }
611
612 }