Coverage Report - org.kuali.student.lum.workflow.qualifierresolver.OrganizationCurriculumCommitteeQualifierResolver
 
Classes in this File Line Coverage Branch Coverage Complexity
OrganizationCurriculumCommitteeQualifierResolver
0%
0/33
0%
0/16
8.5
 
 1  
 /**
 2  
  * 
 3  
  */
 4  
 package org.kuali.student.lum.workflow.qualifierresolver;
 5  
 
 6  
 import java.util.ArrayList;
 7  
 import java.util.LinkedHashMap;
 8  
 import java.util.List;
 9  
 import java.util.Map;
 10  
 
 11  
 import org.apache.commons.lang.StringUtils;
 12  
 import org.kuali.rice.kew.engine.RouteContext;
 13  
 import org.kuali.rice.student.bo.KualiStudentKimAttributes;
 14  
 import org.kuali.student.common.exceptions.DoesNotExistException;
 15  
 import org.kuali.student.core.organization.dto.OrgInfo;
 16  
 import org.kuali.student.core.organization.dto.OrgOrgRelationInfo;
 17  
 import org.kuali.student.core.organization.service.OrganizationService;
 18  
 import org.kuali.student.lum.workflow.node.OrganizationDynamicNode;
 19  
 
 20  
 /**
 21  
  * A qualifier resolver class that is used by the hierarchy routing node {@link OrganizationDynamicNode}.
 22  
  * 
 23  
  * This qualifier resolver will get the organization id value from inside the current route node instance and use the
 24  
  * {@link OrganizationService#getOrgOrgRelationsByOrg(String)} method to find all relations to it. From those relations
 25  
  * this class will select the ones that are both active and of the relation type matching
 26  
  * {@link AbstractOrganizationServiceQualifierResolver.KUALI_ORG_TYPE_CURRICULUM_PARENT}. Once the list of those relations has been
 27  
  * determined this qualifier resolver will select any of the organizations that match the above relation details but
 28  
  * also only organizations that are of the type {@link AbstractOrganizationServiceQualifierResolver.KUALI_ORG_COC}. Those
 29  
  * organizations will be returned as qualifications with the details being the organization id and the organization
 30  
  * short name fields.
 31  
  * 
 32  
  * If no relation is found that is both active and of the relation type matching
 33  
  * {@link AbstractOrganizationServiceQualifierResolver.KUALI_ORG_TYPE_CURRICULUM_PARENT} then this class will use the organization
 34  
  * found on the current route node instance as the qualification returned.
 35  
  * 
 36  
  */
 37  0
 public class OrganizationCurriculumCommitteeQualifierResolver extends AbstractOrganizationServiceQualifierResolver {
 38  0
     protected static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(OrganizationCurriculumCommitteeQualifierResolver.class);
 39  
 
 40  
     @Override
 41  
     public List<Map<String,String>> resolve(RouteContext routeContext) {
 42  
         // get the organization id from the current route node instance and error out if not found
 43  0
         String orgIdValue = routeContext.getNodeInstance().getNodeState(OrganizationDynamicNode.NODE_STATE_ORG_ID_KEY).getValue();
 44  0
         if (StringUtils.isBlank(orgIdValue)) {
 45  0
             throw new RuntimeException("Cannot find valid organization ID in Route Node Instance Node States");
 46  
         }
 47  0
         if (LOG.isDebugEnabled()) {
 48  0
             LOG.debug("orgIdValue = '" + orgIdValue + "'");
 49  
         }
 50  
 
 51  
         try {
 52  0
             List<Map<String,String>> attributeSets = new ArrayList<Map<String,String>>();
 53  
             // find the OrgOrgRelationInfo objects associated with the org from the route node instance
 54  0
             List<OrgOrgRelationInfo> orgRelationInfos = getOrganizationService().getOrgOrgRelationsByOrg(orgIdValue);
 55  0
             for (OrgOrgRelationInfo orgOrgRelationInfo : orgRelationInfos) {
 56  
                 // check that the relationship is active
 57  0
                 if (StringUtils.equals("Active", orgOrgRelationInfo.getState())) {
 58  
                     // check for the proper relationship type
 59  0
                     if (StringUtils.equals(AbstractOrganizationServiceQualifierResolver.KUALI_ORG_TYPE_CURRICULUM_PARENT, orgOrgRelationInfo.getType())) {
 60  0
                         OrgInfo nextNodeOrgInfo = getOrganization(orgOrgRelationInfo.getRelatedOrgId());
 61  
                         // check the org type of the related org is the proper org type
 62  0
                         if (StringUtils.equals(AbstractOrganizationServiceQualifierResolver.KUALI_ORG_COC, nextNodeOrgInfo.getType())) {
 63  0
                             if (LOG.isDebugEnabled()) {
 64  0
                                 LOG.debug("---- Related Org Relation: " + nextNodeOrgInfo.getId() + " - " + nextNodeOrgInfo.getShortName() + " (" + nextNodeOrgInfo.getLongName() + ")");
 65  
                             }
 66  0
                             Map<String,String> attributeSet = new LinkedHashMap<String,String>();
 67  0
                             attributeSet.put(KualiStudentKimAttributes.QUALIFICATION_ORG_ID, nextNodeOrgInfo.getId());
 68  0
                             attributeSets.add(attributeSet);
 69  
                         }
 70  0
                     }
 71  
                 }
 72  
             }
 73  
             // if no org is found then use the org on the route node instance
 74  0
             if (attributeSets.isEmpty()) {
 75  0
                 OrgInfo currentNodeOrg = getOrganization(orgIdValue);
 76  0
                 Map<String,String> attributeSet = new LinkedHashMap<String,String>();
 77  0
                 attributeSet.put(KualiStudentKimAttributes.QUALIFICATION_ORG_ID, currentNodeOrg.getId());
 78  0
                 attributeSets.add(attributeSet);
 79  
             }
 80  0
             return attributeSets;
 81  0
         } catch (Exception e) {
 82  0
             LOG.error("Error getting organization(s) or organization relations", e);
 83  0
             throw new RuntimeException(e);
 84  
         }
 85  
     }
 86  
 
 87  
     protected OrgInfo getOrganization(String orgId) throws Exception {
 88  
         try {
 89  0
             return getOrganizationService().getOrganization(orgId);
 90  0
         } catch (DoesNotExistException e) {
 91  0
             LOG.error("No valid organization found for id '" + orgId + "'", e);
 92  0
             throw e;
 93  
         }
 94  
     }
 95  
 
 96  
 }