1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.util; |
17 | |
|
18 | |
import org.apache.commons.lang.StringEscapeUtils; |
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.apache.log4j.Level; |
21 | |
import org.apache.log4j.Logger; |
22 | |
import org.apache.struts.Globals; |
23 | |
import org.apache.struts.action.ActionForm; |
24 | |
import org.apache.struts.action.ActionMapping; |
25 | |
import org.apache.struts.action.ActionServletWrapper; |
26 | |
import org.apache.struts.upload.CommonsMultipartRequestHandler; |
27 | |
import org.apache.struts.upload.FormFile; |
28 | |
import org.apache.struts.upload.MultipartRequestHandler; |
29 | |
import org.apache.struts.upload.MultipartRequestWrapper; |
30 | |
import org.kuali.rice.core.api.config.property.ConfigurationService; |
31 | |
import org.kuali.rice.core.util.RiceKeyConstants; |
32 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
33 | |
import org.kuali.rice.kns.web.struts.action.KualiMultipartRequestHandler; |
34 | |
import org.kuali.rice.kns.web.struts.form.KualiDocumentFormBase; |
35 | |
import org.kuali.rice.kns.web.struts.form.KualiForm; |
36 | |
import org.kuali.rice.kns.web.struts.form.KualiMaintenanceForm; |
37 | |
import org.kuali.rice.kns.web.struts.form.pojo.PojoFormBase; |
38 | |
import org.kuali.rice.krad.datadictionary.AttributeDefinition; |
39 | |
import org.kuali.rice.krad.datadictionary.AttributeSecurity; |
40 | |
import org.kuali.rice.krad.datadictionary.DataDictionary; |
41 | |
import org.kuali.rice.krad.datadictionary.DataDictionaryEntryBase; |
42 | |
import org.kuali.rice.kns.datadictionary.DocumentEntry; |
43 | |
import org.kuali.rice.kns.datadictionary.MaintenanceDocumentEntry; |
44 | |
import org.kuali.rice.krad.datadictionary.mask.MaskFormatter; |
45 | |
import org.kuali.rice.krad.document.Document; |
46 | |
import org.kuali.rice.krad.document.authorization.DocumentAuthorizer; |
47 | |
import org.kuali.rice.krad.exception.ValidationException; |
48 | |
import org.kuali.rice.krad.service.KRADServiceLocator; |
49 | |
import org.kuali.rice.krad.service.KRADServiceLocatorWeb; |
50 | |
import org.kuali.rice.krad.util.GlobalVariables; |
51 | |
import org.kuali.rice.krad.util.KRADConstants; |
52 | |
import org.kuali.rice.krad.util.MessageMap; |
53 | |
import org.kuali.rice.krad.util.ObjectUtils; |
54 | |
|
55 | |
import javax.servlet.ServletException; |
56 | |
import javax.servlet.http.HttpServletRequest; |
57 | |
import javax.servlet.http.HttpServletResponse; |
58 | |
import javax.servlet.http.HttpSession; |
59 | |
import javax.servlet.jsp.PageContext; |
60 | |
import java.io.ByteArrayOutputStream; |
61 | |
import java.io.IOException; |
62 | |
import java.io.InputStream; |
63 | |
import java.io.OutputStream; |
64 | |
import java.util.Arrays; |
65 | |
import java.util.Collection; |
66 | |
import java.util.Enumeration; |
67 | |
import java.util.HashMap; |
68 | |
import java.util.Hashtable; |
69 | |
import java.util.Iterator; |
70 | |
import java.util.List; |
71 | |
import java.util.Map; |
72 | |
import java.util.Set; |
73 | |
import java.util.regex.Matcher; |
74 | |
import java.util.regex.Pattern; |
75 | |
|
76 | |
|
77 | |
|
78 | |
|
79 | 0 | public class WebUtils { |
80 | 0 | private static final Logger LOG = Logger.getLogger(WebUtils.class); |
81 | |
|
82 | |
private static final String IMAGE_COORDINATE_CLICKED_X_EXTENSION = ".x"; |
83 | |
private static final String IMAGE_COORDINATE_CLICKED_Y_EXTENSION = ".y"; |
84 | |
|
85 | |
private static final String APPLICATION_IMAGE_URL_PROPERTY_PREFIX = "application.custom.image.url"; |
86 | |
private static final String DEFAULT_IMAGE_URL_PROPERTY_NAME = "kr.externalizable.images.url"; |
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
|
93 | |
public static final String FILE_UPLOAD_LIMIT_EXCEEDED_EXCEPTION_ALREADY_THROWN = "fileUploadLimitExceededExceptionAlreadyThrown"; |
94 | |
|
95 | |
private static ConfigurationService configurationService; |
96 | |
|
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
public static String parseMethodToCall(ActionForm form, HttpServletRequest request) { |
105 | 0 | String methodToCall = null; |
106 | |
|
107 | |
|
108 | 0 | if (StringUtils.isNotBlank(request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER))) { |
109 | 0 | if (form instanceof KualiForm |
110 | |
&& !((KualiForm) form).shouldMethodToCallParameterBeUsed(KRADConstants.DISPATCH_REQUEST_PARAMETER, |
111 | |
request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER), request)) { |
112 | 0 | throw new RuntimeException("Cannot verify that the methodToCall should be " |
113 | |
+ request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER)); |
114 | |
} |
115 | 0 | methodToCall = request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER); |
116 | |
|
117 | |
|
118 | 0 | request.setAttribute(KRADConstants.METHOD_TO_CALL_ATTRIBUTE, KRADConstants.DISPATCH_REQUEST_PARAMETER + "." |
119 | |
+ methodToCall + IMAGE_COORDINATE_CLICKED_X_EXTENSION); |
120 | |
} |
121 | |
|
122 | |
|
123 | |
|
124 | |
|
125 | |
|
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | 0 | if (methodToCall == null) { |
132 | |
|
133 | 0 | for (Enumeration i = request.getParameterNames(); i.hasMoreElements();) { |
134 | 0 | String parameterName = (String) i.nextElement(); |
135 | |
|
136 | |
|
137 | 0 | if (isMethodToCall(parameterName)) { |
138 | 0 | methodToCall = getMethodToCallSettingAttribute(form, request, parameterName); |
139 | 0 | break; |
140 | |
} |
141 | |
else { |
142 | |
|
143 | |
|
144 | 0 | for (String value : request.getParameterValues(parameterName)) { |
145 | |
|
146 | |
|
147 | 0 | if (isMethodToCall(value)) { |
148 | 0 | methodToCall = getMethodToCallSettingAttribute(form, request, value); |
149 | |
|
150 | |
} |
151 | |
} |
152 | |
} |
153 | 0 | } |
154 | |
} |
155 | |
|
156 | 0 | return methodToCall; |
157 | |
} |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
|
163 | |
|
164 | |
|
165 | |
|
166 | |
private static boolean isMethodToCall(String string) { |
167 | |
|
168 | |
|
169 | 0 | return string.startsWith(KRADConstants.DISPATCH_REQUEST_PARAMETER + "."); |
170 | |
} |
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
|
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
private static String getMethodToCallSettingAttribute(ActionForm form, HttpServletRequest request, String string) { |
185 | |
|
186 | 0 | if (form instanceof ActionForm |
187 | |
&& !((KualiForm) form).shouldMethodToCallParameterBeUsed(string, request.getParameter(string), request)) { |
188 | 0 | throw new RuntimeException("Cannot verify that the methodToCall should be " + string); |
189 | |
} |
190 | |
|
191 | 0 | final String attributeValue = endsWithCoordinates(string) ? string : string |
192 | |
+ IMAGE_COORDINATE_CLICKED_X_EXTENSION; |
193 | 0 | final String methodToCall = StringUtils.substringBetween(attributeValue, |
194 | |
KRADConstants.DISPATCH_REQUEST_PARAMETER + ".", "."); |
195 | 0 | request.setAttribute(KRADConstants.METHOD_TO_CALL_ATTRIBUTE, attributeValue); |
196 | 0 | return methodToCall; |
197 | |
} |
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
|
204 | |
|
205 | |
|
206 | |
public static void logRequestContents(Logger logger, Level level, HttpServletRequest request) { |
207 | 0 | if (logger.isEnabledFor(level)) { |
208 | 0 | logger.log(level, "--------------------"); |
209 | 0 | logger.log(level, "HttpRequest attributes:"); |
210 | 0 | for (Enumeration e = request.getAttributeNames(); e.hasMoreElements();) { |
211 | 0 | String attrName = (String) e.nextElement(); |
212 | 0 | Object attrValue = request.getAttribute(attrName); |
213 | |
|
214 | 0 | if (attrValue.getClass().isArray()) { |
215 | 0 | logCollection(logger, level, attrName, Arrays.asList((Object[]) attrValue)); |
216 | |
} |
217 | 0 | else if (attrValue instanceof Collection) { |
218 | 0 | logCollection(logger, level, attrName, (Collection) attrValue); |
219 | |
} |
220 | 0 | else if (attrValue instanceof Map) { |
221 | 0 | logMap(logger, level, attrName, (Map) attrValue); |
222 | |
} |
223 | |
else { |
224 | 0 | logObject(logger, level, attrName, attrValue); |
225 | |
} |
226 | 0 | } |
227 | |
|
228 | 0 | logger.log(level, "--------------------"); |
229 | 0 | logger.log(level, "HttpRequest parameters:"); |
230 | 0 | for (Enumeration i = request.getParameterNames(); i.hasMoreElements();) { |
231 | 0 | String paramName = (String) i.nextElement(); |
232 | 0 | String[] paramValues = (String[]) request.getParameterValues(paramName); |
233 | |
|
234 | 0 | logArray(logger, level, paramName, paramValues); |
235 | 0 | } |
236 | |
|
237 | 0 | logger.log(level, "--------------------"); |
238 | |
} |
239 | 0 | } |
240 | |
|
241 | |
private static void logArray(Logger logger, Level level, String arrayName, Object[] array) { |
242 | 0 | StringBuffer value = new StringBuffer("["); |
243 | 0 | for (int i = 0; i < array.length; ++i) { |
244 | 0 | if (i > 0) { |
245 | 0 | value.append(","); |
246 | |
} |
247 | 0 | value.append(array[i]); |
248 | |
} |
249 | 0 | value.append("]"); |
250 | |
|
251 | 0 | logThing(logger, level, arrayName, value); |
252 | 0 | } |
253 | |
|
254 | |
private static void logCollection(Logger logger, Level level, String collectionName, Collection c) { |
255 | 0 | StringBuffer value = new StringBuffer("{"); |
256 | 0 | for (Iterator i = c.iterator(); i.hasNext();) { |
257 | 0 | value.append(i.next()); |
258 | 0 | if (i.hasNext()) { |
259 | 0 | value.append(","); |
260 | |
} |
261 | |
} |
262 | 0 | value.append("}"); |
263 | |
|
264 | 0 | logThing(logger, level, collectionName, value); |
265 | 0 | } |
266 | |
|
267 | |
private static void logMap(Logger logger, Level level, String mapName, Map m) { |
268 | 0 | StringBuffer value = new StringBuffer("{"); |
269 | 0 | for (Iterator i = m.entrySet().iterator(); i.hasNext();) { |
270 | 0 | Map.Entry e = (Map.Entry) i.next(); |
271 | 0 | value.append("('" + e.getKey() + "','" + e.getValue() + "')"); |
272 | 0 | } |
273 | 0 | value.append("}"); |
274 | |
|
275 | 0 | logThing(logger, level, mapName, value); |
276 | 0 | } |
277 | |
|
278 | |
private static void logObject(Logger logger, Level level, String objectName, Object o) { |
279 | 0 | logThing(logger, level, objectName, "'" + o + "'"); |
280 | 0 | } |
281 | |
|
282 | |
private static void logThing(Logger logger, Level level, String thingName, Object thing) { |
283 | 0 | logger.log(level, " '" + thingName + "' => " + thing); |
284 | 0 | } |
285 | |
|
286 | |
|
287 | |
|
288 | |
|
289 | |
|
290 | |
|
291 | |
|
292 | |
|
293 | |
|
294 | |
|
295 | |
public static void saveMimeOutputStreamAsFile(HttpServletResponse response, String contentType, |
296 | |
ByteArrayOutputStream byteArrayOutputStream, String fileName) throws IOException { |
297 | |
|
298 | |
|
299 | 0 | response.setContentType(contentType); |
300 | 0 | response.setHeader("Content-disposition", "attachment; filename=" + fileName); |
301 | 0 | response.setHeader("Expires", "0"); |
302 | 0 | response.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0"); |
303 | 0 | response.setHeader("Pragma", "public"); |
304 | 0 | response.setContentLength(byteArrayOutputStream.size()); |
305 | |
|
306 | |
|
307 | 0 | OutputStream outputStream = response.getOutputStream(); |
308 | 0 | byteArrayOutputStream.writeTo(response.getOutputStream()); |
309 | 0 | outputStream.flush(); |
310 | 0 | outputStream.close(); |
311 | 0 | } |
312 | |
|
313 | |
|
314 | |
|
315 | |
|
316 | |
|
317 | |
|
318 | |
|
319 | |
|
320 | |
|
321 | |
|
322 | |
public static void saveMimeInputStreamAsFile(HttpServletResponse response, String contentType, |
323 | |
InputStream inStream, String fileName, int fileSize) throws IOException { |
324 | |
|
325 | |
|
326 | 0 | response.setContentType(contentType); |
327 | 0 | response.setHeader("Content-disposition", "attachment; filename=" + fileName); |
328 | 0 | response.setHeader("Expires", "0"); |
329 | 0 | response.setHeader("Cache-Control", "must-revalidate, post-check=0, pre-check=0"); |
330 | 0 | response.setHeader("Pragma", "public"); |
331 | 0 | response.setContentLength(fileSize); |
332 | |
|
333 | |
|
334 | 0 | OutputStream out = response.getOutputStream(); |
335 | 0 | while (inStream.available() > 0) { |
336 | 0 | out.write(inStream.read()); |
337 | |
} |
338 | 0 | out.flush(); |
339 | 0 | } |
340 | |
|
341 | |
|
342 | |
|
343 | |
|
344 | |
|
345 | |
|
346 | |
|
347 | |
|
348 | |
public static String getTabState(KualiForm form, String tabKey) { |
349 | 0 | return form.getTabState(tabKey); |
350 | |
} |
351 | |
|
352 | |
public static void incrementTabIndex(KualiForm form, String tabKey) { |
353 | 0 | form.incrementTabIndex(); |
354 | 0 | } |
355 | |
|
356 | |
|
357 | |
|
358 | |
|
359 | |
|
360 | |
|
361 | |
|
362 | |
public static String generateTabKey(String tabTitle) { |
363 | 0 | String key = ""; |
364 | 0 | if (!StringUtils.isBlank(tabTitle)) { |
365 | 0 | key = tabTitle.replaceAll("\\W", ""); |
366 | |
|
367 | |
|
368 | |
|
369 | |
} |
370 | |
|
371 | 0 | return key; |
372 | |
} |
373 | |
|
374 | |
public static void getMultipartParameters(HttpServletRequest request, ActionServletWrapper servletWrapper, |
375 | |
ActionForm form, ActionMapping mapping) { |
376 | 0 | Map params = new HashMap(); |
377 | |
|
378 | |
|
379 | |
|
380 | |
|
381 | |
try { |
382 | 0 | CommonsMultipartRequestHandler multipartHandler = new CommonsMultipartRequestHandler(); |
383 | 0 | if (multipartHandler != null) { |
384 | |
|
385 | 0 | if (servletWrapper != null) { |
386 | |
|
387 | |
|
388 | 0 | servletWrapper.setServletFor(multipartHandler); |
389 | |
} |
390 | 0 | multipartHandler.setMapping((ActionMapping) request.getAttribute(Globals.MAPPING_KEY)); |
391 | |
|
392 | 0 | multipartHandler.handleRequest(request); |
393 | |
|
394 | 0 | Collection<FormFile> files = multipartHandler.getFileElements().values(); |
395 | 0 | Enumeration keys = multipartHandler.getFileElements().keys(); |
396 | |
|
397 | 0 | while (keys.hasMoreElements()) { |
398 | 0 | Object key = keys.nextElement(); |
399 | 0 | FormFile file = (FormFile) multipartHandler.getFileElements().get(key); |
400 | 0 | long maxSize = WebUtils.getMaxUploadSize(form); |
401 | 0 | if (LOG.isDebugEnabled()) { |
402 | 0 | LOG.debug(file.getFileSize()); |
403 | |
} |
404 | 0 | if (maxSize > 0 && Long.parseLong(file.getFileSize() + "") > maxSize) { |
405 | |
|
406 | 0 | GlobalVariables.getMessageMap().putError(key.toString(), |
407 | |
RiceKeyConstants.ERROR_UPLOADFILE_SIZE, |
408 | |
new String[] { file.getFileName(), Long.toString(maxSize) }); |
409 | |
|
410 | |
} |
411 | 0 | } |
412 | |
|
413 | |
|
414 | 0 | if (servletWrapper == null) { |
415 | 0 | request.setAttribute(KRADConstants.UPLOADED_FILE_REQUEST_ATTRIBUTE_KEY, |
416 | |
getFileParametersForMultipartRequest(request, multipartHandler)); |
417 | |
} |
418 | |
} |
419 | |
} |
420 | 0 | catch (ServletException e) { |
421 | 0 | throw new ValidationException("unable to handle multipart request " + e.getMessage(), e); |
422 | 0 | } |
423 | 0 | } |
424 | |
|
425 | |
public static long getMaxUploadSize(ActionForm form) { |
426 | 0 | long max = 0L; |
427 | 0 | KualiMultipartRequestHandler multipartHandler = new KualiMultipartRequestHandler(); |
428 | 0 | if (form instanceof PojoFormBase) { |
429 | 0 | max = multipartHandler.calculateMaxUploadSizeToMaxOfList(((PojoFormBase) form).getMaxUploadSizes()); |
430 | |
} |
431 | 0 | if (LOG.isDebugEnabled()) { |
432 | 0 | LOG.debug("Max File Upload Size: " + max); |
433 | |
} |
434 | 0 | return max; |
435 | |
} |
436 | |
|
437 | |
private static Map getFileParametersForMultipartRequest(HttpServletRequest request, |
438 | |
MultipartRequestHandler multipartHandler) { |
439 | 0 | Map parameters = new HashMap(); |
440 | 0 | Hashtable elements = multipartHandler.getFileElements(); |
441 | 0 | Enumeration e = elements.keys(); |
442 | 0 | while (e.hasMoreElements()) { |
443 | 0 | String key = (String) e.nextElement(); |
444 | 0 | parameters.put(key, elements.get(key)); |
445 | 0 | } |
446 | |
|
447 | 0 | if (request instanceof MultipartRequestWrapper) { |
448 | 0 | request = (HttpServletRequest) ((MultipartRequestWrapper) request).getRequest(); |
449 | 0 | e = request.getParameterNames(); |
450 | 0 | while (e.hasMoreElements()) { |
451 | 0 | String key = (String) e.nextElement(); |
452 | 0 | parameters.put(key, request.getParameterValues(key)); |
453 | 0 | } |
454 | |
} |
455 | |
else { |
456 | 0 | LOG.debug("Gathering multipart parameters for unwrapped request"); |
457 | |
} |
458 | 0 | return parameters; |
459 | |
} |
460 | |
|
461 | |
|
462 | |
|
463 | |
public static void registerEditableProperty(PojoFormBase form, String editablePropertyName) { |
464 | 0 | form.registerEditableProperty(editablePropertyName); |
465 | 0 | } |
466 | |
|
467 | |
public static boolean isDocumentSession(Document document, PojoFormBase docForm) { |
468 | 0 | boolean sessionDoc = document instanceof org.kuali.rice.krad.document.SessionDocument; |
469 | 0 | boolean dataDictionarySessionDoc = false; |
470 | 0 | if (!sessionDoc) { |
471 | 0 | DataDictionary dataDictionary = KRADServiceLocatorWeb.getDataDictionaryService().getDataDictionary(); |
472 | 0 | if (docForm instanceof KualiMaintenanceForm) { |
473 | 0 | KualiMaintenanceForm maintenanceForm = (KualiMaintenanceForm) docForm; |
474 | 0 | if (dataDictionary != null) { |
475 | 0 | if (maintenanceForm.getDocTypeName() != null) { |
476 | 0 | MaintenanceDocumentEntry maintenanceDocumentEntry = (MaintenanceDocumentEntry) dataDictionary.getDocumentEntry(maintenanceForm.getDocTypeName()); |
477 | 0 | dataDictionarySessionDoc = maintenanceDocumentEntry.isSessionDocument(); |
478 | |
} |
479 | |
} |
480 | 0 | } |
481 | |
else { |
482 | 0 | if (document != null && dataDictionary != null) { |
483 | 0 | DocumentEntry documentEntry = (DocumentEntry) dataDictionary.getDocumentEntry(document.getClass().getName()); |
484 | 0 | dataDictionarySessionDoc = documentEntry.isSessionDocument(); |
485 | |
} |
486 | |
} |
487 | |
} |
488 | 0 | return sessionDoc || dataDictionarySessionDoc; |
489 | |
} |
490 | |
|
491 | |
public static boolean isFormSessionDocument(PojoFormBase form) { |
492 | 0 | Document document = null; |
493 | 0 | if (KualiDocumentFormBase.class.isAssignableFrom(form.getClass())) { |
494 | 0 | KualiDocumentFormBase docForm = (KualiDocumentFormBase) form; |
495 | 0 | document = docForm.getDocument(); |
496 | |
} |
497 | 0 | return isDocumentSession(document, form); |
498 | |
} |
499 | |
|
500 | 0 | public static String KEY_KUALI_FORM_IN_SESSION = "KualiForm"; |
501 | |
|
502 | |
public static ActionForm getKualiForm(PageContext pageContext) { |
503 | 0 | return getKualiForm((HttpServletRequest) pageContext.getRequest()); |
504 | |
} |
505 | |
|
506 | |
public static ActionForm getKualiForm(HttpServletRequest request) { |
507 | 0 | if (request.getAttribute(KEY_KUALI_FORM_IN_SESSION) != null) { |
508 | 0 | return (ActionForm) request.getAttribute(KEY_KUALI_FORM_IN_SESSION); |
509 | |
} |
510 | |
else { |
511 | 0 | final HttpSession session = request.getSession(false); |
512 | 0 | return session != null ? (ActionForm) session.getAttribute(KEY_KUALI_FORM_IN_SESSION) : null; |
513 | |
} |
514 | |
} |
515 | |
|
516 | |
public static boolean isPropertyEditable(Set<String> editableProperties, String propertyName) { |
517 | 0 | if (LOG.isDebugEnabled()) { |
518 | 0 | LOG.debug("isPropertyEditable(" + propertyName + ")"); |
519 | |
} |
520 | |
|
521 | 0 | boolean returnVal = editableProperties == null |
522 | |
|| editableProperties.contains(propertyName) |
523 | |
|| (getIndexOfCoordinateExtension(propertyName) == -1 ? false : editableProperties |
524 | |
.contains(propertyName.substring(0, getIndexOfCoordinateExtension(propertyName)))); |
525 | 0 | if (!returnVal) { |
526 | 0 | if (LOG.isDebugEnabled()) { |
527 | 0 | LOG.debug("isPropertyEditable(" + propertyName + ") == false / editableProperties: " |
528 | |
+ editableProperties); |
529 | |
} |
530 | |
} |
531 | 0 | return returnVal; |
532 | |
} |
533 | |
|
534 | |
public static boolean endsWithCoordinates(String parameter) { |
535 | 0 | return parameter.endsWith(WebUtils.IMAGE_COORDINATE_CLICKED_X_EXTENSION) |
536 | |
|| parameter.endsWith(WebUtils.IMAGE_COORDINATE_CLICKED_Y_EXTENSION); |
537 | |
} |
538 | |
|
539 | |
public static int getIndexOfCoordinateExtension(String parameter) { |
540 | 0 | int indexOfCoordinateExtension = parameter.lastIndexOf(WebUtils.IMAGE_COORDINATE_CLICKED_X_EXTENSION); |
541 | 0 | if (indexOfCoordinateExtension == -1) |
542 | 0 | indexOfCoordinateExtension = parameter.lastIndexOf(WebUtils.IMAGE_COORDINATE_CLICKED_Y_EXTENSION); |
543 | 0 | return indexOfCoordinateExtension; |
544 | |
} |
545 | |
|
546 | |
public static boolean isInquiryHiddenField(String className, String fieldName, Object formObject, String propertyName) { |
547 | 0 | boolean isHidden = false; |
548 | 0 | String hiddenInquiryFields = getKualiConfigurationService().getPropertyString(className+".hidden"); |
549 | 0 | if (StringUtils.isEmpty(hiddenInquiryFields)) { |
550 | 0 | return isHidden; |
551 | |
} |
552 | 0 | List hiddenFields = Arrays.asList(hiddenInquiryFields.replaceAll(" ", "").split(",")); |
553 | 0 | if (hiddenFields.contains(fieldName.trim())) { |
554 | 0 | isHidden = true; |
555 | |
} |
556 | 0 | return isHidden; |
557 | |
} |
558 | |
|
559 | |
public static boolean isHiddenKimObjectType(String type, String configParameter) { |
560 | 0 | boolean hideType = false; |
561 | 0 | String hiddenTypes = getKualiConfigurationService().getPropertyString(configParameter); |
562 | 0 | if (StringUtils.isEmpty(hiddenTypes)) { |
563 | 0 | return hideType; |
564 | |
} |
565 | 0 | List hiddenTypeValues = Arrays.asList(hiddenTypes.replaceAll(" ", "").split(",")); |
566 | 0 | if (hiddenTypeValues.contains(type.trim())) { |
567 | 0 | hideType = true; |
568 | |
} |
569 | 0 | return hideType; |
570 | |
} |
571 | |
|
572 | |
public static String getFullyMaskedValue(String className, String fieldName, Object formObject, String propertyName) { |
573 | 0 | String displayMaskValue = null; |
574 | 0 | Object propertyValue = ObjectUtils.getPropertyValue(formObject, propertyName); |
575 | |
|
576 | 0 | DataDictionaryEntryBase entry = (DataDictionaryEntryBase) KRADServiceLocatorWeb.getDataDictionaryService() |
577 | |
.getDataDictionary().getDictionaryObjectEntry(className); |
578 | 0 | AttributeDefinition a = entry.getAttributeDefinition(fieldName); |
579 | |
|
580 | 0 | AttributeSecurity attributeSecurity = a.getAttributeSecurity(); |
581 | 0 | if (attributeSecurity != null && attributeSecurity.isMask()) { |
582 | 0 | MaskFormatter maskFormatter = attributeSecurity.getMaskFormatter(); |
583 | 0 | displayMaskValue = maskFormatter.maskValue(propertyValue); |
584 | |
|
585 | |
} |
586 | 0 | return displayMaskValue; |
587 | |
} |
588 | |
|
589 | |
public static String getPartiallyMaskedValue(String className, String fieldName, Object formObject, |
590 | |
String propertyName) { |
591 | 0 | String displayMaskValue = null; |
592 | 0 | Object propertyValue = ObjectUtils.getPropertyValue(formObject, propertyName); |
593 | |
|
594 | 0 | DataDictionaryEntryBase entry = (DataDictionaryEntryBase) KRADServiceLocatorWeb.getDataDictionaryService() |
595 | |
.getDataDictionary().getDictionaryObjectEntry(className); |
596 | 0 | AttributeDefinition a = entry.getAttributeDefinition(fieldName); |
597 | |
|
598 | 0 | AttributeSecurity attributeSecurity = a.getAttributeSecurity(); |
599 | 0 | if (attributeSecurity != null && attributeSecurity.isPartialMask()) { |
600 | 0 | MaskFormatter partialMaskFormatter = attributeSecurity.getPartialMaskFormatter(); |
601 | 0 | displayMaskValue = partialMaskFormatter.maskValue(propertyValue); |
602 | |
|
603 | |
} |
604 | 0 | return displayMaskValue; |
605 | |
} |
606 | |
|
607 | |
public static boolean canFullyUnmaskField(String businessObjectClassName, String fieldName, KualiForm form) { |
608 | 0 | Class businessObjClass = null; |
609 | |
try { |
610 | 0 | businessObjClass = Class.forName(businessObjectClassName); |
611 | |
} |
612 | 0 | catch (Exception e) { |
613 | 0 | throw new RuntimeException("Unable to resolve class name: " + businessObjectClassName); |
614 | 0 | } |
615 | 0 | if (form instanceof KualiDocumentFormBase) { |
616 | 0 | return KNSServiceLocator.getBusinessObjectAuthorizationService().canFullyUnmaskField( |
617 | |
GlobalVariables.getUserSession().getPerson(), businessObjClass, fieldName, |
618 | |
((KualiDocumentFormBase) form).getDocument()); |
619 | |
} |
620 | |
else { |
621 | 0 | return KNSServiceLocator.getBusinessObjectAuthorizationService().canFullyUnmaskField( |
622 | |
GlobalVariables.getUserSession().getPerson(), businessObjClass, fieldName, null); |
623 | |
} |
624 | |
} |
625 | |
|
626 | |
public static boolean canPartiallyUnmaskField(String businessObjectClassName, String fieldName, KualiForm form) { |
627 | 0 | Class businessObjClass = null; |
628 | |
try { |
629 | 0 | businessObjClass = Class.forName(businessObjectClassName); |
630 | |
} |
631 | 0 | catch (Exception e) { |
632 | 0 | throw new RuntimeException("Unable to resolve class name: " + businessObjectClassName); |
633 | 0 | } |
634 | 0 | if (form instanceof KualiDocumentFormBase) { |
635 | 0 | return KNSServiceLocator.getBusinessObjectAuthorizationService().canPartiallyUnmaskField( |
636 | |
GlobalVariables.getUserSession().getPerson(), businessObjClass, fieldName, |
637 | |
((KualiDocumentFormBase) form).getDocument()); |
638 | |
} |
639 | |
else { |
640 | 0 | return KNSServiceLocator.getBusinessObjectAuthorizationService().canPartiallyUnmaskField( |
641 | |
GlobalVariables.getUserSession().getPerson(), businessObjClass, fieldName, null); |
642 | |
} |
643 | |
} |
644 | |
|
645 | |
public static boolean canAddNoteAttachment(Document document) { |
646 | 0 | boolean canViewNoteAttachment = false; |
647 | 0 | DocumentAuthorizer documentAuthorizer = KRADServiceLocatorWeb.getDocumentHelperService().getDocumentAuthorizer( |
648 | |
document); |
649 | 0 | canViewNoteAttachment = documentAuthorizer.canAddNoteAttachment(document, null, GlobalVariables |
650 | |
.getUserSession().getPerson()); |
651 | 0 | return canViewNoteAttachment; |
652 | |
} |
653 | |
|
654 | |
public static boolean canViewNoteAttachment(Document document, String attachmentTypeCode) { |
655 | 0 | boolean canViewNoteAttachment = false; |
656 | 0 | DocumentAuthorizer documentAuthorizer = KRADServiceLocatorWeb.getDocumentHelperService().getDocumentAuthorizer( |
657 | |
document); |
658 | 0 | canViewNoteAttachment = documentAuthorizer.canViewNoteAttachment(document, attachmentTypeCode, GlobalVariables |
659 | |
.getUserSession().getPerson()); |
660 | 0 | return canViewNoteAttachment; |
661 | |
} |
662 | |
|
663 | |
public static boolean canDeleteNoteAttachment(Document document, String attachmentTypeCode, |
664 | |
String authorUniversalIdentifier) { |
665 | 0 | boolean canDeleteNoteAttachment = false; |
666 | 0 | DocumentAuthorizer documentAuthorizer = KRADServiceLocatorWeb.getDocumentHelperService().getDocumentAuthorizer( |
667 | |
document); |
668 | 0 | canDeleteNoteAttachment = documentAuthorizer.canDeleteNoteAttachment(document, attachmentTypeCode, "false", |
669 | |
GlobalVariables.getUserSession().getPerson()); |
670 | 0 | if (canDeleteNoteAttachment) { |
671 | 0 | return canDeleteNoteAttachment; |
672 | |
} |
673 | |
else { |
674 | 0 | canDeleteNoteAttachment = documentAuthorizer.canDeleteNoteAttachment(document, attachmentTypeCode, "true", |
675 | |
GlobalVariables.getUserSession().getPerson()); |
676 | 0 | if (canDeleteNoteAttachment |
677 | |
&& !authorUniversalIdentifier.equals(GlobalVariables.getUserSession().getPerson().getPrincipalId())) { |
678 | 0 | canDeleteNoteAttachment = false; |
679 | |
} |
680 | |
} |
681 | 0 | return canDeleteNoteAttachment; |
682 | |
} |
683 | |
|
684 | |
public static void reuseErrorMapFromPreviousRequest(KualiDocumentFormBase kualiDocumentFormBase) { |
685 | 0 | if (kualiDocumentFormBase.getMessageMapFromPreviousRequest() == null) { |
686 | 0 | LOG.error("Error map from previous request is null!"); |
687 | 0 | return; |
688 | |
} |
689 | 0 | MessageMap errorMapFromGlobalVariables = GlobalVariables.getMessageMap(); |
690 | 0 | if (kualiDocumentFormBase.getMessageMapFromPreviousRequest() == errorMapFromGlobalVariables) { |
691 | |
|
692 | 0 | return; |
693 | |
} |
694 | 0 | if (!errorMapFromGlobalVariables.hasNoErrors()) { |
695 | 0 | throw new RuntimeException("Cannot replace error map because it is not empty"); |
696 | |
} |
697 | 0 | GlobalVariables.setMessageMap(kualiDocumentFormBase.getMessageMapFromPreviousRequest()); |
698 | 0 | GlobalVariables.getMessageMap().clearErrorPath(); |
699 | 0 | } |
700 | |
|
701 | |
|
702 | |
|
703 | |
|
704 | |
|
705 | |
|
706 | |
|
707 | |
|
708 | |
|
709 | |
|
710 | |
|
711 | |
|
712 | |
|
713 | |
|
714 | |
|
715 | |
|
716 | |
|
717 | |
|
718 | |
public static String filterHtmlAndReplaceRiceMarkup(String inputString) { |
719 | 0 | String outputString = StringEscapeUtils.escapeHtml(inputString); |
720 | |
|
721 | |
|
722 | 0 | Map<String, String> findAndReplacePatterns = new HashMap<String, String>(); |
723 | |
|
724 | |
|
725 | |
|
726 | |
|
727 | |
|
728 | |
|
729 | 0 | findAndReplacePatterns.put("\\[([A-Za-z])\\]", "<$1>"); |
730 | 0 | findAndReplacePatterns.put("\\[/([A-Za-z])\\]", "</$1>"); |
731 | |
|
732 | 0 | findAndReplacePatterns.put("\\[([A-Za-z]{2})\\]", "<$1>"); |
733 | 0 | findAndReplacePatterns.put("\\[/([A-Za-z]{2})\\]", "</$1>"); |
734 | |
|
735 | 0 | findAndReplacePatterns.put("\\[font (#[0-9A-Fa-f]{1,6}|[A-Za-z]+)\\]", "<font color=\"$1\">"); |
736 | 0 | findAndReplacePatterns.put("\\[/font\\]", "</font>"); |
737 | |
|
738 | 0 | findAndReplacePatterns.put("\\[table\\]", "<table>"); |
739 | 0 | findAndReplacePatterns.put("\\[table ([A-Za-z]+)\\]", "<table class=\"$1\">"); |
740 | 0 | findAndReplacePatterns.put("\\[/table\\]", "</table>"); |
741 | |
|
742 | 0 | findAndReplacePatterns.put("\\[td ([A-Za-z]+)\\]", "<td class=\"$1\">"); |
743 | |
|
744 | 0 | for (String findPattern : findAndReplacePatterns.keySet()) { |
745 | 0 | Pattern p = Pattern.compile(findPattern); |
746 | 0 | Matcher m = p.matcher(outputString); |
747 | 0 | if (m.find()) { |
748 | 0 | String replacePattern = findAndReplacePatterns.get(findPattern); |
749 | 0 | outputString = m.replaceAll(replacePattern); |
750 | |
} |
751 | 0 | } |
752 | |
|
753 | 0 | return outputString; |
754 | |
} |
755 | |
|
756 | |
|
757 | |
|
758 | |
|
759 | |
|
760 | |
|
761 | |
|
762 | |
|
763 | |
|
764 | |
|
765 | |
public static String getButtonImageUrl(String imageName) { |
766 | 0 | String buttonImageUrl = getKualiConfigurationService().getPropertyString( |
767 | |
WebUtils.APPLICATION_IMAGE_URL_PROPERTY_PREFIX + "." + imageName); |
768 | 0 | if (StringUtils.isBlank(buttonImageUrl)) { |
769 | 0 | buttonImageUrl = getDefaultButtonImageUrl(imageName); |
770 | |
} |
771 | 0 | return buttonImageUrl; |
772 | |
} |
773 | |
|
774 | |
|
775 | |
|
776 | |
|
777 | |
|
778 | |
|
779 | |
|
780 | |
|
781 | |
|
782 | |
public static String getDefaultButtonImageUrl(String imageName) { |
783 | 0 | return getKualiConfigurationService().getPropertyString(WebUtils.DEFAULT_IMAGE_URL_PROPERTY_NAME) |
784 | |
+ "buttonsmall_" + imageName + ".gif"; |
785 | |
} |
786 | |
|
787 | |
|
788 | |
|
789 | |
|
790 | |
public static ConfigurationService getKualiConfigurationService() { |
791 | 0 | if (configurationService == null) { |
792 | 0 | configurationService = KRADServiceLocator.getKualiConfigurationService(); |
793 | |
} |
794 | 0 | return configurationService; |
795 | |
} |
796 | |
} |