Coverage Report - org.kuali.rice.kew.xml.UserXmlParser
 
Classes in this File Line Coverage Branch Coverage Complexity
UserXmlParser
0%
0/96
0%
0/20
5
 
 1  
 /*
 2  
  * Copyright 2007-2009 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 2.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl2.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.rice.kew.xml;
 17  
 
 18  
 import org.apache.commons.lang.StringUtils;
 19  
 import org.jdom.Document;
 20  
 import org.jdom.Element;
 21  
 import org.jdom.JDOMException;
 22  
 import org.jdom.Namespace;
 23  
 import org.kuali.rice.core.util.XmlHelper;
 24  
 import org.kuali.rice.core.xml.XmlException;
 25  
 import org.kuali.rice.kim.bo.entity.KimEntityEmail;
 26  
 import org.kuali.rice.kim.bo.entity.impl.*;
 27  
 import org.kuali.rice.kns.service.KNSServiceLocator;
 28  
 import org.kuali.rice.kns.service.SequenceAccessorService;
 29  
 import org.xml.sax.SAXException;
 30  
 
 31  
 import javax.xml.parsers.ParserConfigurationException;
 32  
 import java.io.IOException;
 33  
 import java.io.InputStream;
 34  
 import java.util.ArrayList;
 35  
 import java.util.Iterator;
 36  
 import java.util.List;
 37  
 
 38  
 /**
 39  
  * Parses users from XML.
 40  
  * 
 41  
  * This is really meant for use only in the unit tests and was written to help ease
 42  
  * transition over to KIM.  There are numerous unit tests which took advantage of
 43  
  * the ability to import "users" from XML in KEW.  KIM does not provide XML
 44  
  * import capabilities in the initial implementation so this class provides that.
 45  
  *
 46  
  * @author Kuali Rice Team (rice.collab@kuali.org)
 47  
  *
 48  
  */
 49  0
 public class UserXmlParser {
 50  
     
 51  0
     private static final Namespace NAMESPACE = Namespace.getNamespace("", "ns:workflow/User");
 52  
 
 53  
     private static final String USERS_ELEMENT = "users";
 54  
     private static final String USER_ELEMENT = "user";
 55  
     private static final String WORKFLOW_ID_ELEMENT = "workflowId";
 56  
     private static final String AUTHENTICATION_ID_ELEMENT = "authenticationId";
 57  
     private static final String PRINCIPAL_ID_ELEMENT = "principalId";
 58  
     private static final String PRINCIPAL_NAME_ELEMENT = "principalName";
 59  
     private static final String EMPL_ID_ELEMENT = "emplId";
 60  
     private static final String EMAIL_ELEMENT = "emailAddress";
 61  
     private static final String GIVEN_NAME_ELEMENT = "givenName";
 62  
     private static final String LAST_NAME_ELEMENT = "lastName";    
 63  
     private static final String TYPE_ELEMENT = "type";
 64  
     
 65  
     public void parseUsers(InputStream input) throws IOException, XmlException {
 66  
         try {
 67  0
             Document doc = XmlHelper.trimSAXXml(input);
 68  0
             Element root = doc.getRootElement();
 69  0
             parseUsers(root);
 70  0
         } catch (JDOMException e) {
 71  0
             throw new XmlException("Parse error.", e);
 72  0
         } catch (SAXException e){
 73  0
             throw new XmlException("Parse error.",e);
 74  0
         } catch(ParserConfigurationException e){
 75  0
             throw new XmlException("Parse error.",e);
 76  0
         }
 77  0
     }
 78  
 
 79  
     public void parseUsers(Element root) throws XmlException {
 80  0
             for (Iterator usersElementIt = root.getChildren(USERS_ELEMENT, NAMESPACE).iterator(); usersElementIt.hasNext();) {
 81  0
                     Element usersElement = (Element) usersElementIt.next();
 82  0
                     for (Iterator iterator = usersElement.getChildren(USER_ELEMENT, NAMESPACE).iterator(); iterator.hasNext();) {
 83  0
                             Element userElement = (Element) iterator.next();
 84  0
                             KimEntityImpl entity = constructEntity(userElement);
 85  0
                             constructPrincipal(userElement, entity.getEntityId());
 86  0
                     }
 87  0
             }
 88  0
     }
 89  
     
 90  
     protected KimEntityImpl constructEntity(Element userElement) {
 91  0
         SequenceAccessorService sas = KNSServiceLocator.getSequenceAccessorService();
 92  
             
 93  0
             String firstName = userElement.getChildTextTrim(GIVEN_NAME_ELEMENT, NAMESPACE);
 94  0
         String lastName = userElement.getChildTextTrim(LAST_NAME_ELEMENT, NAMESPACE);
 95  0
         String emplId = userElement.getChildTextTrim(EMPL_ID_ELEMENT, NAMESPACE);
 96  0
         String entityTypeCode = userElement.getChildTextTrim(TYPE_ELEMENT, NAMESPACE);
 97  0
         if (StringUtils.isBlank(entityTypeCode)) {
 98  0
                 entityTypeCode = "PERSON";
 99  
         }
 100  
             
 101  0
         Long entityId = sas.getNextAvailableSequenceNumber("KRIM_ENTITY_ID_S", 
 102  
                         KimEntityEmploymentInformationImpl.class);
 103  
         
 104  
         // if they define an empl id, let's set that up
 105  0
         KimEntityEmploymentInformationImpl emplInfo = null;
 106  0
         if (!StringUtils.isBlank(emplId)) {
 107  0
                 emplInfo = new KimEntityEmploymentInformationImpl();
 108  0
                 emplInfo.setActive(true);
 109  0
                 emplInfo.setEmployeeId(emplId);
 110  0
                 emplInfo.setPrimary(true);
 111  0
                 emplInfo.setEntityId("" + entityId);
 112  0
                 emplInfo.setEntityEmploymentId(emplId);
 113  0
                 emplInfo.setEntityAffiliationId(null);
 114  
         }
 115  
         
 116  
             
 117  0
                 KimEntityImpl entity = new KimEntityImpl();
 118  0
                 entity.setActive(true);
 119  0
                 entity.setEntityId("" + entityId);
 120  0
                 List<KimEntityEmploymentInformationImpl> emplInfos = new ArrayList<KimEntityEmploymentInformationImpl>();
 121  0
                 if (emplInfo != null) {
 122  0
                         emplInfos.add(emplInfo);
 123  
                 }
 124  0
                 entity.setEmploymentInformation(emplInfos);
 125  
                 
 126  0
                 KimEntityEntityTypeImpl entityType = new KimEntityEntityTypeImpl();
 127  
                 //entity.getEntityTypes().add(entityType);
 128  0
                 entityType.setEntityTypeCode(entityTypeCode);
 129  0
                 entityType.setEntityId(entity.getEntityId());
 130  0
                 entityType.setActive(true);
 131  0
                 entityType.setVersionNumber(new Long(1));
 132  0
                 String emailAddress = userElement.getChildTextTrim(EMAIL_ELEMENT, NAMESPACE);
 133  0
                 if (!StringUtils.isBlank(emailAddress)) {
 134  0
                         Long emailId = sas.getNextAvailableSequenceNumber(
 135  
                                         "KRIM_ENTITY_EMAIL_ID_S", KimEntityEmailImpl.class);
 136  0
                         KimEntityEmailImpl email = new KimEntityEmailImpl();
 137  0
                         email.setActive(true);
 138  0
                         email.setEntityEmailId("" + emailId);
 139  0
                         email.setEntityTypeCode(entityTypeCode);
 140  
                         // must be in krim_email_typ_t.email_typ_cd:
 141  0
                         email.setEmailTypeCode("WRK");
 142  0
                         email.setVersionNumber(new Long(1));
 143  0
                         email.setEmailAddress(emailAddress);
 144  0
                         email.setDefaultValue(true);
 145  0
                         email.setEntityId(entity.getEntityId());
 146  0
                         List<KimEntityEmail> emailAddresses = new ArrayList<KimEntityEmail>(1);
 147  0
                         emailAddresses.add(email);
 148  0
                         entityType.setEmailAddresses(emailAddresses);
 149  
                         //email = (KimEntityEmailImpl)KNSServiceLocatorInternal.getBusinessObjectService().save(email);
 150  
                 }
 151  0
                 List<KimEntityEntityTypeImpl> entityTypes = new ArrayList<KimEntityEntityTypeImpl>(1);
 152  0
                 entityTypes.add(entityType);
 153  0
                 entity.setEntityTypes(entityTypes);
 154  
                 
 155  0
                 if (!StringUtils.isBlank(firstName) || !StringUtils.isBlank(lastName)) {
 156  0
                         Long entityNameId = sas.getNextAvailableSequenceNumber(
 157  
                                         "KRIM_ENTITY_NM_ID_S", KimEntityNameImpl.class);
 158  0
                         KimEntityNameImpl name = new KimEntityNameImpl();
 159  0
                         name.setActive(true);
 160  0
                         name.setEntityNameId("" + entityNameId);
 161  0
                         name.setEntityId(entity.getEntityId());
 162  
                         // must be in krim_ent_nm_typ_t.ent_nm_typ_cd
 163  0
                         name.setNameTypeCode("PRFR");
 164  0
                         name.setFirstName(firstName);
 165  0
                         name.setMiddleName("");
 166  0
                         name.setLastName(lastName);
 167  0
                         name.setDefaultValue(true);
 168  
                         
 169  0
                         entity.getNames().add(name);
 170  
                 }
 171  
 
 172  0
                 entity = (KimEntityImpl) KNSServiceLocator.getBusinessObjectService().save(entity);
 173  
                 
 174  0
                 return entity;
 175  
     }
 176  
     
 177  
     protected KimPrincipalImpl constructPrincipal(Element userElement, String entityId) {
 178  0
             String principalId = userElement.getChildTextTrim(WORKFLOW_ID_ELEMENT, NAMESPACE);
 179  0
             if (principalId == null) {
 180  0
                     principalId = userElement.getChildTextTrim(PRINCIPAL_ID_ELEMENT, NAMESPACE);
 181  
             }
 182  0
             String principalName = userElement.getChildTextTrim(AUTHENTICATION_ID_ELEMENT, NAMESPACE);
 183  0
             if (principalName == null) {
 184  0
                     principalName = userElement.getChildTextTrim(PRINCIPAL_NAME_ELEMENT, NAMESPACE);
 185  
             }
 186  
             
 187  0
                 KimPrincipalImpl principal = new KimPrincipalImpl();
 188  0
                 principal.setActive(true);
 189  0
                 principal.setPrincipalId(principalId);
 190  0
                 principal.setPrincipalName(principalName);
 191  0
                 principal.setEntityId(entityId);
 192  0
                 principal = (KimPrincipalImpl) KNSServiceLocator.getBusinessObjectService().save(principal);
 193  
                 
 194  0
                 return principal;
 195  
     }
 196  
 
 197  
 }