View Javadoc

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.engine.node;
18  
19  import org.apache.log4j.Logger;
20  import org.jdom.Element;
21  import org.kuali.rice.core.api.util.xml.XmlHelper;
22  import org.kuali.rice.kew.engine.RouteContext;
23  import org.kuali.rice.kew.engine.RouteHelper;
24  import org.kuali.rice.kew.exception.WorkflowServiceErrorException;
25  import org.kuali.rice.kew.routeheader.DocumentContent;
26  import org.kuali.rice.kew.routeheader.StandardDocumentContent;
27  import org.kuali.rice.kew.rule.NetworkIdRoleAttribute;
28  import org.kuali.rice.kew.service.KEWServiceLocator;
29  import org.kuali.rice.kew.util.KEWConstants;
30  import org.kuali.rice.kim.api.identity.Person;
31  import org.kuali.rice.kim.api.services.KimApiServiceLocator;
32  
33  import java.util.ArrayList;
34  import java.util.Collection;
35  import java.util.Iterator;
36  
37  
38  /**
39   * A node which will generate an FYI request to a network ID specified in the document content.
40   *
41   * @deprecated Use {@link NetworkIdRoleAttribute} instead
42   *
43   * @author Kuali Rice Team (rice.collab@kuali.org)
44   */
45  public class FYIByNetworkId extends RequestActivationNode {
46      private static final Logger LOG = Logger.getLogger(FYIByNetworkId.class);
47  
48  	public SimpleResult process(RouteContext context, RouteHelper helper)
49  			throws Exception {
50  
51          LOG.debug("processing FYIByNetworkId simple node");
52          String documentId = context.getDocument().getDocumentId();
53          Element rootElement = getRootElement(new StandardDocumentContent(context.getDocument().getDocContent()));
54  		Collection<Element> fieldElements = XmlHelper.findElements(rootElement, "field");
55          Iterator<Element> elementIter = fieldElements.iterator();
56          while (elementIter.hasNext()) {
57          	Element field = (Element) elementIter.next();
58          	Element version = field.getParentElement();
59          	if (version.getAttribute("current").getValue().equals("true")) {
60          		LOG.debug("Looking for networkId field:  " + field.getAttributeValue("name"));
61                 	if (field.getAttribute("name")!= null && field.getAttributeValue("name").equals("networkId")) {
62              		LOG.debug("Should send an FYI to netID:  " + field.getChildText("value"));
63                 		if (field.getChildText("value") != null) {
64                 			Person user = KimApiServiceLocator.getPersonService().getPersonByPrincipalName(field.getChildText("value"));
65  
66                 			//WorkflowDocument wfDoc = new WorkflowDocument(new NetworkIdVO(field.getChildText("value")), documentId);
67                 			if (!context.isSimulation()) {
68                     			KEWServiceLocator.getWorkflowDocumentService().adHocRouteDocumentToPrincipal(user.getPrincipalId(), context.getDocument(), KEWConstants.ACTION_REQUEST_FYI_REQ, null, "Notification Request", user.getPrincipalId(), "Notification Request", true, null);
69                 		}
70                 			//wfDoc.adHocRouteDocumentToPrincipal(KEWConstants.ACTION_REQUEST_FYI_REQ, "Notification Request", new NetworkIdVO(field.getChildText("value")), "Notification Request", true);
71                  		LOG.debug("Sent FYI using the adHocRouteDocumentToPrincipal function to NetworkID:  " + user.getPrincipalName());
72                                 	break;
73                 	}
74          	}
75          }
76          }
77  		return super.process(context, helper);
78  	}
79  
80  
81      private static Element getRootElement(DocumentContent docContent) {
82          Element rootElement = null;
83          try {
84              rootElement = XmlHelper.buildJDocument(docContent.getDocument()).getRootElement();
85          } catch (Exception e) {
86              throw new WorkflowServiceErrorException("Invalid XML submitted", new ArrayList<Object>());
87          }
88          return rootElement;
89      }
90  
91  
92  	protected Object getService(String serviceName) {
93  		return KEWServiceLocator.getService(serviceName);
94  	}
95  
96  
97  }