1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.rice.edl.framework.workflow; |
17 | |
|
18 | |
import org.apache.commons.lang.StringUtils; |
19 | |
import org.jdom.Attribute; |
20 | |
import org.jdom.Element; |
21 | |
import org.kuali.rice.core.api.util.xml.XmlHelper; |
22 | |
import org.kuali.rice.core.api.util.xml.XmlJotter; |
23 | |
import org.kuali.rice.edl.framework.extract.DumpDTO; |
24 | |
import org.kuali.rice.edl.framework.extract.ExtractService; |
25 | |
import org.kuali.rice.edl.framework.extract.FieldDTO; |
26 | |
import org.kuali.rice.edl.framework.services.EdlFrameworkServiceLocator; |
27 | |
import org.kuali.rice.kew.api.KewApiServiceLocator; |
28 | |
import org.kuali.rice.kew.api.doctype.DocumentType; |
29 | |
import org.kuali.rice.kew.api.document.node.RouteNodeInstance; |
30 | |
import org.kuali.rice.kew.dto.ActionTakenEventDTO; |
31 | |
import org.kuali.rice.kew.dto.DeleteEventDTO; |
32 | |
import org.kuali.rice.kew.dto.DocumentRouteLevelChangeDTO; |
33 | |
import org.kuali.rice.kew.dto.DocumentRouteStatusChangeDTO; |
34 | |
import org.kuali.rice.kew.util.KEWConstants; |
35 | |
import org.w3c.dom.Document; |
36 | |
|
37 | |
import java.rmi.RemoteException; |
38 | |
import java.sql.Timestamp; |
39 | |
import java.util.ArrayList; |
40 | |
import java.util.Collection; |
41 | |
import java.util.Iterator; |
42 | |
import java.util.List; |
43 | |
|
44 | 0 | public class EDocLiteDatabasePostProcessor extends EDocLitePostProcessor { |
45 | |
|
46 | 0 | private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger |
47 | |
.getLogger(EDocLiteDatabasePostProcessor.class); |
48 | |
|
49 | |
public boolean doRouteStatusChange(DocumentRouteStatusChangeDTO event) throws RemoteException { |
50 | 0 | LOG.debug("doRouteStatusChange: " + event); |
51 | 0 | String documentId = event.getDocumentId(); |
52 | 0 | super.postEvent(documentId, event, "statusChange"); |
53 | 0 | Document doc = getEDLContent(documentId); |
54 | 0 | if (LOG.isDebugEnabled()) { |
55 | 0 | LOG.debug("Submitting doc: " + XmlJotter.jotNode(doc)); |
56 | |
} |
57 | 0 | extractEDLData(documentId, getNodeNames(event.getDocumentId()), doc); |
58 | 0 | return super.doRouteStatusChange(event); |
59 | |
} |
60 | |
|
61 | |
public boolean doActionTaken(ActionTakenEventDTO event) throws RemoteException { |
62 | 0 | LOG.debug("doActionTaken: " + event); |
63 | 0 | String documentId = event.getDocumentId(); |
64 | 0 | super.postEvent(documentId, event, "actionTaken"); |
65 | |
|
66 | |
|
67 | 0 | if (KEWConstants.ACTION_TAKEN_SAVED_CD.equals(event.getActionTaken().getActionTaken())) { |
68 | 0 | Document doc = getEDLContent(documentId); |
69 | 0 | extractEDLData(documentId, getNodeNames(event.getDocumentId()), doc); |
70 | |
} |
71 | |
|
72 | 0 | return super.doActionTaken(event); |
73 | |
} |
74 | |
|
75 | |
public boolean doDeleteRouteHeader(DeleteEventDTO event) throws RemoteException { |
76 | 0 | LOG.debug("doDeleteRouteHeader: " + event); |
77 | 0 | super.postEvent(event.getDocumentId(), event, "deleteRouteHeader"); |
78 | 0 | return super.doDeleteRouteHeader(event); |
79 | |
} |
80 | |
|
81 | |
public boolean doRouteLevelChange(DocumentRouteLevelChangeDTO event) throws RemoteException { |
82 | 0 | LOG.debug("doRouteLevelChange: " + event); |
83 | 0 | String documentId = event.getDocumentId(); |
84 | 0 | super.postEvent(documentId, event, "routeLevelChange"); |
85 | 0 | Document doc = getEDLContent(documentId); |
86 | 0 | if (LOG.isDebugEnabled()) { |
87 | 0 | LOG.debug("Submitting doc: " + XmlJotter.jotNode(doc)); |
88 | |
} |
89 | 0 | extractEDLData(documentId, new String[]{event.getNewNodeName()}, doc); |
90 | 0 | return super.doRouteLevelChange(event); |
91 | |
} |
92 | |
|
93 | |
|
94 | |
|
95 | |
|
96 | |
|
97 | |
|
98 | |
|
99 | |
private String[] getNodeNames(String documentId) { |
100 | 0 | List<RouteNodeInstance> activeNodeInstances = KewApiServiceLocator.getWorkflowDocumentService().getActiveRouteNodeInstances(documentId); |
101 | 0 | if (activeNodeInstances == null || activeNodeInstances.size() == 0) { |
102 | 0 | activeNodeInstances = KewApiServiceLocator.getWorkflowDocumentService().getTerminalNodeInstances(documentId); |
103 | |
} |
104 | 0 | String[] nodeNames = new String[(activeNodeInstances == null ? 0 : activeNodeInstances.size())]; |
105 | 0 | for (int index = 0; index < activeNodeInstances.size(); index++) { |
106 | 0 | nodeNames[index] = activeNodeInstances.get(index).getName(); |
107 | |
} |
108 | 0 | return nodeNames; |
109 | |
} |
110 | |
|
111 | |
private void extractEDLData(String documentId, String[] nodeNames, Document documentContent) { |
112 | |
try { |
113 | 0 | org.kuali.rice.kew.api.document.Document document = KewApiServiceLocator.getWorkflowDocumentService().getDocument(documentId); |
114 | 0 | DocumentType documentType = KewApiServiceLocator.getDocumentTypeService().getDocumentTypeById( |
115 | |
document.getDocumentTypeId()); |
116 | 0 | DumpDTO dump = getExtractService().getDumpByDocumentId(documentId); |
117 | 0 | if (dump == null) { |
118 | 0 | dump = new DumpDTO(); |
119 | |
} |
120 | 0 | dump.setDocId(documentId); |
121 | 0 | dump.setDocCreationDate(new Timestamp(document.getDateCreated().getMillis())); |
122 | 0 | dump.setDocCurrentNodeName(StringUtils.join(nodeNames, ",")); |
123 | 0 | dump.setDocDescription(documentType.getDescription()); |
124 | 0 | if (document.getDateLastModified() != null) { |
125 | 0 | dump.setDocModificationDate(new Timestamp(document.getDateLastModified().getMillis())); |
126 | |
} |
127 | 0 | dump.setDocInitiatorId(document.getInitiatorPrincipalId()); |
128 | 0 | dump.setDocRouteStatusCode(document.getStatus().getCode()); |
129 | 0 | dump.setDocTypeName(documentType.getName()); |
130 | |
|
131 | 0 | List<FieldDTO> fields = dump.getFields(); |
132 | 0 | fields.clear(); |
133 | |
|
134 | 0 | List fieldElements = setExtractFields(documentContent); |
135 | 0 | for (Iterator iter = fieldElements.iterator(); iter.hasNext();) { |
136 | 0 | FieldDTO field = new FieldDTO(); |
137 | 0 | field.setDocId(dump.getDocId()); |
138 | 0 | Element element = (Element) iter.next(); |
139 | 0 | Attribute attribute = element.getAttribute("name"); |
140 | 0 | field.setFieldName(attribute.getValue()); |
141 | 0 | field.setFieldValue(element.getChildText("value")); |
142 | 0 | fields.add(field); |
143 | 0 | } |
144 | 0 | dump.setFields(fields); |
145 | 0 | getExtractService().saveDump(dump); |
146 | 0 | } catch (Exception e) { |
147 | 0 | if (e instanceof RuntimeException) { |
148 | 0 | throw (RuntimeException) e; |
149 | |
} |
150 | 0 | throw new RuntimeException(e); |
151 | 0 | } |
152 | 0 | } |
153 | |
|
154 | |
private ExtractService getExtractService() { |
155 | 0 | return EdlFrameworkServiceLocator.getExtractService(); |
156 | |
} |
157 | |
|
158 | |
private static Element getRootElement(Document docContent) { |
159 | 0 | return XmlHelper.buildJDocument(docContent).getRootElement(); |
160 | |
} |
161 | |
|
162 | |
private List setExtractFields(Document documentContent) { |
163 | 0 | Element rootElement = getRootElement(documentContent); |
164 | 0 | List<Element> fields = new ArrayList<Element>(); |
165 | 0 | Collection<Element> fieldElements = XmlHelper.findElements(rootElement, "field"); |
166 | 0 | Iterator<Element> elementIter = fieldElements.iterator(); |
167 | 0 | while (elementIter.hasNext()) { |
168 | 0 | Element field = elementIter.next(); |
169 | 0 | Element version = field.getParentElement(); |
170 | 0 | if (version.getAttribute("current").getValue().equals("true")) { |
171 | 0 | if (field.getAttribute("name") != null) { |
172 | 0 | fields.add(field); |
173 | |
} |
174 | |
} |
175 | 0 | } |
176 | 0 | return fields; |
177 | |
} |
178 | |
|
179 | |
} |