1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.xml; |
18 | |
|
19 | |
import org.apache.commons.lang.StringUtils; |
20 | |
import org.kuali.rice.core.api.impex.xml.XmlConstants; |
21 | |
import org.kuali.rice.core.util.XmlJotter; |
22 | |
import org.kuali.rice.core.xml.XmlException; |
23 | |
import org.kuali.rice.kew.rule.bo.RuleAttribute; |
24 | |
import org.kuali.rice.kew.rule.xmlrouting.XPathHelper; |
25 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
26 | |
import org.kuali.rice.kew.util.KEWConstants; |
27 | |
import org.w3c.dom.Element; |
28 | |
import org.w3c.dom.Node; |
29 | |
import org.w3c.dom.NodeList; |
30 | |
import org.xml.sax.InputSource; |
31 | |
|
32 | |
import javax.xml.parsers.DocumentBuilderFactory; |
33 | |
import javax.xml.xpath.XPath; |
34 | |
import javax.xml.xpath.XPathConstants; |
35 | |
import javax.xml.xpath.XPathExpressionException; |
36 | |
import java.io.IOException; |
37 | |
import java.io.InputStream; |
38 | |
import java.util.ArrayList; |
39 | |
import java.util.Iterator; |
40 | |
import java.util.List; |
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | |
|
47 | |
|
48 | |
|
49 | |
|
50 | 0 | public class RuleAttributeXmlParser { |
51 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(RuleAttributeXmlParser.class); |
52 | |
|
53 | |
|
54 | |
private static final String XPATH_RULE_ATTRIBUTES = "//" + XmlConstants.RULE_ATTRIBUTES + "/" + XmlConstants.RULE_ATTRIBUTE; |
55 | |
private static final String NAME = "name"; |
56 | |
private static final String CLASS_NAME = "className"; |
57 | |
private static final String LABEL = "label"; |
58 | |
private static final String DESCRIPTION = "description"; |
59 | |
private static final String TYPE = "type"; |
60 | |
private static final String CONFIG = "configuration"; |
61 | |
|
62 | |
public List parseRuleAttributes(InputStream input) throws IOException, XmlException { |
63 | |
try { |
64 | 0 | Element root = DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(input)).getDocumentElement(); |
65 | 0 | return parseRuleAttributes(root); |
66 | 0 | } catch (Exception e) { |
67 | 0 | throw new XmlException("error parsing xml data", e); |
68 | |
} |
69 | |
} |
70 | |
|
71 | |
public List parseRuleAttributes(Element element) throws XmlException { |
72 | 0 | List ruleAttributes = new ArrayList(); |
73 | |
try { |
74 | 0 | XPath xpath = XPathHelper.newXPath(); |
75 | 0 | NodeList nodeList = (NodeList)xpath.evaluate(XPATH_RULE_ATTRIBUTES, element, XPathConstants.NODESET); |
76 | 0 | for (int i = 0; i < nodeList.getLength(); i++) { |
77 | 0 | Node ruleAttributeNode = nodeList.item(i); |
78 | 0 | ruleAttributes.add(parseRuleAttribute(ruleAttributeNode)); |
79 | |
} |
80 | |
|
81 | 0 | for (Iterator iterator = ruleAttributes.iterator(); iterator.hasNext();) { |
82 | 0 | RuleAttribute ruleAttribute = (RuleAttribute) iterator.next(); |
83 | |
try { |
84 | 0 | RuleAttribute existingAttribute = KEWServiceLocator.getRuleAttributeService().findByName(ruleAttribute.getName()); |
85 | 0 | if (existingAttribute != null) { |
86 | 0 | ruleAttribute.setRuleAttributeId(existingAttribute.getRuleAttributeId()); |
87 | 0 | ruleAttribute.setVersionNumber(existingAttribute.getVersionNumber()); |
88 | |
} |
89 | 0 | KEWServiceLocator.getRuleAttributeService().save(ruleAttribute); |
90 | 0 | } catch (Exception e) { |
91 | 0 | LOG.error("Error saving rule attribute entered by XML", e); |
92 | 0 | } |
93 | 0 | } |
94 | 0 | } catch (XPathExpressionException e1) { |
95 | 0 | throw new XmlException("Could not find a rule attribute.", e1); |
96 | 0 | } |
97 | 0 | return ruleAttributes; |
98 | |
} |
99 | |
|
100 | |
private RuleAttribute parseRuleAttribute(Node ruleAttributeNode) throws XmlException { |
101 | 0 | String name = ""; |
102 | 0 | String className = ""; |
103 | 0 | String label = ""; |
104 | 0 | String description = ""; |
105 | 0 | String type = ""; |
106 | 0 | String serviceNamespace = null; |
107 | 0 | Node xmlConfig = null; |
108 | 0 | for (int i = 0; i < ruleAttributeNode.getChildNodes().getLength(); i++) { |
109 | 0 | Node childNode = ruleAttributeNode.getChildNodes().item(i); |
110 | 0 | if(NAME.equals(childNode.getNodeName())){ |
111 | 0 | name = childNode.getFirstChild().getNodeValue(); |
112 | 0 | } else if(CLASS_NAME.equals(childNode.getNodeName())){ |
113 | 0 | className = childNode.getFirstChild().getNodeValue(); |
114 | 0 | } else if(LABEL.equals(childNode.getNodeName())){ |
115 | 0 | label = childNode.getFirstChild().getNodeValue(); |
116 | 0 | } else if(DESCRIPTION.equals(childNode.getNodeName())){ |
117 | 0 | description = childNode.getFirstChild().getNodeValue(); |
118 | 0 | } else if(TYPE.equals(childNode.getNodeName())){ |
119 | 0 | type = childNode.getFirstChild().getNodeValue(); |
120 | 0 | } else if(XmlConstants.ROUTING_CONFIG.equals(childNode.getNodeName()) || XmlConstants.SEARCHING_CONFIG.equals(childNode.getNodeName()) || |
121 | |
XmlConstants.SEARCH_RESULT_CONFIG.equals(childNode.getNodeName()) || XmlConstants.RESOLVER_CONFIG.equals(childNode.getNodeName()) || |
122 | |
CONFIG.equals(childNode.getNodeName())){ |
123 | 0 | xmlConfig = childNode; |
124 | 0 | } else if (XmlConstants.SERVICE_NAMESPACE.equals(childNode.getNodeName())) { |
125 | 0 | serviceNamespace = childNode.getFirstChild().getNodeValue(); |
126 | |
} |
127 | |
} |
128 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(name)) { |
129 | 0 | throw new XmlException("RuleAttribute must have a name"); |
130 | |
} |
131 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(className)) { |
132 | 0 | throw new XmlException("RuleAttribute must have a className"); |
133 | |
} |
134 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(label)) { |
135 | 0 | LOG.warn("Label empty defaulting to name"); |
136 | 0 | label = name; |
137 | |
} |
138 | 0 | if (org.apache.commons.lang.StringUtils.isEmpty(type)) { |
139 | 0 | LOG.debug("No type specified, default to " + KEWConstants.RULE_ATTRIBUTE_TYPE); |
140 | 0 | type = KEWConstants.RULE_ATTRIBUTE_TYPE; |
141 | |
|
142 | |
} |
143 | 0 | RuleAttribute ruleAttribute = new RuleAttribute(); |
144 | 0 | ruleAttribute.setName(name.trim()); |
145 | 0 | ruleAttribute.setClassName(className.trim()); |
146 | 0 | ruleAttribute.setType(type.trim()); |
147 | 0 | ruleAttribute.setLabel(label.trim()); |
148 | |
|
149 | 0 | if (StringUtils.isEmpty(description)) { |
150 | 0 | description = label; |
151 | |
} |
152 | 0 | ruleAttribute.setDescription(description.trim()); |
153 | 0 | if (serviceNamespace != null) |
154 | |
{ |
155 | 0 | serviceNamespace = serviceNamespace.trim(); |
156 | |
} |
157 | 0 | ruleAttribute.setServiceNamespace(serviceNamespace); |
158 | |
|
159 | 0 | if(xmlConfig != null){ |
160 | 0 | ruleAttribute.setXmlConfigData(XmlJotter.jotNode(xmlConfig)); |
161 | |
} else { |
162 | 0 | if(KEWConstants.RULE_XML_ATTRIBUTE_TYPE.equals(type)){ |
163 | 0 | throw new XmlException("A routing config must be present to be of type: "+type); |
164 | 0 | } else if(KEWConstants.SEARCHABLE_XML_ATTRIBUTE_TYPE.equals(type)){ |
165 | 0 | throw new XmlException("A searching config must be present to be of type: "+type); |
166 | 0 | } else if(KEWConstants.SEARCH_RESULT_XML_PROCESSOR_ATTRIBUTE_TYPE.equals(type)){ |
167 | 0 | throw new XmlException("A searching config must be present to be of type: "+type); |
168 | |
} |
169 | |
} |
170 | 0 | return ruleAttribute; |
171 | |
} |
172 | |
} |