1
2
3
4
5
6
7
8
9
10
11 package org.kuali.rice.krad.uif.history;
12
13 import org.apache.commons.lang.StringUtils;
14 import org.apache.log4j.Logger;
15 import org.kuali.rice.krad.service.DataObjectMetaDataService;
16 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
17 import org.kuali.rice.krad.uif.UifConstants;
18 import org.kuali.rice.krad.uif.container.View;
19 import org.kuali.rice.krad.uif.util.ObjectPropertyUtils;
20 import org.kuali.rice.krad.uif.util.ViewModelUtils;
21 import org.kuali.rice.krad.web.form.UifFormBase;
22
23 import javax.servlet.http.HttpServletRequest;
24 import java.io.Serializable;
25 import java.io.UnsupportedEncodingException;
26 import java.net.URLDecoder;
27 import java.net.URLEncoder;
28 import java.util.ArrayList;
29 import java.util.Enumeration;
30 import java.util.List;
31
32
33
34
35
36
37
38 public class History implements Serializable {
39 private static final long serialVersionUID = -8279297694371557335L;
40 private static final Logger LOG = Logger.getLogger(History.class);
41
42 public static final String ENTRY_TOKEN = "$";
43 public static final String VAR_TOKEN = ",";
44
45 private boolean appendHomewardPath;
46 private boolean appendPassedHistory;
47
48 private HistoryEntry current;
49
50 private List<HistoryEntry> homewardPath;
51 private List<HistoryEntry> historyEntries;
52
53 public History() {
54 historyEntries = new ArrayList<HistoryEntry>();
55 }
56
57
58
59
60
61
62
63 public List<HistoryEntry> getHomewardPath() {
64 return this.homewardPath;
65 }
66
67
68
69
70 public void setHomewardPath(List<HistoryEntry> homewardPath) {
71 this.homewardPath = homewardPath;
72 }
73
74
75
76
77
78
79
80
81
82 public List<HistoryEntry> getHistoryEntries() {
83 return this.historyEntries;
84 }
85
86
87
88
89 public void setHistoryEntries(List<HistoryEntry> history) {
90 this.historyEntries = history;
91 }
92
93
94
95
96
97
98
99
100
101 public HistoryEntry getCurrent() {
102 return this.current;
103 }
104
105
106
107
108 private void setCurrent(String viewId, String pageId, String title, String url, String formKey) {
109 HistoryEntry entry = new HistoryEntry(viewId, pageId, title, url, formKey);
110 current = entry;
111 }
112
113
114
115
116 public void setCurrent(HistoryEntry current) {
117 this.current = current;
118 }
119
120
121
122
123
124
125
126
127
128
129 public void buildHistoryFromParameterString(String parameterString) {
130 if (StringUtils.isNotEmpty(parameterString)) {
131 try {
132 parameterString = URLDecoder.decode(parameterString, "UTF-8");
133 } catch (UnsupportedEncodingException e) {
134 LOG.error("Error decoding history param", e);
135 }
136 historyEntries = new ArrayList<HistoryEntry>();
137 if (appendPassedHistory) {
138 String[] historyTokens = parameterString.split("\\" + ENTRY_TOKEN);
139 for (String token : historyTokens) {
140 String[] params = token.split(VAR_TOKEN);
141 pushToHistory(params[0], params[1], params[2], params[3], params[4]);
142 }
143 }
144 }
145
146 if (appendHomewardPath) {
147 historyEntries.addAll(homewardPath);
148 }
149 }
150
151
152
153
154
155
156
157
158 public String getHistoryParameterString() {
159 String historyString = "";
160 for (HistoryEntry e : historyEntries) {
161 if (historyEntries.indexOf(e) == 0) {
162 historyString = historyString + e.toParam();
163 } else {
164 historyString = historyString + ENTRY_TOKEN + e.toParam();
165 }
166 }
167
168 if (current != null) {
169 if (historyString.equals("")) {
170 historyString = historyString + current.toParam();
171 } else {
172 historyString = historyString + ENTRY_TOKEN + current.toParam();
173 }
174 }
175 try {
176 historyString = URLEncoder.encode(historyString, "UTF-8");
177 } catch (Exception e) {
178 LOG.error("Error encoding history param", e);
179 }
180 return historyString;
181 }
182
183
184
185
186
187
188
189
190
191
192
193 public List<HistoryEntry> getGeneratedBreadcrumbs() {
194 List<HistoryEntry> breadcrumbs = new ArrayList<HistoryEntry>();
195 for (int i = 0; i < historyEntries.size(); i++) {
196 if (i == 0) {
197 breadcrumbs.add(copyEntry(historyEntries.get(i)));
198 } else {
199 HistoryEntry breadcrumb = copyEntry(historyEntries.get(i));
200 String historyParam = "";
201 for (int j = 0; j < i; j++) {
202 historyParam = historyParam + ENTRY_TOKEN + historyEntries.get(j).toParam();
203 }
204 historyParam = historyParam.replaceFirst("\\" + ENTRY_TOKEN, "");
205 try {
206 historyParam = URLEncoder.encode(historyParam, "UTF-8");
207 } catch (Exception e) {
208 LOG.error("Error encoding history param", e);
209 }
210
211 String url = "";
212 if (breadcrumb.getUrl().contains("?")) {
213 url = breadcrumb.getUrl() + "&" + UifConstants.UrlParams.HISTORY + "=" + historyParam;
214 } else {
215 url = breadcrumb.getUrl() + "?" + UifConstants.UrlParams.HISTORY + "=" + historyParam;
216 }
217
218 breadcrumb.setUrl(url);
219 breadcrumbs.add(breadcrumb);
220 }
221 }
222
223 return breadcrumbs;
224 }
225
226
227
228
229
230
231 public HistoryEntry getGeneratedCurrentBreadcrumb() {
232 HistoryEntry breadcrumb = copyEntry(current);
233 String historyParam = "";
234 for (int j = 0; j < historyEntries.size(); j++) {
235 historyParam = historyParam + ENTRY_TOKEN + historyEntries.get(j).toParam();
236 }
237 historyParam = historyParam.replaceFirst("\\" + ENTRY_TOKEN, "");
238
239 try {
240 historyParam = URLEncoder.encode(historyParam, "UTF-8");
241 } catch (Exception e) {
242 LOG.error("Error encoding history param", e);
243 }
244
245 String url = "";
246 if (breadcrumb.getUrl().contains("?")) {
247 url = breadcrumb.getUrl() + "&" + UifConstants.UrlParams.HISTORY + "=" + historyParam;
248 } else {
249 url = breadcrumb.getUrl() + "?" + UifConstants.UrlParams.HISTORY + "=" + historyParam;
250 }
251 breadcrumb.setUrl(url);
252
253 return breadcrumb;
254 }
255
256
257
258
259
260
261
262 private HistoryEntry copyEntry(HistoryEntry e) {
263 return new HistoryEntry(e.getViewId(), e.getPageId(), e.getTitle(), e.getUrl(), e.getFormKey());
264 }
265
266
267
268
269
270
271
272
273
274
275
276 public void pushToHistory(String viewId, String pageId, String title, String url, String formKey) {
277 HistoryEntry entry = new HistoryEntry(viewId, pageId, title, url, formKey);
278 historyEntries.add(entry);
279 }
280
281
282
283
284
285
286
287
288 public void setAppendHomewardPath(boolean appendHomewardPath) {
289 this.appendHomewardPath = appendHomewardPath;
290 }
291
292
293
294
295 public boolean isAppendHomewardPath() {
296 return appendHomewardPath;
297 }
298
299
300
301
302
303
304
305
306 public void setAppendPassedHistory(boolean appendPassedHistory) {
307 this.appendPassedHistory = appendPassedHistory;
308 }
309
310
311
312
313 public boolean isAppendPassedHistory() {
314 return appendPassedHistory;
315 }
316
317
318
319
320
321
322
323
324
325 @SuppressWarnings("unchecked")
326 public void setCurrent(UifFormBase form, HttpServletRequest request) {
327 if (!request.getMethod().equals("POST")) {
328 boolean showHomeValue = false;
329 boolean pageIdValue = false;
330 boolean formKeyValue = false;
331
332 String queryString = "";
333 String url = request.getRequestURL().toString();
334
335
336 Enumeration<String> params = request.getParameterNames();
337 while (params.hasMoreElements()) {
338 String key = params.nextElement();
339 if (!key.equals(UifConstants.UrlParams.HISTORY)) {
340 for (String value : request.getParameterValues(key)) {
341 queryString = queryString + "&" + key + "=" + value;
342 }
343 } else if (key.equals(UifConstants.UrlParams.PAGE_ID)) {
344 pageIdValue = true;
345 } else if (key.equals(UifConstants.UrlParams.SHOW_HOME)) {
346 showHomeValue = true;
347 } else if (key.equals(UifConstants.UrlParams.FORM_KEY)) {
348 formKeyValue = true;
349 }
350 }
351
352
353 if (StringUtils.isNotBlank(form.getFormKey()) && !formKeyValue) {
354 queryString = queryString + "&" + UifConstants.UrlParams.FORM_KEY + "=" + form.getFormKey();
355 }
356 if (StringUtils.isNotBlank(form.getPageId()) && !pageIdValue) {
357 queryString = queryString + "&" + UifConstants.UrlParams.PAGE_ID + "=" + form.getPageId();
358 }
359 if (!showHomeValue) {
360 queryString = queryString + "&" + UifConstants.UrlParams.SHOW_HOME + "=false";
361 }
362
363 queryString = queryString.replaceFirst("&", "");
364
365 if (StringUtils.isNotEmpty(queryString)) {
366 url = url + "?" + queryString;
367 }
368
369 this.setCurrent(form.getViewId(), form.getPageId(), buildViewTitle(form), url, form.getFormKey());
370 }
371 }
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387 protected String buildViewTitle(UifFormBase form) {
388 View view = form.getView();
389 String title = view.getTitle();
390
391
392
393 String viewLabelPropertyName = view.getViewLabelFieldPropertyName();
394
395
396 if (StringUtils.isBlank(viewLabelPropertyName)) {
397 Class<?> dataObjectClass;
398 if (StringUtils.isNotBlank(view.getDefaultBindingObjectPath())) {
399 dataObjectClass = ObjectPropertyUtils.getPropertyType(form, view.getDefaultBindingObjectPath());
400 } else {
401 dataObjectClass = view.getFormClass();
402 }
403
404 DataObjectMetaDataService mds = KRADServiceLocatorWeb.getDataObjectMetaDataService();
405 if (dataObjectClass != null) {
406 viewLabelPropertyName = mds.getTitleAttribute(dataObjectClass);
407 }
408 }
409
410 String viewLabelPropertyPath = "";
411 if (StringUtils.isNotBlank(viewLabelPropertyName)) {
412
413 if (!viewLabelPropertyName.startsWith(UifConstants.NO_BIND_ADJUST_PREFIX)) {
414 if (StringUtils.isNotBlank(view.getDefaultBindingObjectPath())) {
415 viewLabelPropertyPath = view.getDefaultBindingObjectPath() + "." + viewLabelPropertyName;
416 }
417 } else {
418 viewLabelPropertyPath = StringUtils.removeStart(viewLabelPropertyName,
419 UifConstants.NO_BIND_ADJUST_PREFIX);
420 }
421 }
422 else {
423
424 Class<?> dataObjectClass;
425 if (StringUtils.isNotBlank(view.getDefaultBindingObjectPath())) {
426 dataObjectClass = ViewModelUtils.getObjectClassForMetadata(view, form,
427 view.getDefaultBindingObjectPath());
428 } else {
429 dataObjectClass = view.getFormClass();
430 }
431
432 DataObjectMetaDataService mds = KRADServiceLocatorWeb.getDataObjectMetaDataService();
433 if (dataObjectClass != null) {
434 String titleAttribute = mds.getTitleAttribute(dataObjectClass);
435 if (StringUtils.isNotBlank(titleAttribute)) {
436 viewLabelPropertyPath = view.getDefaultBindingObjectPath() + "." + titleAttribute;
437 }
438 }
439 }
440
441 Object viewLabelPropertyValue = null;
442 if (StringUtils.isNotBlank(viewLabelPropertyPath)) {
443 viewLabelPropertyValue = ObjectPropertyUtils.getPropertyValue(form, viewLabelPropertyPath);
444 }
445
446 String titleAppend = "";
447 if (viewLabelPropertyValue != null) {
448 titleAppend = viewLabelPropertyValue.toString();
449 }
450
451 if (StringUtils.isNotBlank(titleAppend) && view.getAppendOption() != null) {
452 if (view.getAppendOption().equalsIgnoreCase(UifConstants.TitleAppendTypes.DASH)) {
453 title = title + " - " + titleAppend;
454 } else if (view.getAppendOption().equalsIgnoreCase(UifConstants.TitleAppendTypes.PARENTHESIS)) {
455 title = title + "(" + titleAppend + ")";
456 } else if (view.getAppendOption().equalsIgnoreCase(UifConstants.TitleAppendTypes.REPLACE)) {
457 title = titleAppend;
458 }
459
460 }
461
462 return title;
463 }
464 }