Coverage Report - org.kuali.rice.kew.rule.web.RuleQuickLinksAction
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleQuickLinksAction
0%
0/61
0%
0/24
1.385
RuleQuickLinksAction$1
N/A
N/A
1.385
RuleQuickLinksAction$DocumentTypeQuickLinksStructure
0%
0/33
0%
0/14
1.385
RuleQuickLinksAction$RouteNodeForDisplay
0%
0/40
0%
0/4
1.385
 
 1  
 /*
 2  
  * Copyright 2006-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  
 
 17  
 package org.kuali.rice.kew.rule.web;
 18  
 
 19  
 import org.apache.log4j.Logger;
 20  
 import org.apache.struts.action.ActionForm;
 21  
 import org.apache.struts.action.ActionForward;
 22  
 import org.apache.struts.action.ActionMapping;
 23  
 import org.apache.struts.action.ActionMessages;
 24  
 import org.kuali.rice.core.api.config.property.ConfigContext;
 25  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 26  
 import org.kuali.rice.kew.doctype.service.DocumentTypeService;
 27  
 import org.kuali.rice.kew.engine.node.BranchPrototype;
 28  
 import org.kuali.rice.kew.engine.node.RouteNode;
 29  
 import org.kuali.rice.kew.engine.node.RouteNodeConfigParam;
 30  
 import org.kuali.rice.kew.rule.RuleBaseValues;
 31  
 import org.kuali.rice.kew.rule.bo.RuleTemplate;
 32  
 import org.kuali.rice.kew.rule.service.RuleService;
 33  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 34  
 import org.kuali.rice.kew.util.KEWConstants;
 35  
 import org.kuali.rice.kew.web.KewKualiAction;
 36  
 import org.kuali.rice.kim.bo.Group;
 37  
 import org.kuali.rice.kim.bo.role.dto.KimPermissionInfo;
 38  
 import org.kuali.rice.kim.bo.role.dto.KimResponsibilityInfo;
 39  
 import org.kuali.rice.kim.service.KIMServiceLocator;
 40  
 import org.kuali.rice.kim.util.KimConstants;
 41  
 import org.kuali.rice.kns.service.DocumentHelperService;
 42  
 import org.kuali.rice.kns.service.KNSServiceLocatorWeb;
 43  
 import org.kuali.rice.kns.service.MaintenanceDocumentDictionaryService;
 44  
 import org.kuali.rice.kns.util.GlobalVariables;
 45  
 import org.kuali.rice.kns.util.KNSConstants;
 46  
 
 47  
 import javax.servlet.http.HttpServletRequest;
 48  
 import javax.servlet.http.HttpServletResponse;
 49  
 import java.util.ArrayList;
 50  
 import java.util.HashMap;
 51  
 import java.util.Iterator;
 52  
 import java.util.List;
 53  
 import java.util.Map;
 54  
 
 55  
 
 56  
 /**
 57  
  * A Struts Action for building and interacting with the Rule Quick Links.
 58  
  *
 59  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 60  
  */
 61  0
 public class RuleQuickLinksAction extends KewKualiAction {
 62  
 
 63  0
         private static final Logger LOG = Logger.getLogger(RuleQuickLinksAction.class);
 64  
         
 65  
         private MaintenanceDocumentDictionaryService maintenanceDocumentDictionaryService;
 66  
         private DocumentHelperService documentHelperService;
 67  
 
 68  
     public ActionForward start(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 69  0
             makeLookupPathParam(mapping, request);
 70  0
             establishRequiredState(request, form);
 71  0
         return mapping.findForward("basic");
 72  
     }
 73  
 
 74  
     @SuppressWarnings("unchecked")
 75  
         public ActionMessages establishRequiredState(HttpServletRequest request, ActionForm form) throws Exception {
 76  0
         RuleQuickLinksForm qlForm = (RuleQuickLinksForm) form;
 77  
         List<DocumentType> documentTypes;
 78  0
         if (qlForm.getRootDocTypeName() != null) {
 79  0
                 documentTypes = new ArrayList<DocumentType>();
 80  0
             DocumentType docType = getDocumentTypeService().findByName(qlForm.getRootDocTypeName());
 81  0
             documentTypes.add(docType);
 82  0
             request.setAttribute("renderOpened", Boolean.TRUE);
 83  0
         } else {
 84  0
                 documentTypes = getDocumentTypeService().findAllCurrentRootDocuments();
 85  
         }
 86  0
         qlForm.setDocumentTypeQuickLinksStructures(getDocumentTypeDataStructure(documentTypes));
 87  0
             int shouldDisplayCount = 0;
 88  0
         for ( DocumentTypeQuickLinksStructure dt : qlForm.getDocumentTypeQuickLinksStructures() ) {
 89  0
                 if ( dt.isShouldDisplay() ) {
 90  0
                         shouldDisplayCount++;
 91  
                 }
 92  
         }
 93  0
             if ( shouldDisplayCount == 1 ) {
 94  0
             request.setAttribute("renderOpened", Boolean.TRUE);
 95  
             }
 96  0
         String documentTypeName = getMaintenanceDocumentDictionaryService().getDocumentTypeName(DocumentType.class);
 97  
         try {
 98  0
             if ((documentTypeName != null) && getDocumentHelperService().getDocumentAuthorizer(documentTypeName).canInitiate(documentTypeName, GlobalVariables.getUserSession().getPerson())) {
 99  0
                 qlForm.setCanInitiateDocumentTypeDocument( true );
 100  
             }
 101  0
         } catch (Exception ex) {
 102  
                         // just skip - and don't display links
 103  0
                 LOG.error( "Unable to check initiation permission for "+ documentTypeName, ex );
 104  0
                 }
 105  
 
 106  0
         return null;
 107  
     }
 108  
 
 109  
     public ActionForward addDelegationRule(ActionMapping mapping, ActionForm form, HttpServletRequest request, HttpServletResponse response) throws Exception {
 110  0
             ActionForward result = null;
 111  
             
 112  0
         Long ruleTemplateId = new Long(request.getParameter("delegationRuleBaseValues.ruleTemplate.ruleTemplateId"));
 113  0
         String docTypeName = request.getParameter("delegationRuleBaseValues.documentType.name");
 114  0
         List rules = getRuleService().search(docTypeName, null, ruleTemplateId, "", null, null, Boolean.FALSE, Boolean.TRUE, new HashMap(), null);
 115  
         
 116  0
         if (rules.size() == 1) {
 117  0
             RuleBaseValues rule = (RuleBaseValues)rules.get(0);
 118  0
             String url = ConfigContext.getCurrentContextConfig().getKEWBaseURL() +
 119  
                 "/DelegateRule.do?methodToCall=start" +
 120  
                     "&parentRuleId=" + rule.getRuleBaseValuesId();
 121  0
             result = new ActionForward(url, true);
 122  0
         } else {
 123  0
                 makeLookupPathParam(mapping, request);
 124  0
                 result = new ActionForward(ConfigContext.getCurrentContextConfig().getKRBaseURL() + 
 125  
                                 "/lookup.do?methodToCall=start&"+ stripMethodToCall(request.getQueryString()), true);
 126  
         }
 127  
         
 128  0
         return result;
 129  
     }
 130  
 
 131  
         private List getDocumentTypeDataStructure(List rootDocuments) {
 132  0
                 List documentTypeQuickLinksStructures = new ArrayList();
 133  0
                 for (Iterator iter = rootDocuments.iterator(); iter.hasNext();) {
 134  0
                         DocumentTypeQuickLinksStructure quickLinkStruct =new DocumentTypeQuickLinksStructure((DocumentType) iter.next());
 135  0
                         if (! quickLinkStruct.getFlattenedNodes().isEmpty() || ! quickLinkStruct.getChildrenDocumentTypes().isEmpty()) {
 136  0
                                 documentTypeQuickLinksStructures.add(quickLinkStruct);
 137  
                         }
 138  
 
 139  0
                 }
 140  
 
 141  0
                 return documentTypeQuickLinksStructures;
 142  
         }
 143  
 
 144  
 
 145  
         /**
 146  
      * A bean to hold a DocumentType with its flattened nodes for rendering purposes
 147  
      * on the quick links.
 148  
      *
 149  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 150  
      */
 151  0
     public static class DocumentTypeQuickLinksStructure {
 152  
         private DocumentType documentType;
 153  0
         private List<RouteNode> flattenedNodes = new ArrayList<RouteNode>();
 154  0
         private List<DocumentTypeQuickLinksStructure> childrenDocumentTypes = new ArrayList<DocumentTypeQuickLinksStructure>();
 155  0
         private List<KimPermissionInfo> permissions = null;
 156  
         
 157  0
         private DocumentTypeQuickLinksStructure(DocumentType documentType) {
 158  0
                         this.documentType = documentType;
 159  0
                         if ( documentType != null ) {
 160  0
                                 List<RouteNode> tempFlattenedNodes = KEWServiceLocator.getRouteNodeService()
 161  
                                                 .getFlattenedNodes( documentType, true );
 162  0
                                 for ( RouteNode routeNode : tempFlattenedNodes ) {
 163  0
                                         if ( routeNode.isFlexRM() || routeNode.isRoleNode() ) {
 164  0
                                                 flattenedNodes.add( new RouteNodeForDisplay( routeNode ) );
 165  
                                         }
 166  
                                 }
 167  0
                                 for ( Iterator<DocumentType> iter = documentType.getChildrenDocTypes().iterator(); iter.hasNext(); ) {
 168  0
                                         childrenDocumentTypes.add( new DocumentTypeQuickLinksStructure( iter.next() ) );
 169  
                                 }
 170  
                         }
 171  0
                 }
 172  
 
 173  
         public List getChildrenDocumentTypes() {
 174  0
             return childrenDocumentTypes;
 175  
         }
 176  
         public void setChildrenDocumentTypes(List<DocumentTypeQuickLinksStructure> childrenDocumentTypes) {
 177  0
             this.childrenDocumentTypes = childrenDocumentTypes;
 178  0
         }
 179  
         public DocumentType getDocumentType() {
 180  0
             return documentType;
 181  
         }
 182  
         public void setDocumentType(DocumentType documentType) {
 183  0
             this.documentType = documentType;
 184  0
         }
 185  
         public List getFlattenedNodes() {
 186  0
             return flattenedNodes;
 187  
         }
 188  
         public void setFlattenedNodes(List<RouteNode> flattenedNodes) {
 189  0
             this.flattenedNodes = flattenedNodes;
 190  0
         }
 191  
         public boolean isShouldDisplay() {
 192  
 //                        if (flattenedNodes.isEmpty()) {
 193  
 //                                for (DocumentTypeQuickLinksStructure docType : childrenDocumentTypes) {
 194  
 //                                        if (docType.isShouldDisplay()) {
 195  
 //                                                return true;
 196  
 //                                        }
 197  
 //                                }
 198  
 //                                return false;
 199  
 //                        }
 200  0
                         return true;
 201  
                 }
 202  
 
 203  
                 public List<KimPermissionInfo> getPermissions() {
 204  0
                         if ( permissions == null ) {
 205  
 //                                Logger sqlLogger = Logger.getLogger(SqlGeneratorSuffixableImpl.class);
 206  
 //                                sqlLogger.setLevel( Level.DEBUG );
 207  0
                                 Map<String,String> searchCriteria = new HashMap<String,String>();
 208  0
                                 searchCriteria.put("attributeName", "documentTypeName" );
 209  0
                                 searchCriteria.put("active", "Y");
 210  0
                                 searchCriteria.put("detailCriteria",
 211  
                                                 KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+getDocumentType().getName()
 212  
                                                 );
 213  0
                                 permissions = KIMServiceLocator.getPermissionService().lookupPermissions( searchCriteria, false );
 214  
 //                                sqlLogger.setLevel( Level.INFO );
 215  
                         }
 216  0
                         return permissions;
 217  
                 }
 218  
                 
 219  
                 public boolean isHasRelatedPermissions() {
 220  0
                         return !getPermissions().isEmpty();
 221  
                 }
 222  
                 
 223  
                 public int getRelatedPermissionCount() {
 224  0
                         return getPermissions().size();
 225  
                 }
 226  
     }
 227  
 
 228  0
     public static class RouteNodeForDisplay extends RouteNode {
 229  
             private static final long serialVersionUID = 1L;
 230  
                 private RouteNode baseNode;
 231  
             
 232  0
                 public RouteNodeForDisplay( RouteNode baseNode ) {
 233  0
                         this.baseNode = baseNode;
 234  0
                 }
 235  
 
 236  
                 public boolean equals(Object obj) {
 237  0
                         return this.baseNode.equals(obj);
 238  
                 }
 239  
 
 240  
                 public String getActivationType() {
 241  0
                         return this.baseNode.getActivationType();
 242  
                 }
 243  
 
 244  
                 public BranchPrototype getBranch() {
 245  0
                         return this.baseNode.getBranch();
 246  
                 }
 247  
 
 248  
                 public List<RouteNodeConfigParam> getConfigParams() {
 249  0
                         return this.baseNode.getConfigParams();
 250  
                 }
 251  
 
 252  
                 public String getContentFragment() {
 253  0
                         return this.baseNode.getContentFragment();
 254  
                 }
 255  
 
 256  
                 public DocumentType getDocumentType() {
 257  0
                         return this.baseNode.getDocumentType();
 258  
                 }
 259  
 
 260  
                 public Long getDocumentTypeId() {
 261  0
                         return this.baseNode.getDocumentTypeId();
 262  
                 }
 263  
                 public Group getExceptionWorkgroup() {
 264  0
                         return this.baseNode.getExceptionWorkgroup();
 265  
                 }
 266  
                 public String getExceptionWorkgroupId() {
 267  0
                         return this.baseNode.getExceptionWorkgroupId();
 268  
                 }
 269  
                 public String getExceptionWorkgroupName() {
 270  0
                         return this.baseNode.getExceptionWorkgroupName();
 271  
                 }
 272  
                 public Boolean getFinalApprovalInd() {
 273  0
                         return this.baseNode.getFinalApprovalInd();
 274  
                 }
 275  
                 public Integer getLockVerNbr() {
 276  0
                         return this.baseNode.getLockVerNbr();
 277  
                 }
 278  
                 public Boolean getMandatoryRouteInd() {
 279  0
                         return this.baseNode.getMandatoryRouteInd();
 280  
                 }
 281  
                 public List<RouteNode> getNextNodes() {
 282  0
                         return this.baseNode.getNextNodes();
 283  
                 }
 284  
                 public String getNodeType() {
 285  0
                         return this.baseNode.getNodeType();
 286  
                 }
 287  
                 public List<RouteNode> getPreviousNodes() {
 288  0
                         return this.baseNode.getPreviousNodes();
 289  
                 }
 290  
                 public String getRouteMethodCode() {
 291  0
                         return this.baseNode.getRouteMethodCode();
 292  
                 }
 293  
                 public String getRouteMethodName() {
 294  0
                         return this.baseNode.getRouteMethodName();
 295  
                 }
 296  
                 public Long getRouteNodeId() {
 297  0
                         return this.baseNode.getRouteNodeId();
 298  
                 }
 299  
                 public String getRouteNodeName() {
 300  0
                         return this.baseNode.getRouteNodeName();
 301  
                 }
 302  
                 public RuleTemplate getRuleTemplate() {
 303  0
                         return this.baseNode.getRuleTemplate();
 304  
                 }
 305  
                 public int hashCode() {
 306  0
                         return this.baseNode.hashCode();
 307  
                 }
 308  
                 public boolean isExceptionGroupDefined() {
 309  0
                         return this.baseNode.isExceptionGroupDefined();
 310  
                 }
 311  
                 public boolean isFlexRM() {
 312  0
                         return this.baseNode.isFlexRM();
 313  
                 }
 314  
                 public boolean isRoleNode() {
 315  0
                         return this.baseNode.isRoleNode();
 316  
                 }
 317  
                 public String toString() {
 318  0
                         return this.baseNode.toString();
 319  
                 }
 320  
                 
 321  0
                 private List<? extends KimResponsibilityInfo> responsibilities = null;
 322  
                 
 323  
                 public List<? extends KimResponsibilityInfo> getResponsibilities() {
 324  0
                         if ( responsibilities == null ) {
 325  0
                                 Map<String,String> searchCriteria = new HashMap<String,String>();
 326  0
                                 searchCriteria.put("template.namespaceCode", KNSConstants.KUALI_RICE_WORKFLOW_NAMESPACE);
 327  0
                                 searchCriteria.put("template.name", KEWConstants.DEFAULT_RESPONSIBILITY_TEMPLATE_NAME);
 328  0
                                 searchCriteria.put("active", "Y");
 329  0
                                 searchCriteria.put("detailCriteria",
 330  
                                                 KimConstants.AttributeConstants.DOCUMENT_TYPE_NAME+"="+getDocumentType().getName()
 331  
                                                 + ","
 332  
                                                 + KimConstants.AttributeConstants.ROUTE_NODE_NAME+"="+getRouteNodeName() );
 333  0
                                 responsibilities = KIMServiceLocator.getResponsibilityService().lookupResponsibilityInfo(searchCriteria, true);
 334  
                         }
 335  0
                         return responsibilities;
 336  
                 }
 337  
                 
 338  
                 public int getResponsibilityCount() {
 339  0
                         return getResponsibilities().size();
 340  
                 }
 341  
                 
 342  
                 public boolean isHasResponsibility() {
 343  0
                         return !getResponsibilities().isEmpty();
 344  
                 }
 345  
     }
 346  
     
 347  
     private void makeLookupPathParam(ActionMapping mapping, HttpServletRequest request) {
 348  0
             String basePath = request.getScheme() + "://" + request.getServerName() + ":" + request.getServerPort() + request.getContextPath() + mapping.getModuleConfig().getPrefix();
 349  0
             request.setAttribute("basePath", basePath);
 350  0
     }
 351  
 
 352  
     private String stripMethodToCall(String queryString) {
 353  0
         return queryString.replaceAll("methodToCall=addDelegationRule&", "");
 354  
     }
 355  
 
 356  
     private DocumentTypeService getDocumentTypeService() {
 357  0
         return KEWServiceLocator.getDocumentTypeService();
 358  
     }
 359  
 
 360  
     private RuleService getRuleService() {
 361  0
             return KEWServiceLocator.getRuleService();
 362  
     }
 363  
     
 364  
         public DocumentHelperService getDocumentHelperService() {
 365  0
                 if(documentHelperService == null){
 366  0
                         documentHelperService = KNSServiceLocatorWeb.getDocumentHelperService();
 367  
                 }
 368  0
                 return documentHelperService;
 369  
         }
 370  
 
 371  
         public MaintenanceDocumentDictionaryService getMaintenanceDocumentDictionaryService() {
 372  0
                 if(maintenanceDocumentDictionaryService == null){
 373  0
                         maintenanceDocumentDictionaryService = KNSServiceLocatorWeb.getMaintenanceDocumentDictionaryService();
 374  
                 }
 375  0
                 return maintenanceDocumentDictionaryService;
 376  
         }
 377  
 
 378  
         /**
 379  
          * @see org.kuali.rice.kns.web.struts.action.KualiAction#toggleTab(org.apache.struts.action.ActionMapping, org.apache.struts.action.ActionForm, javax.servlet.http.HttpServletRequest, javax.servlet.http.HttpServletResponse)
 380  
          */
 381  
         @Override
 382  
         public ActionForward toggleTab(ActionMapping mapping, ActionForm form,
 383  
                         HttpServletRequest request, HttpServletResponse response)
 384  
                         throws Exception {
 385  
                 
 386  0
                 establishRequiredState(request, form);
 387  0
                 return super.toggleTab(mapping, form, request, response);
 388  
         }
 389  
 
 390  
 }