1 package org.kuali.ole.olekrad.authorization.controller;
2
3 import org.apache.commons.lang.StringUtils;
4 import org.apache.log4j.Logger;
5 import org.kuali.ole.OLEConstants;
6 import org.kuali.ole.deliver.form.OleLoanForm;
7 import org.kuali.ole.olekrad.authorization.form.OLEKRADAuthorizationForm;
8 import org.kuali.rice.krad.UserSession;
9 import org.kuali.rice.krad.uif.UifConstants;
10 import org.kuali.rice.krad.uif.UifParameters;
11 import org.kuali.rice.krad.uif.view.HistoryEntry;
12 import org.kuali.rice.krad.util.GlobalVariables;
13 import org.kuali.rice.krad.util.KRADConstants;
14 import org.kuali.rice.krad.web.controller.UifControllerHelper;
15 import org.kuali.rice.krad.web.controller.UifHandlerExceptionResolver;
16 import org.kuali.rice.krad.web.form.DocumentFormBase;
17 import org.kuali.rice.krad.web.form.LookupForm;
18 import org.kuali.rice.krad.web.form.UifFormBase;
19 import org.springframework.web.servlet.ModelAndView;
20
21 import javax.servlet.http.HttpServletRequest;
22 import javax.servlet.http.HttpServletResponse;
23
24
25
26
27
28
29
30
31 public class OLEKRADAuthorizationResolver extends UifHandlerExceptionResolver {
32 private static final Logger LOG = Logger.getLogger(OLEKRADAuthorizationResolver.class);
33 @Override
34 public ModelAndView resolveException(HttpServletRequest request, HttpServletResponse response, Object handler,
35 Exception ex) {
36
37
38
39
40 if(ex!=null && ex.getMessage()!=null && ex.getMessage().contains("is not authorized")){
41
42 String incidentDocId = request.getParameter(KRADConstants.DOCUMENT_DOCUMENT_NUMBER);
43 String incidentViewId = "";
44
45 UifFormBase form = (UifFormBase)request.getAttribute(UifConstants.REQUEST_FORM);
46 if (form instanceof DocumentFormBase) {
47 if (((DocumentFormBase) form).getDocument() != null) {
48 incidentDocId = ((DocumentFormBase) form).getDocument().getDocumentNumber();
49 }
50 incidentViewId = ((DocumentFormBase) form).getViewId();
51 }
52 GlobalVariables.getUifFormManager().removeSessionForm(form);
53
54 UserSession userSession = (UserSession) request.getSession().getAttribute(KRADConstants.USER_SESSION_KEY);
55
56 OLEKRADAuthorizationForm oleKradAuthorizationForm = new OLEKRADAuthorizationForm();
57 oleKradAuthorizationForm.setDocId(incidentDocId);
58 String principalId = userSession.getPrincipalId();
59 String principalName = userSession.getPrincipalName();
60 oleKradAuthorizationForm.setPrincipalId(principalId);
61 oleKradAuthorizationForm.setError("Error Message :");
62 if(form instanceof LookupForm){
63 oleKradAuthorizationForm.setInformation(principalName + " is not authorized to view \" "+ form.getView().getHeaderText()+" \"");
64
65 }
66 else if(form instanceof UifFormBase){
67 oleKradAuthorizationForm.setInformation(principalName + " is not authorized to view \" "+ form.getView().getHeaderText()+" \"");
68 }
69 else{
70 oleKradAuthorizationForm.setInformation(principalName + " is not authorized to view this Document");
71 }
72
73
74
75
76
77 String postUrl = request.getRequestURL().toString();
78 postUrl = postUrl.substring(0, postUrl.lastIndexOf("/")) + "/incidentReport";
79 oleKradAuthorizationForm.setFormPostUrl(postUrl);
80
81 oleKradAuthorizationForm.setViewId("OLEKRADAuthorizationView");
82
83 if (form != null) {
84 oleKradAuthorizationForm.setAjaxRequest(form.isAjaxRequest());
85 } else {
86 String ajaxRequestParm = request.getParameter(UifParameters.AJAX_REQUEST);
87 if (StringUtils.isNotBlank(ajaxRequestParm)) {
88 oleKradAuthorizationForm.setAjaxRequest(Boolean.parseBoolean(ajaxRequestParm));
89 }
90 }
91
92
93 oleKradAuthorizationForm.setView(getViewService().getViewById("OLEKRADAuthorizationView"));
94
95
96
97 HistoryEntry entry = new HistoryEntry("", "", "Incident Report", "", "");
98
99
100
101
102 oleKradAuthorizationForm.setAjaxReturnType(UifConstants.AjaxReturnTypes.UPDATEVIEW.getKey());
103
104 ModelAndView modelAndView = UifControllerHelper.getUIFModelAndView(oleKradAuthorizationForm, "");
105 try {
106 UifControllerHelper.postControllerHandle(request, response, handler, modelAndView);
107 } catch (Exception e) {
108 LOG.error("An error stopped the incident form from loading", e);
109 }
110
111 return modelAndView;
112 }else if(ex!=null && ex.getMessage()!=null &&((UifFormBase)request.getAttribute(UifConstants.REQUEST_FORM)).getClass().getName().equals("org.kuali.ole.deliver.form.OleLoanForm")){
113 UifFormBase form = (UifFormBase)request.getAttribute(UifConstants.REQUEST_FORM);
114 OleLoanForm oleLoanForm = (OleLoanForm) form;
115 if(StringUtils.isNotBlank(oleLoanForm.getInformation()) && (oleLoanForm.getInformation().contains("for key 'ITM_ID_UNIQUE'")|| oleLoanForm.getInformation().contains("The Item is already loaned."))){
116 oleLoanForm.setInformation(OLEConstants.ITEM_ALREADY_LOANED);
117 oleLoanForm.setMessage(null);
118 oleLoanForm.setSuccess(true);
119 oleLoanForm.setNonCirculatingFlag(false);
120 oleLoanForm.setCurrentDate(null);
121 oleLoanForm.setRequestUrl(oleLoanForm.getRequestUrl() + OLEConstants.ITEM_ALREADY_LOANED_REDIRECT_URL + oleLoanForm.getFormKey());
122 oleLoanForm.setFormPostUrl(oleLoanForm.getFormPostUrl() + OLEConstants.ITEM_ALREADY_LOANED_REDIRECT_URL + oleLoanForm.getFormKey());
123 GlobalVariables.getUifFormManager().addSessionForm(oleLoanForm);
124 HistoryEntry entry = new HistoryEntry("", "", "is not a valid date", "", "");
125 ModelAndView modelAndView = UifControllerHelper.getUIFModelAndView(oleLoanForm, "PatronItemViewPage");
126 try {
127 UifControllerHelper.postControllerHandle(request, response, handler, modelAndView);
128 } catch (Exception e) {
129 LOG.error("An error stopped the incident form from loading", e);
130 }
131 return modelAndView;
132 }else{
133 return super.resolveException(request,response,handler,ex);
134 }
135
136
137
138 }
139 else {
140 return super.resolveException(request,response,handler,ex);
141
142 }
143
144
145
146
147 }
148 }