Coverage Report - org.kuali.student.enrollment.class2.courseoffering.validation.impl.CourseOfferingRule
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseOfferingRule
0%
0/60
0%
0/24
4.2
 
 1  
 package org.kuali.student.enrollment.class2.courseoffering.validation.impl;
 2  
 
 3  
 import javax.xml.namespace.QName;
 4  
 import java.util.ArrayList;
 5  
 import java.util.List;
 6  
 import java.util.Map;
 7  
 import java.util.HashMap;
 8  
 
 9  
 import org.hibernate.mapping.Index;
 10  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 11  
 import org.kuali.rice.kim.api.identity.IdentityService;
 12  
 import org.kuali.rice.kim.api.services.KimApiServiceLocator;
 13  
 import org.kuali.rice.krad.bo.PersistableBusinessObject;
 14  
 import org.kuali.rice.krad.maintenance.MaintenanceDocument;
 15  
 import org.kuali.rice.krad.rules.MaintenanceDocumentRuleBase;
 16  
 import org.kuali.rice.krad.util.GlobalVariables;
 17  
 import org.kuali.rice.krad.util.KRADConstants;
 18  
 
 19  
 import org.kuali.rice.krad.web.form.LookupForm;
 20  
 import org.kuali.student.common.search.dto.*;
 21  
 import org.kuali.student.enrollment.courseoffering.dto.CourseOfferingInfo;
 22  
 import org.kuali.student.enrollment.courseoffering.dto.OfferingInstructorInfo;
 23  
 import org.kuali.student.lum.lu.service.LuService;
 24  
 import org.kuali.student.lum.lu.service.LuServiceConstants;
 25  
 
 26  
 
 27  
 /**
 28  
  * Created by IntelliJ IDEA.
 29  
  * User: huangb
 30  
  * Date: 9/20/11
 31  
  * Time: 6:15 PM
 32  
  * To change this template use File | Settings | File Templates.
 33  
  */
 34  0
 public class CourseOfferingRule extends MaintenanceDocumentRuleBase {
 35  
      private static final String COURSE_CODE_PROPERTY_PATH = "document.newMaintainableObject.dataObject.courseOfferingCode";
 36  
 
 37  
      private transient LuService luService;
 38  
      private transient IdentityService identityService;
 39  
 
 40  
     /**
 41  
      * @see org.kuali.rice.kns.maintenance.rules.MaintenanceDocumentRuleBase#processCustomRouteDocumentBusinessRules(org.kuali.rice.kns.document.MaintenanceDocument)
 42  
      */
 43  
     @Override
 44  
     protected boolean processCustomRouteDocumentBusinessRules(MaintenanceDocument document) {
 45  0
         boolean isValid = true;
 46  
 
 47  
         // retrieve and verify a courseId based on course Code, and set it to the courseOfferingInfo.
 48  0
         CourseOfferingInfo courseOfferingInfo = (CourseOfferingInfo)document.getDocumentDataObject();
 49  0
         String courseCode =  courseOfferingInfo.getCourseOfferingCode();
 50  0
         String courseId = retrieveCourseIdFromCourseCode(courseCode);
 51  0
         if (courseId == null) {
 52  0
              GlobalVariables.getMessageMap().putError(
 53  
                 COURSE_CODE_PROPERTY_PATH,"error.enroll.courseoffering.courseOfferingCode.notExists");
 54  0
              isValid = false;
 55  
         }
 56  
         else{
 57  0
              courseOfferingInfo.setCourseId(courseId);
 58  
         }
 59  
 
 60  
         // need to verify principalIds again since the user might modify the input after add it to the collection
 61  0
         List<OfferingInstructorInfo> instructors = courseOfferingInfo.getInstructors();
 62  0
         int index = 0;
 63  0
         for(OfferingInstructorInfo instructor : instructors){
 64  0
             String principalId = instructor.getPersonId();
 65  0
             if (getIdentityService().getPrincipal(principalId) == null) {
 66  0
                     GlobalVariables.getMessageMap().putError(
 67  
                      "document.newMaintainableObject.dataObject.instructors["+index+"]", "error.enroll.courseoffering.instructors.notExists", "The instructor: "+principalId+" does not exist.");
 68  0
                 isValid = false;
 69  
             }
 70  0
             index++;
 71  0
         }
 72  0
         isValid &= super.processCustomRouteDocumentBusinessRules(document);
 73  0
         isValid &= GlobalVariables.getMessageMap().hasNoErrors();
 74  
 
 75  0
         return isValid;
 76  
     }
 77  
 
 78  
 /*
 79  
     @Override
 80  
     public boolean processCustomAddCollectionLineBusinessRules(MaintenanceDocument document, String collectionName,
 81  
             PersistableBusinessObject line) {
 82  
         // need to verify principalId when add it to the collection
 83  
         List<OfferingInstructorInfo> instructors = courseOfferingInfo.getInstructors();
 84  
         int index = 0;
 85  
         for(OfferingInstructorInfo instructor : instructors){
 86  
             String principalId = instructor.getPersonId();
 87  
             if (getIdentityService().getPrincipal(principalId) == null) {
 88  
                 System.out.println(">>>Error: Fail to retrieve an instructor with instructorId equal to "+principalId);
 89  
                     GlobalVariables.getMessageMap().putError(
 90  
                      "instructors("+principalId+")", "error.enroll.courseoffering.instructors.notExists", "The instructor: "+principalId+" does not exist.");
 91  
                 isValid = false;
 92  
             }
 93  
             index++;
 94  
         }
 95  
     }
 96  
 */
 97  
 
 98  
     //Note: here I am using r1 LuService implementation!!!
 99  
     protected LuService getLuService() {
 100  0
         if(luService == null) {
 101  0
             luService = (LuService)GlobalResourceLoader.getService(new QName(LuServiceConstants.LU_NAMESPACE,"LuService"));
 102  
         }
 103  0
         return this.luService;
 104  
     }
 105  
 
 106  
     protected IdentityService getIdentityService() {
 107  0
                 if ( identityService == null ) {
 108  0
                         identityService = KimApiServiceLocator.getIdentityService();
 109  
                 }
 110  0
                 return identityService;
 111  
         }
 112  
 
 113  
     /*
 114  
      * return courseId for a specified courseCode
 115  
      */
 116  
     private String retrieveCourseIdFromCourseCode (String courseCode){
 117  0
         Map<String,String> fieldValues = new HashMap<String, String>();
 118  0
         fieldValues.put("code",courseCode);
 119  0
         List courseIds = getSearchResults(null, fieldValues, false);
 120  0
         if(courseIds.size() != 1){
 121  0
             return null;
 122  
         }
 123  
         else{
 124  0
             return (String) courseIds.get(0);
 125  
         }
 126  
     }
 127  
     /*
 128  
      * Use LuService for a general search to retrieve the courseId based on a specified course code in the search criteria
 129  
      */
 130  
     private List<?> getSearchResults(LookupForm lookupForm, Map<String, String> fieldValues, boolean unbounded) {
 131  0
         List <String> courseIds = new ArrayList<String>();
 132  0
         List<SearchParam> searchParams = new ArrayList<SearchParam>();
 133  0
         SearchParam qpv1 = new SearchParam();
 134  0
         qpv1.setKey("lu.queryParam.luOptionalType");
 135  0
         qpv1.setValue("kuali.lu.type.CreditCourse");
 136  0
         searchParams.add(qpv1);
 137  0
         SearchParam qpv2 = new SearchParam();
 138  0
         qpv1.setKey("lu.queryParam.luOptionalCode");
 139  0
         qpv1.setValue(fieldValues.get("code"));
 140  0
         searchParams.add(qpv2);
 141  
 
 142  0
         SearchRequest searchRequest = new SearchRequest();
 143  0
         searchRequest.setParams(searchParams);
 144  0
         searchRequest.setSearchKey("lu.search.mostCurrent.union");
 145  
 
 146  
         try {
 147  0
             SearchResult searchResult = getLuService().search(searchRequest);
 148  
 
 149  0
             if (searchResult.getRows().size() > 0) {
 150  0
                 for(SearchResultRow srrow : searchResult.getRows()){
 151  0
                     List<SearchResultCell> srCells = srrow.getCells();
 152  0
                     if(srCells != null && srCells.size() > 0){
 153  0
                         for(SearchResultCell srcell : srCells){
 154  0
                             if (srcell.getKey().equals("lu.resultColumn.cluId")) {
 155  0
                                 String courseId = srcell.getValue();
 156  0
                                 courseIds.add(courseId);
 157  0
                             }
 158  
                         }
 159  
                     }
 160  0
                 }
 161  
             }
 162  
 
 163  0
             return courseIds;
 164  0
         } catch (Exception e) {
 165  0
             throw new RuntimeException(e);
 166  
         }
 167  
     }
 168  
 
 169  
 }