Coverage Report - org.kuali.rice.krad.uif.util.UifWebUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
UifWebUtils
0%
0/79
0%
0/42
3.625
 
 1  
 /*
 2  
  * Copyright 2011 The Kuali Foundation Licensed under the Educational Community
 3  
  * License, Version 1.0 (the "License"); you may not use this file except in
 4  
  * compliance with the License. You may obtain a copy of the License at
 5  
  * http://www.opensource.org/licenses/ecl1.php Unless required by applicable law
 6  
  * or agreed to in writing, software distributed under the License is
 7  
  * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 8  
  * KIND, either express or implied. See the License for the specific language
 9  
  * governing permissions and limitations under the License.
 10  
  */
 11  
 package org.kuali.rice.krad.uif.util;
 12  
 
 13  
 import org.apache.commons.lang.StringUtils;
 14  
 import org.apache.log4j.Logger;
 15  
 import org.kuali.rice.krad.UserSession;
 16  
 import org.kuali.rice.krad.service.KRADServiceLocatorWeb;
 17  
 import org.kuali.rice.krad.service.SessionDocumentService;
 18  
 import org.kuali.rice.krad.uif.UifConstants;
 19  
 import org.kuali.rice.krad.uif.UifParameters;
 20  
 import org.kuali.rice.krad.uif.container.View;
 21  
 import org.kuali.rice.krad.uif.core.Component;
 22  
 import org.kuali.rice.krad.uif.history.History;
 23  
 import org.kuali.rice.krad.uif.service.ViewService;
 24  
 import org.kuali.rice.krad.util.KRADConstants;
 25  
 import org.kuali.rice.krad.web.controller.UifControllerBase;
 26  
 import org.kuali.rice.krad.web.form.DocumentFormBase;
 27  
 import org.kuali.rice.krad.web.form.UifFormBase;
 28  
 import org.springframework.web.servlet.ModelAndView;
 29  
 
 30  
 import javax.servlet.http.HttpServletRequest;
 31  
 import javax.servlet.http.HttpServletResponse;
 32  
 
 33  
 /**
 34  
  * Provides helper methods that will be used during the request lifecycle
 35  
  *
 36  
  * <p>
 37  
  * Created to avoid duplication of the methods used by the UifHandlerExceptionResolver
 38  
  * </p>
 39  
  *
 40  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 41  
  */
 42  0
 public class UifWebUtils {
 43  
 
 44  0
     private static final Logger LOG = Logger.getLogger(UifWebUtils.class);
 45  
 
 46  
     /**
 47  
      * Gets the form from the request
 48  
      *
 49  
      * <p>
 50  
      * Looks for the form on the session by using the form key. If the form is not
 51  
      * on the session it will attempt to get it from the database.
 52  
      * </p>
 53  
      *
 54  
      * @param request the http request
 55  
      * @return the form from request
 56  
      */
 57  
     public static UifFormBase getFormFromRequest(HttpServletRequest request) {
 58  0
         UifFormBase form = null;
 59  0
         String formKeyParam = request.getParameter(UifParameters.FORM_KEY);
 60  0
         String docId = request.getParameter(KRADConstants.DOCUMENT_DOCUMENT_NUMBER);
 61  0
         if (StringUtils.isNotBlank(formKeyParam)) {
 62  0
             form = (UifFormBase) request.getSession().getAttribute(formKeyParam);
 63  
             // retreive from db if form not in session
 64  0
             if (form == null) {
 65  0
                 UserSession userSession =
 66  
                         (UserSession) request.getSession().getAttribute(KRADConstants.USER_SESSION_KEY);
 67  0
                 form = KRADServiceLocatorWeb.getSessionDocumentService()
 68  
                         .getDocumentForm(docId, formKeyParam, userSession, request.getRemoteAddr());
 69  
             }
 70  
         }
 71  0
         return form;
 72  
     }
 73  
 
 74  
     /**
 75  
      * Configures the <code>ModelAndView</code> instance containing the form
 76  
      * data and pointing to the UIF generic spring view
 77  
      *
 78  
      * @param form - Form instance containing the model data
 79  
      * @param viewId - Id of the View to return
 80  
      * @param pageId - Id of the page within the view that should be rendered, can
 81  
      * be left blank in which the current or default page is rendered
 82  
      * @return ModelAndView object with the contained form
 83  
      */
 84  
     public static ModelAndView getUIFModelAndView(UifFormBase form, String viewId, String pageId) {
 85  
         // update form with the requested view id and page
 86  0
         form.setViewId(viewId);
 87  0
         if (StringUtils.isNotBlank(pageId)) {
 88  0
             form.setPageId(pageId);
 89  
         }
 90  
 
 91  
         // create the spring return object pointing to View.jsp
 92  0
         ModelAndView modelAndView = new ModelAndView();
 93  0
         modelAndView.addObject(UifConstants.DEFAULT_MODEL_NAME, form);
 94  0
         modelAndView.setViewName(UifConstants.SPRING_VIEW_ID);
 95  
 
 96  0
         return modelAndView;
 97  
     }
 98  
 
 99  
     public static ModelAndView getComponentModelAndView(Component component, Object model) {
 100  0
         ModelAndView modelAndView = new ModelAndView();
 101  0
         modelAndView.addObject(UifConstants.DEFAULT_MODEL_NAME, model);
 102  0
         modelAndView.addObject("Component", component);
 103  0
         modelAndView.setViewName("ComponentUpdate");
 104  
 
 105  0
         return modelAndView;
 106  
     }
 107  
 
 108  
     /**
 109  
      * After the controller logic is executed, the form is placed into session
 110  
      * and the corresponding view is prepared for rendering
 111  
      */
 112  
     public static void postControllerHandle(HttpServletRequest request, HttpServletResponse response, Object handler,
 113  
             ModelAndView modelAndView) throws Exception {
 114  0
         if (handler instanceof UifControllerBase && (modelAndView != null)) {
 115  0
             UifControllerBase controller = (UifControllerBase) handler;
 116  0
             UifFormBase form = null;
 117  
 
 118  
             //Check to see if this is a full view request
 119  0
             if (modelAndView.getViewName().equals(UifConstants.SPRING_VIEW_ID)) {
 120  0
                 Object model = modelAndView.getModelMap().get(UifConstants.DEFAULT_MODEL_NAME);
 121  0
                 if (model instanceof UifFormBase) {
 122  0
                     form = (UifFormBase) model;
 123  
 
 124  0
                     View view = form.getView();
 125  
 
 126  
                     //Determining the property name to use as part of the breadcrumb/title
 127  0
                     view.determineViewLabelPropertyName();
 128  
 
 129  
                     //Main history/breadcrumb tracking support
 130  0
                     History history = form.getFormHistory();
 131  0
                     if (history == null || request.getMethod().equals("GET")) {
 132  0
                         history = new History();
 133  0
                         history.setHomewardPath(view.getBreadcrumbs().getHomewardPathList());
 134  0
                         history.setAppendHomewardPath(view.getBreadcrumbs().isDisplayHomewardPath());
 135  0
                         history.setAppendPassedHistory(view.getBreadcrumbs().isDisplayPassedHistory());
 136  
 
 137  
                         //Passed settings ALWAYS override the defaults
 138  0
                         if (StringUtils.isNotBlank(request.getParameter(UifConstants.UrlParams.SHOW_HOME))) {
 139  0
                             history.setAppendHomewardPath(
 140  
                                     Boolean.parseBoolean(request.getParameter(UifConstants.UrlParams.SHOW_HOME)));
 141  
                         }
 142  0
                         if (StringUtils.isNotBlank(request.getParameter(UifConstants.UrlParams.SHOW_HISTORY))) {
 143  0
                             history.setAppendPassedHistory(
 144  
                                     Boolean.parseBoolean(request.getParameter(UifConstants.UrlParams.SHOW_HISTORY)));
 145  
                         }
 146  
 
 147  0
                         history.setCurrent(form, request);
 148  0
                         history.buildHistoryFromParameterString(request.getParameter(UifConstants.UrlParams.HISTORY));
 149  0
                         form.setFormHistory(history);
 150  
                     }
 151  
 
 152  0
                     form.setPreviousView(null);
 153  
 
 154  
                     //Store form to session and persist document form to db as well
 155  0
                     request.getSession().setAttribute(form.getFormKey(), model);
 156  0
                     if (form instanceof DocumentFormBase) {
 157  0
                         UserSession userSession =
 158  
                                 (UserSession) request.getSession().getAttribute(KRADConstants.USER_SESSION_KEY);
 159  0
                         getSessionDocumentService()
 160  
                                 .setDocumentForm((DocumentFormBase) form, userSession, request.getRemoteAddr());
 161  
                     }
 162  
 
 163  
                     // perform authorization of controller method
 164  0
                     checkMethodToCallAuthorization(request, controller, form);
 165  
 
 166  
                     // prepare view contained in form
 167  0
                     prepareViewForRendering(form);
 168  
                 }
 169  
             }
 170  
         }
 171  0
     }
 172  
 
 173  
     /**
 174  
      * Verify the user is authorized to invoke the controller method according
 175  
      * to the module that owns the functionality. This is done post handle to be
 176  
      * able to access the form and whatever processing was done TODO: should
 177  
      * this be throwing some exception?
 178  
      *
 179  
      * @param request - current HTTP request containing method to call parameter
 180  
      * @param controller - controller that was invoked
 181  
      * @param form - form instance containing the data
 182  
      */
 183  
     public static void checkMethodToCallAuthorization(HttpServletRequest request, UifControllerBase controller,
 184  
             UifFormBase form) {
 185  
         // currently methodToCall must be a regularly parseable request
 186  
         // parameter, so just get from request
 187  0
         String methodToCall = request.getParameter(KRADConstants.DISPATCH_REQUEST_PARAMETER);
 188  
 
 189  0
         if (!controller.getMethodToCallsToNotCheckAuthorization().contains(methodToCall)) {
 190  0
             if (LOG.isDebugEnabled()) {
 191  0
                 LOG.debug("'" + methodToCall + "' not in set of excempt methods: " +
 192  
                         controller.getMethodToCallsToNotCheckAuthorization());
 193  
             }
 194  
 
 195  0
             controller.checkAuthorization(form, methodToCall);
 196  
         } else {
 197  0
             if (LOG.isDebugEnabled()) {
 198  0
                 LOG.debug("'" + methodToCall + "' is exempt from auth checks.");
 199  
             }
 200  
         }
 201  0
     }
 202  
 
 203  
     /**
 204  
      * Prepares the <code>View</code> instance contained on the form for
 205  
      * rendering
 206  
      *
 207  
      * <p>
 208  
      * First a check is made to verify the view instance contained on the form
 209  
      * has the same id as the view id on the form (id that was requested), if
 210  
      * not a new view instance is retrieved for that view id. Then a check on
 211  
      * the view status is made to determine if we need to run the full view
 212  
      * life-cycle (in the case of a finalized view), or just the build steps
 213  
      * (apply model and finalize). Finally the page is set on the view to
 214  
      * reflect the page that was requested
 215  
      * </p>
 216  
      *
 217  
      * @param form - form instance containing the data and view instance
 218  
      */
 219  
     public static void prepareViewForRendering(UifFormBase form) {
 220  
         // if we don't have the view instance or a different view was
 221  
         // requested get new instance from the view service
 222  0
         View view = form.getView();
 223  0
         String viewId = form.getViewId();
 224  0
         if ((view == null) || !StringUtils.equals(viewId, view.getId())) {
 225  0
             if (LOG.isDebugEnabled()) {
 226  0
                 LOG.debug("Getting new view instance for view id: " + viewId);
 227  
             }
 228  
 
 229  0
             view = getViewService().getView(viewId, form.getViewRequestParameters());
 230  
 
 231  
             // view changed so force full render
 232  0
             form.setRenderFullView(true);
 233  
         }
 234  
 
 235  
         // if view status is final we need to rebuild (build fresh)
 236  0
         if (StringUtils.equals(UifConstants.ViewStatus.FINAL, view.getViewStatus())) {
 237  0
             if (LOG.isDebugEnabled()) {
 238  0
                 LOG.debug("Rebuilding view due to final status, view id: " + viewId);
 239  
             }
 240  
 
 241  0
             view = getViewService().rebuildView(viewId, form, form.getViewRequestParameters());
 242  
         } else {
 243  
             // update the view with the model data
 244  0
             getViewService().buildView(view, form);
 245  
         }
 246  
 
 247  
         // set dirty flag
 248  0
         form.setValidateDirty(view.isValidateDirty());
 249  
 
 250  
         // set view page to page requested on form
 251  0
         if (StringUtils.isNotBlank(form.getPageId())) {
 252  0
             view.setCurrentPageId(form.getPageId());
 253  
         }
 254  0
     }
 255  
 
 256  
     protected static SessionDocumentService getSessionDocumentService() {
 257  0
         return KRADServiceLocatorWeb.getSessionDocumentService();
 258  
     }
 259  
 
 260  
     protected static ViewService getViewService() {
 261  0
         return KRADServiceLocatorWeb.getViewService();
 262  
     }
 263  
 }