1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.kns.web.struts.action; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.apache.struts.action.ActionForm; |
20 | |
import org.apache.struts.action.ActionForward; |
21 | |
import org.apache.struts.action.ActionMapping; |
22 | |
import org.kuali.rice.core.api.util.RiceConstants; |
23 | |
import org.kuali.rice.kim.api.KimConstants; |
24 | |
import org.kuali.rice.kim.api.services.KimApiServiceLocator; |
25 | |
import org.kuali.rice.kns.lookup.LookupUtils; |
26 | |
import org.kuali.rice.kns.lookup.Lookupable; |
27 | |
import org.kuali.rice.kns.service.KNSServiceLocator; |
28 | |
import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService; |
29 | |
import org.kuali.rice.kns.web.struts.form.LookupForm; |
30 | |
import org.kuali.rice.kns.web.ui.Field; |
31 | |
import org.kuali.rice.kns.web.ui.ResultRow; |
32 | |
import org.kuali.rice.kns.web.ui.Row; |
33 | |
import org.kuali.rice.krad.exception.AuthorizationException; |
34 | |
import org.kuali.rice.krad.lookup.CollectionIncomplete; |
35 | |
import org.kuali.rice.krad.service.DocumentHelperService; |
36 | |
import org.kuali.rice.krad.service.KRADServiceLocatorWeb; |
37 | |
import org.kuali.rice.krad.util.GlobalVariables; |
38 | |
import org.kuali.rice.krad.util.KRADConstants; |
39 | |
import org.kuali.rice.krad.util.KRADUtils; |
40 | |
import org.springframework.web.util.HtmlUtils; |
41 | |
|
42 | |
import javax.servlet.ServletException; |
43 | |
import javax.servlet.http.HttpServletRequest; |
44 | |
import javax.servlet.http.HttpServletResponse; |
45 | |
import java.io.IOException; |
46 | |
import java.util.ArrayList; |
47 | |
import java.util.Collection; |
48 | |
import java.util.Collections; |
49 | |
import java.util.HashMap; |
50 | |
import java.util.Iterator; |
51 | |
import java.util.Map; |
52 | |
|
53 | |
|
54 | |
|
55 | |
|
56 | |
|
57 | |
|
58 | |
|
59 | 0 | public class KualiLookupAction extends KualiAction { |
60 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(KualiLookupAction.class); |
61 | |
|
62 | |
@Override |
63 | |
protected void checkAuthorization(ActionForm form, String methodToCall) throws AuthorizationException { |
64 | 0 | if (!(form instanceof LookupForm)) { |
65 | 0 | super.checkAuthorization(form, methodToCall); |
66 | |
} else { |
67 | |
try { |
68 | 0 | Class businessObjectClass = Class.forName(((LookupForm) form).getBusinessObjectClassName()); |
69 | 0 | if (!KimApiServiceLocator.getPermissionService().isAuthorizedByTemplateName(GlobalVariables.getUserSession().getPrincipalId(), KRADConstants.KRAD_NAMESPACE, KimConstants.PermissionTemplateNames.LOOK_UP_RECORDS, |
70 | |
KRADUtils.getNamespaceAndComponentSimpleName(businessObjectClass), Collections.<String, String>emptyMap())) { |
71 | 0 | throw new AuthorizationException(GlobalVariables.getUserSession().getPerson().getPrincipalName(), |
72 | |
KimConstants.PermissionTemplateNames.LOOK_UP_RECORDS, |
73 | |
businessObjectClass.getSimpleName()); |
74 | |
} |
75 | |
} |
76 | 0 | catch (ClassNotFoundException e) { |
77 | 0 | LOG.warn("Unable to load BusinessObject class: " + ((LookupForm) form).getBusinessObjectClassName(), e); |
78 | 0 | super.checkAuthorization(form, methodToCall); |
79 | 0 | } |
80 | |
} |
81 | 0 | } |
82 | |
|
83 | |
private static MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService; |
84 | |
private static DocumentHelperService documentHelperService; |
85 | |
private static MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() { |
86 | 0 | if (maintenanceDocumentDictionaryService == null) { |
87 | 0 | maintenanceDocumentDictionaryService = KNSServiceLocator.getMaintenanceDocumentDictionaryService(); |
88 | |
} |
89 | 0 | return maintenanceDocumentDictionaryService; |
90 | |
} |
91 | |
private static DocumentHelperService getDocumentHelperService() { |
92 | 0 | if (documentHelperService == null) { |
93 | 0 | documentHelperService = KRADServiceLocatorWeb.getDocumentHelperService(); |
94 | |
} |
95 | 0 | return documentHelperService; |
96 | |
} |
97 | |
|
98 | |
|
99 | |
|
100 | |
|
101 | |
|
102 | |
|
103 | |
|
104 | |
protected void supressActionsIfNeeded( ActionForm form ) throws ClassNotFoundException { |
105 | 0 | if ((form instanceof LookupForm) && ( ((LookupForm)form).getBusinessObjectClassName() != null )) { |
106 | 0 | Class businessObjectClass = Class.forName( ((LookupForm)form).getBusinessObjectClassName() ); |
107 | |
|
108 | 0 | String documentTypeName = getMaintenanceDocumentDictionaryService().getDocumentTypeName(businessObjectClass); |
109 | 0 | if ((documentTypeName != null) && !getDocumentHelperService().getDocumentAuthorizer(documentTypeName).canInitiate(documentTypeName, GlobalVariables.getUserSession().getPerson())) { |
110 | 0 | ((LookupForm)form).setSuppressActions( true ); |
111 | |
} |
112 | |
} |
113 | 0 | } |
114 | |
|
115 | |
|
116 | |
|
117 | |
|
118 | |
|
119 | |
|
120 | |
private void setCriteriaEnabled(ActionForm form) { |
121 | 0 | LookupForm lookupForm = (LookupForm) form; |
122 | 0 | if(lookupForm.isLookupCriteriaEnabled()) { |
123 | |
|
124 | |
} |
125 | 0 | } |
126 | |
|
127 | |
|
128 | |
|
129 | |
|
130 | |
|
131 | |
private void suppressNonMaintActionsIfNeeded(ActionForm form) { |
132 | 0 | LookupForm lookupForm = (LookupForm) form; |
133 | 0 | if(lookupForm.getLookupable()!=null) { |
134 | 0 | if(StringUtils.isNotEmpty(lookupForm.getLookupable().getSupplementalMenuBar())) { |
135 | 0 | lookupForm.setSupplementalActionsEnabled(true); |
136 | |
} |
137 | |
|
138 | |
} |
139 | 0 | } |
140 | |
|
141 | |
@Override |
142 | |
public ActionForward execute(ActionMapping mapping, ActionForm form, HttpServletRequest request, |
143 | |
HttpServletResponse response) throws Exception { |
144 | 0 | LookupForm lookupForm = (LookupForm) form; |
145 | |
|
146 | 0 | request.setAttribute(KRADConstants.PARAM_MAINTENANCE_VIEW_MODE, KRADConstants.PARAM_MAINTENANCE_VIEW_MODE_LOOKUP); |
147 | 0 | supressActionsIfNeeded(form); |
148 | 0 | suppressNonMaintActionsIfNeeded(form); |
149 | 0 | setCriteriaEnabled(form); |
150 | |
|
151 | 0 | hideHeaderBarIfNeeded(form, request); |
152 | |
|
153 | 0 | int numCols = KRADServiceLocatorWeb.getBusinessObjectDictionaryService().getLookupNumberOfColumns( |
154 | |
Class.forName(lookupForm.getBusinessObjectClassName())); |
155 | 0 | lookupForm.setNumColumns(numCols); |
156 | |
|
157 | 0 | ActionForward forward = super.execute(mapping, form, request, response); |
158 | |
|
159 | |
|
160 | 0 | lookupForm.getLookupable().applyConditionalLogicForFieldDisplay(); |
161 | |
|
162 | 0 | return forward; |
163 | |
} |
164 | |
|
165 | |
private void hideHeaderBarIfNeeded(ActionForm form, HttpServletRequest request) { |
166 | 0 | if (!((LookupForm) form).isHeaderBarEnabled()) { |
167 | 0 | ((LookupForm) form).setHeaderBarEnabled(false); |
168 | |
} |
169 | 0 | } |
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
176 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
177 | |
} |
178 | |
|
179 | |
|
180 | |
|
181 | |
|
182 | |
public ActionForward search(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
183 | 0 | LookupForm lookupForm = (LookupForm) form; |
184 | |
|
185 | |
|
186 | 0 | String methodToCall = findMethodToCall(form, request); |
187 | 0 | if (methodToCall.equalsIgnoreCase("search")) { |
188 | 0 | GlobalVariables.getUserSession().removeObjectsByPrefix(KRADConstants.SEARCH_METHOD); |
189 | |
} |
190 | |
|
191 | |
|
192 | |
|
193 | 0 | Lookupable kualiLookupable = lookupForm.getLookupable(); |
194 | 0 | if (kualiLookupable == null) { |
195 | 0 | LOG.error("Lookupable is null."); |
196 | 0 | throw new RuntimeException("Lookupable is null."); |
197 | |
} |
198 | |
|
199 | 0 | Collection displayList = new ArrayList(); |
200 | 0 | ArrayList<ResultRow> resultTable = new ArrayList<ResultRow>(); |
201 | |
|
202 | |
|
203 | 0 | kualiLookupable.validateSearchParameters(lookupForm.getFields()); |
204 | |
|
205 | 0 | boolean bounded = true; |
206 | |
|
207 | 0 | displayList = kualiLookupable.performLookup(lookupForm, resultTable, bounded); |
208 | |
|
209 | 0 | if (kualiLookupable.isSearchUsingOnlyPrimaryKeyValues()) { |
210 | 0 | lookupForm.setSearchUsingOnlyPrimaryKeyValues(true); |
211 | 0 | lookupForm.setPrimaryKeyFieldLabels(kualiLookupable.getPrimaryKeyFieldLabels()); |
212 | |
} |
213 | |
else { |
214 | 0 | lookupForm.setSearchUsingOnlyPrimaryKeyValues(false); |
215 | 0 | lookupForm.setPrimaryKeyFieldLabels(KRADConstants.EMPTY_STRING); |
216 | |
} |
217 | |
|
218 | 0 | if ( displayList instanceof CollectionIncomplete ){ |
219 | 0 | request.setAttribute("reqSearchResultsActualSize", ((CollectionIncomplete) displayList).getActualSizeIfTruncated()); |
220 | |
} else { |
221 | 0 | request.setAttribute("reqSearchResultsActualSize", displayList.size() ); |
222 | |
} |
223 | |
|
224 | 0 | int resultsLimit = LookupUtils.getSearchResultsLimit(Class.forName(lookupForm.getBusinessObjectClassName())); |
225 | 0 | request.setAttribute("reqSearchResultsLimitedSize", resultsLimit); |
226 | |
|
227 | |
|
228 | |
|
229 | 0 | boolean hasActionUrls = false; |
230 | 0 | for (Iterator<ResultRow> iterator = resultTable.iterator(); !hasActionUrls && iterator.hasNext();) { |
231 | 0 | if (StringUtils.isNotBlank(HtmlUtils.htmlUnescape(iterator.next().getActionUrls()).replace('\u00A0', '\u0020'))) { |
232 | 0 | hasActionUrls = true; |
233 | |
} |
234 | |
} |
235 | 0 | lookupForm.setActionUrlsExist(hasActionUrls); |
236 | |
|
237 | 0 | request.setAttribute("reqSearchResults", resultTable); |
238 | |
|
239 | 0 | if (request.getParameter(KRADConstants.SEARCH_LIST_REQUEST_KEY) != null) { |
240 | 0 | GlobalVariables.getUserSession().removeObject(request.getParameter(KRADConstants.SEARCH_LIST_REQUEST_KEY)); |
241 | |
} |
242 | |
|
243 | 0 | request.setAttribute(KRADConstants.SEARCH_LIST_REQUEST_KEY, GlobalVariables.getUserSession().addObjectWithGeneratedKey(resultTable, KRADConstants.SEARCH_LIST_KEY_PREFIX)); |
244 | |
|
245 | 0 | request.getParameter(KRADConstants.REFRESH_CALLER); |
246 | |
|
247 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
248 | |
} |
249 | |
|
250 | |
|
251 | |
|
252 | |
|
253 | |
|
254 | |
@Override |
255 | |
public ActionForward refresh(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
256 | 0 | LookupForm lookupForm = (LookupForm) form; |
257 | 0 | Lookupable kualiLookupable = lookupForm.getLookupable(); |
258 | 0 | if (kualiLookupable == null) { |
259 | 0 | LOG.error("Lookupable is null."); |
260 | 0 | throw new RuntimeException("Lookupable is null."); |
261 | |
} |
262 | |
|
263 | 0 | if(StringUtils.equals(lookupForm.getRefreshCaller(),"customLookupAction")) { |
264 | 0 | return this.customLookupableMethodCall(mapping, lookupForm, request, response); |
265 | |
} |
266 | |
|
267 | 0 | Map fieldValues = new HashMap(); |
268 | 0 | Map values = lookupForm.getFields(); |
269 | |
|
270 | 0 | for (Row row: kualiLookupable.getRows()) { |
271 | 0 | for (Field field: row.getFields()) { |
272 | 0 | if (field.getPropertyName() != null && !field.getPropertyName().equals("")) { |
273 | 0 | if (request.getParameter(field.getPropertyName()) != null) { |
274 | 0 | if(!Field.MULTI_VALUE_FIELD_TYPES.contains(field.getFieldType())) { |
275 | 0 | field.setPropertyValue(request.getParameter(field.getPropertyName())); |
276 | |
} else { |
277 | |
|
278 | 0 | field.setPropertyValues(request.getParameterValues(field.getPropertyName())); |
279 | |
} |
280 | |
} |
281 | |
} |
282 | 0 | else if (values.get(field.getPropertyName()) != null) { |
283 | 0 | field.setPropertyValue(values.get(field.getPropertyName())); |
284 | |
} |
285 | |
|
286 | 0 | kualiLookupable.applyFieldAuthorizationsFromNestedLookups(field); |
287 | |
|
288 | 0 | fieldValues.put(field.getPropertyName(), field.getPropertyValue()); |
289 | |
} |
290 | |
} |
291 | 0 | fieldValues.put("docFormKey", lookupForm.getFormKey()); |
292 | 0 | fieldValues.put("backLocation", lookupForm.getBackLocation()); |
293 | 0 | fieldValues.put("docNum", lookupForm.getDocNum()); |
294 | |
|
295 | 0 | if (kualiLookupable.checkForAdditionalFields(fieldValues)) { |
296 | 0 | for (Row row: kualiLookupable.getRows()) { |
297 | 0 | for (Object element : row.getFields()) { |
298 | 0 | Field field = (Field) element; |
299 | 0 | if (field.getPropertyName() != null && !field.getPropertyName().equals("")) { |
300 | 0 | if (request.getParameter(field.getPropertyName()) != null) { |
301 | |
|
302 | 0 | if(!Field.MULTI_VALUE_FIELD_TYPES.contains(field.getFieldType())) { |
303 | 0 | field.setPropertyValue(request.getParameter(field.getPropertyName())); |
304 | |
} else { |
305 | |
|
306 | 0 | field.setPropertyValues(request.getParameterValues(field.getPropertyName())); |
307 | |
} |
308 | |
|
309 | 0 | fieldValues.put(field.getPropertyName(), request.getParameter(field.getPropertyName())); |
310 | |
} |
311 | 0 | else if (values.get(field.getPropertyName()) != null) { |
312 | 0 | field.setPropertyValue(values.get(field.getPropertyName())); |
313 | |
} |
314 | |
} |
315 | 0 | } |
316 | |
} |
317 | |
} |
318 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
319 | |
} |
320 | |
|
321 | |
|
322 | |
|
323 | |
|
324 | |
public ActionForward cancel(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
325 | 0 | LookupForm lookupForm = (LookupForm) form; |
326 | |
|
327 | 0 | String backUrl = lookupForm.getBackLocation() + "?methodToCall=refresh&docFormKey=" + lookupForm.getFormKey()+"&docNum="+lookupForm.getDocNum(); |
328 | 0 | return new ActionForward(backUrl, true); |
329 | |
} |
330 | |
|
331 | |
|
332 | |
|
333 | |
|
334 | |
|
335 | |
public ActionForward clearValues(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws IOException, ServletException { |
336 | 0 | LookupForm lookupForm = (LookupForm) form; |
337 | 0 | Lookupable kualiLookupable = lookupForm.getLookupable(); |
338 | 0 | if (kualiLookupable == null) { |
339 | 0 | LOG.error("Lookupable is null."); |
340 | 0 | throw new RuntimeException("Lookupable is null."); |
341 | |
} |
342 | |
|
343 | 0 | kualiLookupable.performClear(lookupForm); |
344 | |
|
345 | |
|
346 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
347 | |
} |
348 | |
|
349 | |
|
350 | |
public ActionForward viewResults(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
351 | 0 | LookupForm lookupForm = (LookupForm) form; |
352 | 0 | if (lookupForm.isSearchUsingOnlyPrimaryKeyValues()) { |
353 | 0 | lookupForm.setPrimaryKeyFieldLabels(lookupForm.getLookupable().getPrimaryKeyFieldLabels()); |
354 | |
} |
355 | 0 | request.setAttribute(KRADConstants.SEARCH_LIST_REQUEST_KEY, request.getParameter(KRADConstants.SEARCH_LIST_REQUEST_KEY)); |
356 | 0 | request.setAttribute("reqSearchResults", GlobalVariables.getUserSession().retrieveObject(request.getParameter( |
357 | |
KRADConstants.SEARCH_LIST_REQUEST_KEY))); |
358 | 0 | request.setAttribute("reqSearchResultsActualSize", request.getParameter("reqSearchResultsActualSize")); |
359 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
360 | |
} |
361 | |
|
362 | |
public ActionForward customLookupableMethodCall(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception { |
363 | |
|
364 | 0 | Lookupable kualiLookupable = ((LookupForm)form).getLookupable(); |
365 | 0 | if (kualiLookupable == null) { |
366 | 0 | LOG.error("Lookupable is null."); |
367 | 0 | throw new RuntimeException("Lookupable is null."); |
368 | |
} |
369 | |
|
370 | 0 | boolean ignoreErrors=false; |
371 | 0 | if(StringUtils.equals(((LookupForm)form).getRefreshCaller(),"customLookupAction")) { |
372 | 0 | ignoreErrors=true; |
373 | |
} |
374 | |
|
375 | 0 | if(kualiLookupable.performCustomAction(ignoreErrors)) { |
376 | |
|
377 | 0 | return search(mapping, form, request, response); |
378 | |
} |
379 | 0 | return mapping.findForward(RiceConstants.MAPPING_BASIC); |
380 | |
|
381 | |
} |
382 | |
|
383 | |
} |