1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
|
17 | |
package org.kuali.rice.kew.engine.node; |
18 | |
|
19 | |
import java.util.ArrayList; |
20 | |
import java.util.List; |
21 | |
import java.util.ListIterator; |
22 | |
|
23 | |
import org.apache.commons.lang.StringUtils; |
24 | |
import org.apache.log4j.Logger; |
25 | |
import org.jdom.Element; |
26 | |
import org.kuali.rice.kew.engine.RouteContext; |
27 | |
import org.kuali.rice.kew.engine.RouteHelper; |
28 | |
import org.kuali.rice.kew.exception.WorkflowRuntimeException; |
29 | |
import org.kuali.rice.kew.exception.WorkflowServiceErrorException; |
30 | |
import org.kuali.rice.kew.routeheader.DocumentContent; |
31 | |
import org.kuali.rice.kew.routeheader.StandardDocumentContent; |
32 | |
import org.kuali.rice.kew.service.KEWServiceLocator; |
33 | |
import org.kuali.rice.kew.util.KEWConstants; |
34 | |
import org.kuali.rice.kew.util.XmlHelper; |
35 | |
import org.kuali.rice.kim.bo.Person; |
36 | |
import org.kuali.rice.kim.service.KIMServiceLocator; |
37 | |
|
38 | |
|
39 | |
|
40 | |
|
41 | |
|
42 | |
|
43 | |
|
44 | |
|
45 | |
|
46 | 0 | public class FYIByUniversityId extends RequestActivationNode { |
47 | 0 | private static final Logger LOG = Logger.getLogger(FYIByUniversityId.class); |
48 | |
|
49 | |
public SimpleResult process(RouteContext context, RouteHelper helper) |
50 | |
throws Exception { |
51 | |
|
52 | 0 | LOG.debug("processing FYIByUniversityId node"); |
53 | 0 | Element rootElement = getRootElement(new StandardDocumentContent(context.getDocument().getDocContent())); |
54 | 0 | List fieldElements = XmlHelper.findElements(rootElement, "field"); |
55 | 0 | ListIterator elementIter = fieldElements.listIterator(); |
56 | 0 | while (elementIter.hasNext()) { |
57 | 0 | Element field = (Element) elementIter.next(); |
58 | 0 | Element version = field.getParentElement(); |
59 | 0 | if (version.getAttribute("current").getValue().equals("true")) { |
60 | 0 | LOG.debug("Looking for studentUid field: " + field.getAttributeValue("name")); |
61 | 0 | if (field.getAttribute("name")!= null && field.getAttributeValue("name").equals("studentUid")) { |
62 | 0 | String employeeId = field.getChildText("value"); |
63 | 0 | LOG.debug("Should send an FYI to employee ID: " + employeeId); |
64 | 0 | if (!StringUtils.isBlank(employeeId)) { |
65 | 0 | Person person = KIMServiceLocator.getPersonService().getPerson(employeeId); |
66 | |
|
67 | 0 | if (person == null) { |
68 | 0 | throw new WorkflowRuntimeException("Failed to locate a Person with the given employee ID: " + employeeId); |
69 | |
} |
70 | 0 | if (!context.isSimulation()) { |
71 | 0 | KEWServiceLocator.getWorkflowDocumentService().adHocRouteDocumentToPrincipal(person.getPrincipalId(), context.getDocument(), KEWConstants.ACTION_REQUEST_FYI_REQ, null, "Notification Request", person.getPrincipalId(), "Notification Request", true, null); |
72 | |
} |
73 | |
|
74 | 0 | LOG.debug("Sent FYI using the adHocRouteDocumentToPrincipal function to UniversityID: " + person.getEmployeeId()); |
75 | 0 | break; |
76 | |
} |
77 | |
} |
78 | |
} |
79 | 0 | } |
80 | 0 | return super.process(context, helper); |
81 | |
} |
82 | |
|
83 | |
|
84 | |
private static Element getRootElement(DocumentContent docContent) { |
85 | 0 | Element rootElement = null; |
86 | |
try { |
87 | 0 | rootElement = XmlHelper.buildJDocument(docContent.getDocument()).getRootElement(); |
88 | 0 | } catch (Exception e) { |
89 | 0 | throw new WorkflowServiceErrorException("Invalid XML submitted", new ArrayList<Object>()); |
90 | 0 | } |
91 | 0 | return rootElement; |
92 | |
} |
93 | |
|
94 | |
|
95 | |
protected Object getService(String serviceName) { |
96 | 0 | return KEWServiceLocator.getService(serviceName); |
97 | |
} |
98 | |
|
99 | |
|
100 | |
} |
101 | |
|
102 | |
|