Coverage Report - org.kuali.rice.kew.xml.RuleXmlParser
 
Classes in this File Line Coverage Branch Coverage Complexity
RuleXmlParser
0%
0/296
0%
0/154
7.5
 
 1  
 /*
 2  
  * Copyright 2005-2007 The Kuali Foundation
 3  
  *
 4  
  *
 5  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 6  
  * you may not use this file except in compliance with the License.
 7  
  * You may obtain a copy of the License at
 8  
  *
 9  
  * http://www.opensource.org/licenses/ecl2.php
 10  
  *
 11  
  * Unless required by applicable law or agreed to in writing, software
 12  
  * distributed under the License is distributed on an "AS IS" BASIS,
 13  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 14  
  * See the License for the specific language governing permissions and
 15  
  * limitations under the License.
 16  
  */
 17  
 package org.kuali.rice.kew.xml;
 18  
 
 19  
 import org.apache.commons.lang.StringUtils;
 20  
 import org.jdom.Document;
 21  
 import org.jdom.Element;
 22  
 import org.jdom.JDOMException;
 23  
 import org.kuali.rice.core.api.util.RiceConstants;
 24  
 import org.kuali.rice.core.api.util.xml.XmlException;
 25  
 import org.kuali.rice.core.api.util.xml.XmlHelper;
 26  
 import org.kuali.rice.kew.api.action.ActionRequestPolicy;
 27  
 import org.kuali.rice.kew.api.action.DelegationType;
 28  
 import org.kuali.rice.kew.doctype.bo.DocumentType;
 29  
 import org.kuali.rice.kew.rule.Role;
 30  
 import org.kuali.rice.kew.rule.RuleBaseValues;
 31  
 import org.kuali.rice.kew.rule.RuleDelegation;
 32  
 import org.kuali.rice.kew.rule.RuleExpressionDef;
 33  
 import org.kuali.rice.kew.rule.RuleResponsibility;
 34  
 import org.kuali.rice.kew.rule.bo.RuleTemplate;
 35  
 import org.kuali.rice.kew.service.KEWServiceLocator;
 36  
 import org.kuali.rice.kew.util.KEWConstants;
 37  
 import org.kuali.rice.kew.util.Utilities;
 38  
 import org.kuali.rice.kim.api.group.Group;
 39  
 import org.kuali.rice.kim.api.identity.principal.Principal;
 40  
 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
 41  
 import org.xml.sax.SAXException;
 42  
 
 43  
 import javax.xml.parsers.ParserConfigurationException;
 44  
 import java.io.IOException;
 45  
 import java.io.InputStream;
 46  
 import java.sql.Timestamp;
 47  
 import java.text.ParseException;
 48  
 import java.util.ArrayList;
 49  
 import java.util.Iterator;
 50  
 import java.util.List;
 51  
 
 52  
 import static org.kuali.rice.core.api.impex.xml.XmlConstants.*;
 53  
 
 54  
 /**
 55  
  * Parses rules from XML.
 56  
  *
 57  
  * @see RuleBaseValues
 58  
  *
 59  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 60  
  */
 61  0
 public class RuleXmlParser {
 62  
 
 63  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(RuleXmlParser.class);
 64  
 
 65  
     /**
 66  
      * Priority to use if rule responsibility omits priority
 67  
      */
 68  
     private static final int DEFAULT_RULE_PRIORITY = 1;
 69  
     /**
 70  
      * Value of Force Action flag if omitted; default to false, we will NOT force action for approvals
 71  
      */
 72  
     private static final boolean DEFAULT_FORCE_ACTION = false;
 73  
     /**
 74  
      * Default approve policy, if omitted; defaults to FIRST_APPROVE, the request will be satisfied by the first approval
 75  
      */
 76  0
     private static final String DEFAULT_APPROVE_POLICY = ActionRequestPolicy.FIRST.getCode();
 77  
     /**
 78  
      * Default action requested, if omitted; defaults to "A"pprove
 79  
      */
 80  
     private static final String DEFAULT_ACTION_REQUESTED = KEWConstants.ACTION_REQUEST_APPROVE_REQ;
 81  
 
 82  
     public List<RuleDelegation> parseRuleDelegations(InputStream input) throws IOException, XmlException {
 83  
             try {
 84  0
             Document doc = XmlHelper.trimSAXXml(input);
 85  0
             Element root = doc.getRootElement();
 86  0
             return parseRuleDelegations(root);
 87  0
         } catch (JDOMException e) {
 88  0
             throw new XmlException("Parse error.", e);
 89  0
         } catch (SAXException e){
 90  0
             throw new XmlException("Parse error.",e);
 91  0
         } catch(ParserConfigurationException e){
 92  0
             throw new XmlException("Parse error.",e);
 93  
         }
 94  
     }
 95  
     
 96  
     public List<RuleBaseValues> parseRules(InputStream input) throws IOException, XmlException {
 97  
         try {
 98  0
             Document doc = XmlHelper.trimSAXXml(input);
 99  0
             Element root = doc.getRootElement();
 100  0
             return parseRules(root);
 101  0
         } catch (JDOMException e) {
 102  0
             throw new XmlException("Parse error.", e);
 103  0
         } catch (SAXException e){
 104  0
             throw new XmlException("Parse error.",e);
 105  0
         } catch(ParserConfigurationException e){
 106  0
             throw new XmlException("Parse error.",e);
 107  
         }
 108  
     }
 109  
 
 110  
     /**
 111  
      * Parses and saves rules
 112  
      * @param element top-level 'data' element which should contain a <rules> child element
 113  
      * @throws XmlException
 114  
      */
 115  
     public List<RuleBaseValues> parseRules(Element element) throws XmlException {
 116  0
             List<RuleBaseValues> rulesToSave = new ArrayList<RuleBaseValues>();
 117  0
         for (Element rulesElement: (List<Element>) element.getChildren(RULES, RULE_NAMESPACE)) {
 118  0
             for (Element ruleElement: (List<Element>) rulesElement.getChildren(RULE, RULE_NAMESPACE)) {
 119  0
                 RuleBaseValues rule = parseRule(ruleElement);
 120  0
                 rulesToSave.add(rule);
 121  0
             }
 122  
         }
 123  0
         checkForDuplicateRules(rulesToSave);
 124  0
         return KEWServiceLocator.getRuleService().saveRules(rulesToSave, false);
 125  
     }
 126  
     
 127  
     /**
 128  
      * Parses and saves rule delegations
 129  
      * @param element top-level 'data' element which should contain a <rules> child element
 130  
      * @throws XmlException
 131  
      */
 132  
     public List<RuleDelegation> parseRuleDelegations(Element element) throws XmlException {
 133  0
             List<RuleDelegation> ruleDelegationsToSave = new ArrayList<RuleDelegation>();
 134  0
         for (Element ruleDelegationsElement: (List<Element>) element.getChildren(RULE_DELEGATIONS, RULE_NAMESPACE)) {
 135  0
             for (Element ruleDelegationElement: (List<Element>) ruleDelegationsElement.getChildren(RULE_DELEGATION, RULE_NAMESPACE)) {
 136  0
                 RuleDelegation ruleDelegation = parseRuleDelegation(ruleDelegationElement);
 137  0
                 ruleDelegationsToSave.add(ruleDelegation);
 138  0
             }
 139  
         }
 140  
         //checkForDuplicateRuleDelegations(ruleDelegationsToSave);
 141  0
         return KEWServiceLocator.getRuleService().saveRuleDelegations(ruleDelegationsToSave, false);
 142  
     }
 143  
     
 144  
     /**
 145  
      * Checks for rules in the List that duplicate other Rules already in the system 
 146  
      */
 147  
     private void checkForDuplicateRules(List<RuleBaseValues> rules) throws XmlException {
 148  0
             for (RuleBaseValues rule : rules) {
 149  0
                     if (StringUtils.isBlank(rule.getName())) {
 150  0
                             LOG.debug("Checking for rule duplication on an anonymous rule.");
 151  0
                             checkRuleForDuplicate(rule);
 152  
                     }
 153  
             }
 154  0
     }
 155  
     
 156  
     /**
 157  
      * Checks for rule delegations in the List that duplicate other Rules already in the system 
 158  
      */
 159  
     private void checkForDuplicateRuleDelegations(List<RuleDelegation> ruleDelegations) throws XmlException {
 160  0
             for (RuleDelegation ruleDelegation : ruleDelegations) {
 161  0
                     if (StringUtils.isBlank(ruleDelegation.getDelegationRuleBaseValues().getName())) {
 162  0
                             LOG.debug("Checking for rule duplication on an anonymous rule delegation.");
 163  0
                             checkRuleDelegationForDuplicate(ruleDelegation);
 164  
                     }
 165  
             }
 166  0
     }
 167  
 
 168  
     private RuleDelegation parseRuleDelegation(Element element) throws XmlException {
 169  0
             RuleDelegation ruleDelegation = new RuleDelegation();
 170  0
             Element parentResponsibilityElement = element.getChild(PARENT_RESPONSIBILITY, element.getNamespace());
 171  0
             if (parentResponsibilityElement == null) {
 172  0
                     throw new XmlException("parent responsibility was not defined");
 173  
             }
 174  0
             String parentResponsibilityId = parseParentResponsibilityId(parentResponsibilityElement);
 175  0
             String delegationType = element.getChildText(DELEGATION_TYPE, element.getNamespace());
 176  0
         if (delegationType == null || !(delegationType.equals(DelegationType.PRIMARY.getCode()) || delegationType.equals(DelegationType.SECONDARY.getCode()))) {
 177  0
             throw new XmlException("Invalid delegation type specified for delegate rule '" + delegationType + "'");
 178  
         }
 179  
         
 180  0
         ruleDelegation.setResponsibilityId(parentResponsibilityId);
 181  0
         ruleDelegation.setDelegationType(delegationType);
 182  
         
 183  0
         Element ruleElement = element.getChild(RULE, element.getNamespace());
 184  0
         RuleBaseValues rule = parseRule(ruleElement);
 185  0
         rule.setDelegateRule(true);
 186  0
         ruleDelegation.setDelegationRuleBaseValues(rule);
 187  
             
 188  0
             return ruleDelegation;
 189  
     }
 190  
     
 191  
     private String parseParentResponsibilityId(Element element) throws XmlException {
 192  0
             String responsibilityId = element.getChildText(RESPONSIBILITY_ID, element.getNamespace());
 193  0
             if (!StringUtils.isBlank(responsibilityId)) {
 194  0
                     return responsibilityId;
 195  
             }
 196  0
             String parentRuleName = element.getChildText(PARENT_RULE_NAME, element.getNamespace());
 197  0
             if (StringUtils.isBlank(parentRuleName)) {
 198  0
                     throw new XmlException("One of responsibilityId or parentRuleName needs to be defined");
 199  
             }
 200  0
             RuleBaseValues parentRule = KEWServiceLocator.getRuleService().getRuleByName(parentRuleName);
 201  0
             if (parentRule == null) {
 202  0
                     throw new XmlException("Could find the parent rule with name '" + parentRuleName + "'");
 203  
             }
 204  0
             RuleResponsibility ruleResponsibilityNameAndType = parseResponsibilityNameAndType(element);
 205  0
             if (ruleResponsibilityNameAndType == null) {
 206  0
                     throw new XmlException("Could not locate a valid responsibility declaration for the parent responsibility.");
 207  
             }
 208  0
             String parentResponsibilityId = KEWServiceLocator.getRuleService().findResponsibilityIdForRule(parentRuleName, 
 209  
                             ruleResponsibilityNameAndType.getRuleResponsibilityName(),
 210  
                             ruleResponsibilityNameAndType.getRuleResponsibilityType());
 211  0
             if (parentResponsibilityId == null) {
 212  0
                     throw new XmlException("Failed to locate parent responsibility for rule with name '" + parentRuleName + "' and responsibility " + ruleResponsibilityNameAndType);
 213  
             }
 214  0
             return parentResponsibilityId;
 215  
     }
 216  
     
 217  
     /**
 218  
      * Parses, and only parses, a rule definition (be it a top-level rule, or a rule delegation).  This method will
 219  
      * NOT dirty or save any existing data, it is side-effect-free.
 220  
      * @param element the rule element
 221  
      * @param ruleDelegation the ruleDelegation object if this rule is being parsed as a delegation
 222  
      * @return a new RuleBaseValues object which is not yet saved
 223  
      * @throws XmlException
 224  
      */
 225  
     private RuleBaseValues parseRule(Element element) throws XmlException {
 226  0
         String name = element.getChildText(NAME, element.getNamespace());
 227  0
         RuleBaseValues rule = createRule(name);
 228  
         
 229  0
         setDefaultRuleValues(rule);
 230  0
         rule.setName(name);
 231  
         
 232  0
         String toDatestr = element.getChildText( TO_DATE, element.getNamespace());
 233  0
         String fromDatestr = element.getChildText( FROM_DATE, element.getNamespace());
 234  0
         rule.setToDate(formatDate("toDate", toDatestr));
 235  0
         rule.setFromDate(formatDate("fromDate", fromDatestr));
 236  
 
 237  0
         String description = element.getChildText(DESCRIPTION, element.getNamespace());
 238  0
         if (StringUtils.isBlank(description)) {
 239  0
             throw new XmlException("Rule must have a description.");
 240  
         }
 241  
                 
 242  0
         String documentTypeName = element.getChildText(DOCUMENT_TYPE, element.getNamespace());
 243  0
         if (StringUtils.isBlank(documentTypeName)) {
 244  0
                 throw new XmlException("Rule must have a document type.");
 245  
         }
 246  0
         DocumentType documentType = KEWServiceLocator.getDocumentTypeService().findByName(documentTypeName);
 247  0
         if (documentType == null) {
 248  0
                 throw new XmlException("Could not locate document type '" + documentTypeName + "'");
 249  
         }
 250  
 
 251  0
         RuleTemplate ruleTemplate = null;
 252  0
         String ruleTemplateName = element.getChildText(RULE_TEMPLATE, element.getNamespace());        
 253  0
         Element ruleExtensionsElement = element.getChild(RULE_EXTENSIONS, element.getNamespace());
 254  0
         if (!StringUtils.isBlank(ruleTemplateName)) {
 255  0
                 ruleTemplate = KEWServiceLocator.getRuleTemplateService().findByRuleTemplateName(ruleTemplateName);
 256  0
                 if (ruleTemplate == null) {
 257  0
                         throw new XmlException("Could not locate rule template '" + ruleTemplateName + "'");
 258  
                 }
 259  
         } else {
 260  0
                 if (ruleExtensionsElement != null) {
 261  0
                         throw new XmlException("Templateless rules may not have rule extensions");
 262  
                 }
 263  
         }
 264  
 
 265  0
         RuleExpressionDef ruleExpressionDef = null;
 266  0
         Element exprElement = element.getChild(RULE_EXPRESSION, element.getNamespace());
 267  0
         if (exprElement != null) {
 268  0
                 String exprType = exprElement.getAttributeValue("type");
 269  0
                 if (StringUtils.isEmpty(exprType)) {
 270  0
                         throw new XmlException("Expression type must be specified");
 271  
                 }
 272  0
                 String expression = exprElement.getTextTrim();
 273  0
                 ruleExpressionDef = new RuleExpressionDef();
 274  0
                 ruleExpressionDef.setType(exprType);
 275  0
                 ruleExpressionDef.setExpression(expression);
 276  
         }
 277  
         
 278  0
         String forceActionValue = element.getChildText(FORCE_ACTION, element.getNamespace());
 279  0
         Boolean forceAction = Boolean.valueOf(DEFAULT_FORCE_ACTION);
 280  0
         if (!StringUtils.isBlank(forceActionValue)) {
 281  0
             forceAction = Boolean.valueOf(forceActionValue);
 282  
         }
 283  
 
 284  0
         rule.setDocTypeName(documentType.getName());
 285  0
         if (ruleTemplate != null) {
 286  0
             rule.setRuleTemplateId(ruleTemplate.getRuleTemplateId());
 287  0
             rule.setRuleTemplate(ruleTemplate);
 288  
         }
 289  0
         if (ruleExpressionDef != null) {
 290  0
             rule.setRuleExpressionDef(ruleExpressionDef);
 291  
         }
 292  0
         rule.setDescription(description);
 293  0
         rule.setForceAction(forceAction);
 294  
 
 295  0
         Element responsibilitiesElement = element.getChild(RESPONSIBILITIES, element.getNamespace());
 296  0
         rule.setResponsibilities(parseResponsibilities(responsibilitiesElement, rule));
 297  0
         rule.setRuleExtensions(parseRuleExtensions(ruleExtensionsElement, rule));
 298  
 
 299  0
         return rule;
 300  
     }
 301  
     
 302  
     /**
 303  
      * Creates the rule that the parser will populate.  If a rule with the given name
 304  
      * already exists, it's keys and responsibilities will be copied over to the
 305  
      * new rule.  The calling code will then sort through the original responsibilities
 306  
      * and compare them with those being defined on the XML being parsed.
 307  
      */
 308  
     private RuleBaseValues createRule(String ruleName) {
 309  0
             RuleBaseValues rule = new RuleBaseValues();
 310  0
             RuleBaseValues existingRule = (ruleName != null) ? KEWServiceLocator.getRuleService().getRuleByName(ruleName) : null;
 311  0
             if (existingRule != null) {
 312  
                     // copy keys and responsibiliities from the existing rule
 313  0
                     rule.setRuleBaseValuesId(existingRule.getRuleBaseValuesId());
 314  0
                     rule.setPreviousVersionId(existingRule.getPreviousVersionId());
 315  0
                     rule.setPreviousVersion(existingRule.getPreviousVersion());
 316  0
                     rule.setResponsibilities(existingRule.getResponsibilities());
 317  
             }
 318  0
             return rule;
 319  
     }
 320  
 
 321  
     /**
 322  
      * Checks to see whether this anonymous rule duplicates an existing rule.
 323  
      * Currently the uniqueness is on ruleResponsibilityName, and extension key/values.
 324  
      * @param rule the rule to check
 325  
      * @throws XmlException if this incoming rule duplicates an existing rule
 326  
      */
 327  
     private void checkRuleForDuplicate(RuleBaseValues rule) throws XmlException {
 328  0
             String ruleId = KEWServiceLocator.getRuleService().getDuplicateRuleId(rule);
 329  0
         if (ruleId != null) {
 330  0
                 throw new XmlException("Rule '" + rule.getDescription() + "' on doc '" + rule.getDocTypeName() + "' is a duplicate of rule with rule Id " + ruleId);
 331  
         }
 332  0
     }
 333  
     
 334  
     private void checkRuleDelegationForDuplicate(RuleDelegation ruleDelegation) throws XmlException {
 335  0
             checkRuleForDuplicate(ruleDelegation.getDelegationRuleBaseValues());
 336  0
     }
 337  
 
 338  
     private void setDefaultRuleValues(RuleBaseValues rule) throws XmlException {
 339  0
         rule.setForceAction(Boolean.FALSE);
 340  0
         rule.setActivationDate(new Timestamp(System.currentTimeMillis()));
 341  0
         rule.setActiveInd(Boolean.TRUE);
 342  0
         rule.setCurrentInd(Boolean.TRUE);
 343  0
         rule.setTemplateRuleInd(Boolean.FALSE);
 344  0
         rule.setVersionNbr(new Integer(0));
 345  0
         rule.setDelegateRule(false);
 346  0
     }
 347  
 
 348  
     private List<RuleResponsibility> parseResponsibilities(Element element, RuleBaseValues rule) throws XmlException {
 349  0
         if (element == null) {
 350  0
             return new ArrayList<RuleResponsibility>(0);
 351  
         }
 352  0
         List<RuleResponsibility> existingResponsibilities = rule.getResponsibilities();
 353  0
         List<RuleResponsibility> responsibilities = new ArrayList<RuleResponsibility>();
 354  0
         List responsibilityElements = element.getChildren(RESPONSIBILITY, element.getNamespace());
 355  0
         for (Iterator iterator = responsibilityElements.iterator(); iterator.hasNext();) {
 356  0
             Element responsibilityElement = (Element) iterator.next();
 357  0
             RuleResponsibility responsibility = parseResponsibility(responsibilityElement, rule);
 358  0
             reconcileWithExistingResponsibility(responsibility, existingResponsibilities);
 359  0
             responsibilities.add(responsibility);
 360  0
         }
 361  0
         if (responsibilities.size() == 0) {
 362  0
             throw new XmlException("Rule responsibility list must have at least one responsibility.");
 363  
         }
 364  0
         return responsibilities;
 365  
     }
 366  
 
 367  
     public RuleResponsibility parseResponsibility(Element element, RuleBaseValues rule) throws XmlException {
 368  0
         RuleResponsibility responsibility = new RuleResponsibility();
 369  0
         responsibility.setRuleBaseValues(rule);
 370  0
         String actionRequested = null;
 371  0
         String priority = null;
 372  0
         actionRequested = element.getChildText(ACTION_REQUESTED, element.getNamespace());
 373  0
         if (StringUtils.isBlank(actionRequested)) {
 374  0
                 actionRequested = DEFAULT_ACTION_REQUESTED;
 375  
         }
 376  0
         priority = element.getChildText(PRIORITY, element.getNamespace());
 377  0
         if (StringUtils.isBlank(priority)) {
 378  0
                 priority = String.valueOf(DEFAULT_RULE_PRIORITY);
 379  
         }
 380  0
         String approvePolicy = element.getChildText(APPROVE_POLICY, element.getNamespace());
 381  0
         Element delegations = element.getChild(DELEGATIONS, element.getNamespace());
 382  0
         if (actionRequested == null) {
 383  0
             throw new XmlException("actionRequested is required on responsibility");
 384  
         }
 385  0
         if (!actionRequested.equals(KEWConstants.ACTION_REQUEST_COMPLETE_REQ) && !actionRequested.equals(KEWConstants.ACTION_REQUEST_APPROVE_REQ) && !actionRequested.equals(KEWConstants.ACTION_REQUEST_ACKNOWLEDGE_REQ) && !actionRequested.equals(KEWConstants.ACTION_REQUEST_FYI_REQ)) {
 386  0
             throw new XmlException("Invalid action requested code '" + actionRequested + "'");
 387  
         }
 388  0
         if (StringUtils.isBlank(approvePolicy)) {
 389  0
             approvePolicy = DEFAULT_APPROVE_POLICY;
 390  
         }
 391  0
         if (!approvePolicy.equals(ActionRequestPolicy.ALL.getCode()) && !approvePolicy.equals(ActionRequestPolicy.FIRST.getCode())) {
 392  0
             throw new XmlException("Invalid approve policy '" + approvePolicy + "'");
 393  
         }
 394  0
         Integer priorityNumber = Integer.valueOf(priority);
 395  0
         responsibility.setActionRequestedCd(actionRequested);
 396  0
         responsibility.setPriority(priorityNumber);
 397  0
         responsibility.setApprovePolicy(approvePolicy);
 398  
         
 399  0
         RuleResponsibility responsibilityNameAndType = parseResponsibilityNameAndType(element);
 400  0
         if (responsibilityNameAndType == null) {
 401  0
                 throw new XmlException("Could not locate a valid responsibility declaration on a responsibility on rule with description '" + rule.getDescription() + "'");
 402  
         }
 403  0
         if (responsibilityNameAndType.getRuleResponsibilityType().equals(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID)
 404  
                         && responsibility.getApprovePolicy().equals(ActionRequestPolicy.ALL.getCode())) {
 405  0
                 throw new XmlException("Invalid approve policy '" + approvePolicy + "'.  This policy is not supported with Groups.");
 406  
         }
 407  0
         responsibility.setRuleResponsibilityName(responsibilityNameAndType.getRuleResponsibilityName());
 408  0
         responsibility.setRuleResponsibilityType(responsibilityNameAndType.getRuleResponsibilityType());
 409  
         
 410  0
         return responsibility;
 411  
     }
 412  
 
 413  
     public RuleResponsibility parseResponsibilityNameAndType(Element element) throws XmlException {
 414  0
             RuleResponsibility responsibility = new RuleResponsibility();
 415  
             
 416  0
             String principalId = element.getChildText(PRINCIPAL_ID, element.getNamespace());
 417  0
         String principalName = element.getChildText(PRINCIPAL_NAME, element.getNamespace());
 418  0
         String groupId = element.getChildText(GROUP_ID, element.getNamespace());
 419  0
         Element groupNameElement = element.getChild(GROUP_NAME, element.getNamespace());
 420  0
         String role = element.getChildText(ROLE, element.getNamespace());
 421  0
         Element roleNameElement = element.getChild(ROLE_NAME, element.getNamespace());
 422  
         
 423  0
         String user = element.getChildText(USER, element.getNamespace());
 424  0
         String workgroup = element.getChildText(WORKGROUP, element.getNamespace());
 425  
         
 426  0
         if (!StringUtils.isEmpty(user)) {
 427  0
                 principalName = user;
 428  0
                 LOG.warn("Rule XML is using deprecated element 'user', please use 'principalName' instead.");
 429  
         }
 430  
         
 431  
         // in code below, we allow core config parameter replacement in responsibilities
 432  0
         if (!StringUtils.isBlank(principalId)) {
 433  0
                 principalId = Utilities.substituteConfigParameters(principalId);
 434  0
                 Principal principal = KimApiServiceLocator.getIdentityService().getPrincipal(principalId);
 435  0
             if (principal == null) {
 436  0
                     throw new XmlException("Could not locate principal with the given id: " + principalId);
 437  
             }
 438  0
             responsibility.setRuleResponsibilityName(principalId);
 439  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_WORKFLOW_ID);
 440  0
         } else if (!StringUtils.isBlank(principalName)) {
 441  0
                 principalName = Utilities.substituteConfigParameters(principalName);
 442  0
                 Principal principal = KimApiServiceLocator.getIdentityService().getPrincipalByPrincipalName(principalName);
 443  0
             if (principal == null) {
 444  0
                     throw new XmlException("Could not locate principal with the given name: " + principalName);
 445  
             }
 446  0
             responsibility.setRuleResponsibilityName(principal.getPrincipalId());
 447  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_WORKFLOW_ID);
 448  0
         } else if (!StringUtils.isBlank(groupId)) {
 449  0
             groupId = Utilities.substituteConfigParameters(groupId);
 450  0
             Group group = KimApiServiceLocator.getGroupService().getGroup(groupId);
 451  0
             if (group == null) {
 452  0
                 throw new XmlException("Could not locate group with the given id: " + groupId);
 453  
             }
 454  0
             responsibility.setRuleResponsibilityName(groupId);
 455  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID);
 456  0
         } else if (groupNameElement != null) {
 457  0
                 String groupName = groupNameElement.getText();
 458  0
                 String groupNamespace = groupNameElement.getAttributeValue(NAMESPACE);
 459  0
                 if (StringUtils.isBlank(groupName)) {
 460  0
                         throw new XmlException("Group name element has no value");
 461  
                 }
 462  0
                 if (StringUtils.isBlank(groupNamespace)) {
 463  0
                         throw new XmlException("namespace attribute must be specified");
 464  
                 }
 465  0
             groupName = Utilities.substituteConfigParameters(groupName);
 466  0
             groupNamespace = Utilities.substituteConfigParameters(groupNamespace);
 467  0
             Group group = KimApiServiceLocator.getGroupService().getGroupByName(groupNamespace, groupName);
 468  0
             if (group == null) {
 469  0
                 throw new XmlException("Could not locate group with the given namespace: " + groupNamespace + " and name: " + groupName);
 470  
             }
 471  0
             responsibility.setRuleResponsibilityName(group.getId());
 472  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID);
 473  0
         } else if (!StringUtils.isBlank(role)) {
 474  0
                 role = Utilities.substituteConfigParameters(role);
 475  0
                 responsibility.setRuleResponsibilityName(role);
 476  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_ROLE_ID);
 477  0
         } else if (roleNameElement != null) {
 478  0
                 String roleName = roleNameElement.getText();
 479  0
                 String attributeClassName = roleNameElement.getAttributeValue(ATTRIBUTE_CLASS_NAME);
 480  0
                 if (StringUtils.isBlank(roleName)) {
 481  0
                         throw new XmlException("Role name element has no value");
 482  
                 }
 483  0
                 if (StringUtils.isBlank(attributeClassName)) {
 484  0
                         throw new XmlException("attributeClassName attribute must be specified");
 485  
                 }
 486  0
                 roleName = Utilities.substituteConfigParameters(roleName);
 487  0
                 attributeClassName = Utilities.substituteConfigParameters(attributeClassName);
 488  0
                 responsibility.setRuleResponsibilityName(Role.constructRoleValue(attributeClassName, roleName));
 489  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_ROLE_ID);
 490  0
         } else if (!StringUtils.isBlank(workgroup)) {
 491  0
                 LOG.warn("Rule XML is using deprecated element 'workgroup', please use 'groupName' instead.");
 492  0
             workgroup = Utilities.substituteConfigParameters(workgroup);
 493  0
             String workgroupNamespace = Utilities.parseGroupNamespaceCode(workgroup);
 494  0
             String workgroupName = Utilities.parseGroupName(workgroup);
 495  
 
 496  0
             Group workgroupObject = KimApiServiceLocator.getGroupService().getGroupByName(workgroupNamespace, workgroupName);
 497  0
             if (workgroupObject == null) {
 498  0
                 throw new XmlException("Could not locate workgroup: " + workgroup);
 499  
             }
 500  0
             responsibility.setRuleResponsibilityName(workgroupObject.getId());
 501  0
             responsibility.setRuleResponsibilityType(KEWConstants.RULE_RESPONSIBILITY_GROUP_ID);
 502  0
         } else {
 503  0
                 return null;
 504  
         }
 505  
         
 506  0
         return responsibility;
 507  
     }
 508  
     
 509  
     /**
 510  
      * Attempts to reconcile the given RuleResponsibility with the list of existing responsibilities (in the case of a
 511  
      * rule being updated via the XML).  This goal of this code is to copy responsibility ids from existing responsibilities
 512  
      * to the new responsibility where appropriate.  The code will attempt to find exact matches based on the values found
 513  
      * on the responsibilities.
 514  
      */
 515  
     private void reconcileWithExistingResponsibility(RuleResponsibility responsibility, List<RuleResponsibility> existingResponsibilities) {
 516  0
             if (existingResponsibilities == null || existingResponsibilities.isEmpty()) {
 517  0
                     return;
 518  
             }
 519  0
             RuleResponsibility exactMatch = null;
 520  0
             for (RuleResponsibility existingResponsibility : existingResponsibilities) {
 521  0
                     if (isExactResponsibilityMatch(responsibility, existingResponsibility)) {
 522  0
                             exactMatch = existingResponsibility;
 523  0
                             break;
 524  
                     }
 525  
             }
 526  0
             if (exactMatch != null) {
 527  0
                     responsibility.setResponsibilityId(exactMatch.getResponsibilityId());
 528  
             }
 529  0
     }
 530  
     
 531  
     /**
 532  
      * Checks if the given responsibilities are exact matches of one another.
 533  
      */
 534  
     private boolean isExactResponsibilityMatch(RuleResponsibility newResponsibility, RuleResponsibility existingResponsibility) {
 535  0
             if (existingResponsibility.getResponsibilityId().equals(newResponsibility.getResponsibilityId())) {
 536  0
                     return true;
 537  
             }
 538  0
             if (existingResponsibility.getRuleResponsibilityName().equals(newResponsibility.getRuleResponsibilityName()) &&
 539  
                             existingResponsibility.getRuleResponsibilityType().equals(newResponsibility.getRuleResponsibilityType()) &&
 540  
                             existingResponsibility.getApprovePolicy().equals(newResponsibility.getApprovePolicy()) &&
 541  
                             existingResponsibility.getActionRequestedCd().equals(newResponsibility.getActionRequestedCd()) &&
 542  
                             existingResponsibility.getPriority().equals(newResponsibility.getPriority())) {
 543  0
                     return true;
 544  
             }
 545  0
             return false;
 546  
     }
 547  
 
 548  
     private List parseRuleExtensions(Element element, RuleBaseValues rule) throws XmlException {
 549  0
         if (element == null) {
 550  0
             return new ArrayList();
 551  
         }
 552  0
         RuleExtensionXmlParser parser = new RuleExtensionXmlParser();
 553  0
         return parser.parseRuleExtensions(element, rule);
 554  
     }
 555  
     
 556  
     public Timestamp formatDate(String dateLabel, String dateString) throws XmlException {
 557  0
             if (StringUtils.isBlank(dateString)) {
 558  0
                     return null;
 559  
             }
 560  
             try {
 561  0
                     return new Timestamp(RiceConstants.getDefaultDateFormat().parse(dateString).getTime());
 562  0
             } catch (ParseException e) {
 563  0
                     throw new XmlException(dateLabel + " is not in the proper format.  Should have been: " + RiceConstants.DEFAULT_DATE_FORMAT_PATTERN);
 564  
             }
 565  
     }
 566  
     
 567  
 }