Coverage Report - org.kuali.rice.kns.web.struts.action.QuestionPromptAction
 
Classes in this File Line Coverage Branch Coverage Complexity
QuestionPromptAction
0%
0/40
0%
0/18
3
 
 1  
 /**
 2  
  * Copyright 2005-2011 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 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.kns.web.struts.form.QuestionPromptForm;
 24  
 import org.kuali.rice.krad.exception.AuthorizationException;
 25  
 import org.kuali.rice.krad.util.GlobalVariables;
 26  
 import org.kuali.rice.krad.util.KRADConstants;
 27  
 import org.kuali.rice.krad.util.UrlFactory;
 28  
 
 29  
 import javax.servlet.http.HttpServletRequest;
 30  
 import javax.servlet.http.HttpServletResponse;
 31  
 import java.util.Properties;
 32  
 
 33  
 /**
 34  
  * This class handles Actions for QuestionPromp.
 35  
  *
 36  
  *
 37  
  */
 38  0
 public class QuestionPromptAction extends KualiAction {
 39  
         
 40  
     /**
 41  
          * This overridden method ...
 42  
          * 
 43  
          * @see org.kuali.rice.krad.web.struts.action.KualiAction#checkAuthorization(org.apache.struts.action.ActionForm, java.lang.String)
 44  
          */
 45  
         @Override
 46  
         protected void checkAuthorization(ActionForm form, String methodToCall)
 47  
                         throws AuthorizationException {
 48  
                 // no authorization required
 49  0
         }
 50  
 
 51  
         /**
 52  
      * This method is the entry point action for the question prompt component.
 53  
      *
 54  
      * @param mapping
 55  
      * @param form
 56  
      * @param request
 57  
      * @param response
 58  
      * @return ActionForward
 59  
      * @throws Exception
 60  
      */
 61  
     public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 62  
         // deal with the fact that some requests might be reposts from errors on the reason field
 63  0
         processErrorMessages(request);
 64  
 
 65  0
         return mapping.findForward(RiceConstants.MAPPING_BASIC);
 66  
     }
 67  
 
 68  
     /**
 69  
      * This method handles gathering all input and passing control back to the caller action.
 70  
      *
 71  
      * @param mapping
 72  
      * @param form
 73  
      * @param request
 74  
      * @param response
 75  
      * @return ActionForward
 76  
      * @throws Exception
 77  
      */
 78  
     public ActionForward processAnswer(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 79  0
         QuestionPromptForm questionPromptForm = (QuestionPromptForm) form;
 80  
 
 81  0
         Properties parameters = new Properties();
 82  
 
 83  0
         parameters.put(KRADConstants.DOC_FORM_KEY, questionPromptForm.getFormKey());
 84  0
         parameters.put(KRADConstants.QUESTION_CLICKED_BUTTON, getSelectedButton(request));
 85  0
         parameters.put(KRADConstants.METHOD_TO_CALL_ATTRIBUTE, questionPromptForm.getCaller());
 86  0
         parameters.put(KRADConstants.REFRESH_CALLER, KRADConstants.QUESTION_REFRESH);
 87  0
         parameters.put(KRADConstants.QUESTION_INST_ATTRIBUTE_NAME, questionPromptForm.getQuestionIndex());
 88  0
         if(questionPromptForm.getDocNum() != null){
 89  0
                 parameters.put(KRADConstants.DOC_NUM, questionPromptForm.getDocNum());
 90  
         }
 91  
         
 92  0
         if (StringUtils.isNotBlank(questionPromptForm.getQuestionAnchor())) {
 93  0
             parameters.put(KRADConstants.ANCHOR, questionPromptForm.getQuestionAnchor());
 94  
         }
 95  
 
 96  0
         String context = questionPromptForm.getContext();
 97  0
         if (StringUtils.isNotBlank(context)) {
 98  0
             parameters.put(KRADConstants.QUESTION_CONTEXT, context);
 99  
         }
 100  0
         String reason = questionPromptForm.getReason();
 101  0
         if (StringUtils.isNotBlank(reason)) {
 102  0
             parameters.put(KRADConstants.QUESTION_REASON_ATTRIBUTE_NAME, reason);
 103  
         }
 104  0
         if (StringUtils.isNotBlank(questionPromptForm.getMethodToCallPath())) {
 105  
             // For header tab navigation. Leaving it blank will just kick user back to page.
 106  0
             parameters.put(questionPromptForm.getMethodToCallPath(), "present");
 107  
         }
 108  
 
 109  0
         String returnUrl = UrlFactory.parameterizeUrl(questionPromptForm.getBackLocation(), parameters);
 110  
 
 111  0
         return new ActionForward(returnUrl, true);
 112  
     }
 113  
 
 114  
     /**
 115  
      * Parses the method to call attribute to pick off the button number that was pressed.
 116  
      *
 117  
      * @param request
 118  
      * @return int
 119  
      */
 120  
     private String getSelectedButton(HttpServletRequest request) {
 121  0
         String selectedButton = "-1";
 122  0
         String parameterName = (String) request.getAttribute(KRADConstants.METHOD_TO_CALL_ATTRIBUTE);
 123  0
         if (StringUtils.isNotBlank(parameterName)) {
 124  0
             selectedButton = StringUtils.substringBetween(parameterName, ".button", ".");
 125  
         }
 126  
 
 127  0
         return selectedButton;
 128  
     }
 129  
 
 130  
     /**
 131  
      * This method handles processing any error messages coming in the door.
 132  
      *
 133  
      * @param request
 134  
      */
 135  
     private void processErrorMessages(HttpServletRequest request) {
 136  0
         String errorKey = request.getParameter(KRADConstants.QUESTION_ERROR_KEY);
 137  0
         String errorPropertyName = request.getParameter(KRADConstants.QUESTION_ERROR_PROPERTY_NAME);
 138  0
         String errorParameter = request.getParameter(KRADConstants.QUESTION_ERROR_PARAMETER);
 139  
 
 140  0
         if (StringUtils.isNotBlank(errorKey)) {
 141  0
             if (StringUtils.isBlank(errorPropertyName)) {
 142  0
                 throw new IllegalStateException("Both the errorKey and the errorPropertyName must be filled in, " + "in order for errors to be displayed by the question component.  Currently, " + "only the errorKey has a value specified.");
 143  
             }
 144  
             else {
 145  0
                 if (StringUtils.isBlank(errorParameter)) {
 146  0
                     GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(errorPropertyName, errorKey);
 147  
                 }
 148  
                 else {
 149  0
                     GlobalVariables.getMessageMap().putErrorWithoutFullErrorPath(errorPropertyName, errorKey, errorParameter);
 150  
                 }
 151  
             }
 152  
         }
 153  0
     }
 154  
 }