Coverage Report - org.kuali.student.enrollment.class2.courseoffering.service.impl.CourseOfferingInfoMaintainableImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseOfferingInfoMaintainableImpl
0%
0/174
0%
0/24
5.667
 
 1  
 package org.kuali.student.enrollment.class2.courseoffering.service.impl;
 2  
 
 3  
 import org.apache.commons.lang.StringUtils;
 4  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 5  
 import org.kuali.rice.krad.maintenance.MaintenanceDocument;
 6  
 import org.kuali.rice.krad.maintenance.MaintainableImpl;
 7  
 import org.kuali.rice.krad.util.KRADConstants;
 8  
 import org.kuali.student.enrollment.courseoffering.dto.ActivityOfferingInfo;
 9  
 import org.kuali.student.enrollment.courseoffering.dto.CourseOfferingInfo;
 10  
 import org.kuali.student.enrollment.courseoffering.dto.OfferingInstructorInfo;
 11  
 import org.kuali.student.enrollment.courseoffering.dto.RegistrationGroupInfo;
 12  
 import org.kuali.student.enrollment.courseoffering.service.CourseOfferingService;
 13  
 import org.kuali.student.lum.course.dto.ActivityInfo;
 14  
 import org.kuali.student.lum.course.dto.CourseInfo;
 15  
 import org.kuali.student.lum.course.dto.FormatInfo;
 16  
 import org.kuali.student.lum.course.service.CourseService;
 17  
 import org.kuali.student.lum.course.service.CourseServiceConstants;
 18  
 import org.kuali.student.r2.common.dto.ContextInfo;
 19  
 import org.kuali.student.r2.common.dto.MeetingScheduleInfo;
 20  
 import org.kuali.student.r2.common.util.constants.LprServiceConstants;
 21  
 import org.kuali.student.r2.core.type.dto.TypeInfo;
 22  
 import org.kuali.student.r2.common.exceptions.*;
 23  
 import org.kuali.student.r2.common.util.constants.CourseOfferingServiceConstants;
 24  
 import org.kuali.student.r2.common.util.constants.LrcServiceConstants;
 25  
 import org.kuali.student.r2.common.util.constants.LuiServiceConstants;
 26  
 
 27  
 import javax.xml.namespace.QName;
 28  
 import java.util.ArrayList;
 29  
 import java.util.Collections;
 30  
 import java.util.List;
 31  
 import java.util.Map;
 32  
 import java.util.Random;
 33  
 import org.kuali.student.enrollment.courseoffering.dto.FormatOfferingInfo;
 34  
 
 35  
 
 36  0
 public class CourseOfferingInfoMaintainableImpl extends MaintainableImpl {
 37  
     private static final long serialVersionUID = 1L;
 38  
     private static final String DEFAULT_DOCUMENT_DESC_FOR_CREATING_COURSE_OFFERING =
 39  
                                                             "Create a new course offering";
 40  
     private static final String DEFAULT_DOCUMENT_DESC_FOR_EDITING_COURSE_OFFERING =
 41  
                                                             "Edit an existing course offering";
 42  
     private static final String DEFAULT_DOCUMENT_DESC_FOR_COPYING_COURSE_OFFERING =
 43  
                                                             "Copy from an existing course offering to create a new one";
 44  
     private transient CourseService courseService;
 45  
     private transient CourseOfferingService courseOfferingService;
 46  
 
 47  
     // TODO - all exception handling in this method needs to 'manually' roll back what has been
 48  
     // changed in the database before the exception was caught
 49  
     @Override
 50  
     public void saveDataObject() {
 51  0
         CourseOfferingInfo courseOfferingInfo = (CourseOfferingInfo) getDataObject();
 52  
 //        System.out.println(">>>>> in CourseOfferingInfoMaintainableImpl.saveDataObject method");
 53  
 
 54  
         //get termId from the user input through UI
 55  0
         String termId = courseOfferingInfo.getTermId();
 56  
         //get courseId from courseOfferingInfo, which is retrieved based on course Code that the user input through UI
 57  0
         String courseId = courseOfferingInfo.getCourseId();
 58  
 
 59  0
         CourseInfo course = null;
 60  
         try {
 61  0
             course = getCourseService().getCourse(courseId);
 62  0
         } catch (org.kuali.student.common.exceptions.OperationFailedException ofe) {
 63  0
             System.out.println("call getCourseService().getCourse(courseId), and get OperationFailedException:  " + ofe.toString());
 64  0
         } catch (org.kuali.student.common.exceptions.DoesNotExistException dnee) {
 65  0
             System.out.println("call getCourseService().getCourse(courseId), and get DoesNotExistException:  " + dnee.toString());
 66  0
         } catch (org.kuali.student.common.exceptions.InvalidParameterException ipe) {
 67  0
             System.out.println("call getCourseService().getCourse(courseId), and get InvalidParameterException:  " + ipe.toString());
 68  0
         } catch (org.kuali.student.common.exceptions.PermissionDeniedException pde) {
 69  0
             System.out.println("call getCourseService().getCourse(courseId), and get PermissionDeniedException:  " + pde.toString());
 70  0
         } catch (org.kuali.student.common.exceptions.MissingParameterException mpe) {
 71  0
             System.out.println("call getCourseService().getCourse(courseId), and get MissingParameterException:  " + mpe.toString());
 72  0
         }
 73  
         // TODO - this entire method needs more complete exception handling; then remove this
 74  0
         if (null == course) return;
 75  
 
 76  
         //form the formatIds
 77  0
         List<String> formatIds = new ArrayList<String>();
 78  
         /*
 79  
                             List<FormatInfo> formatList = course.getFormats();
 80  
                             for (FormatInfo format : formatList){
 81  
                                 formatIds.add(format.getId());
 82  
                             }
 83  
             */
 84  0
         FormatInfo firstFormat = null;
 85  
         // only pick the first format based on Larry's suggestion to simplify core slice development
 86  0
         if (course != null) {
 87  0
             firstFormat = course.getFormats().get(0);
 88  0
             formatIds.add(firstFormat.getId());
 89  
         }
 90  
 
 91  0
         CourseOfferingInfo coi = new CourseOfferingInfo ();
 92  0
         coi.setTypeKey(LuiServiceConstants.COURSE_OFFERING_TYPE_KEY);
 93  0
         coi.setStateKey(LuiServiceConstants.LUI_DRAFT_STATE_KEY);
 94  
         try {
 95  
             //create a CourseOfferingInfo coi
 96  0
             coi = getCourseOfferingService().createCourseOffering(courseId, 
 97  
                     termId, 
 98  
                     coi.getTypeKey(), 
 99  
                     coi, 
 100  
                     Collections.EMPTY_LIST,
 101  
                     new ContextInfo());
 102  0
         } catch (Exception ex) {
 103  0
           throw new RuntimeException (ex);
 104  0
         }
 105  
 
 106  
         /*
 107  
         //If grading options not present in course, set a default one in CO
 108  
         if (coi.getGradingOptionIds() == null || coi.getGradingOptionIds().isEmpty()){
 109  
             List<String> gradingOptions = new ArrayList();
 110  
             gradingOptions.add(LrcServiceConstants.RESULT_SCALE_TYPE_KEY_GRADE);
 111  
             coi.setGradingOptionIds(gradingOptions);
 112  
         }
 113  
         */
 114  
         //create a list of instructors
 115  0
         List<OfferingInstructorInfo> instructors = courseOfferingInfo.getInstructors();
 116  
 
 117  
         //set the list of instructors to the CourseOfferingInfo coi
 118  0
         if (coi != null) {
 119  0
             coi.setInstructors(instructors);
 120  0
             coi.setStateKey(LuiServiceConstants.LUI_OFFERED_STATE_KEY);
 121  0
             coi.setMaximumEnrollment(courseOfferingInfo.getMaximumEnrollment());
 122  
 
 123  
             //update the CourseOfferingInfo coi in DB with instructors info
 124  
             try {
 125  0
                 getCourseOfferingService().updateCourseOffering(coi.getId(), coi, new ContextInfo());
 126  0
             } catch (OperationFailedException ofe) {
 127  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get OperationFailedException:  " + ofe.toString());
 128  0
             } catch (InvalidParameterException ipe) {
 129  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get InvalidParameterException:  " + ipe.toString());
 130  0
             } catch (DoesNotExistException dnee) {
 131  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get DoesNotExistException:  " + dnee.toString());
 132  0
             } catch (PermissionDeniedException pde) {
 133  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get PermissionDeniedException:  " + pde.toString());
 134  0
             } catch (MissingParameterException mpe) {
 135  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get MissingParameterException:  " + mpe.toString());
 136  0
             } catch (ReadOnlyException roe) {
 137  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get ReadOnlyException:  " + roe.toString());
 138  0
             } catch (VersionMismatchException vme) {
 139  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get VersionMismatchException:  " + vme.toString());
 140  0
             } catch (DataValidationErrorException dvee) {
 141  0
                 System.out.println("call courseOfferingService.updateCourseOffering() method, and get DataValidationErrorException:  " + dvee.toString());
 142  0
             }
 143  
         }
 144  
 
 145  
         //create a list of ActivityOfferingInfo based on activities defined in the format of the course
 146  0
         List<String> courseOfferingIds = new ArrayList<String>();
 147  0
         courseOfferingIds.add(coi.getId());
 148  
 
 149  0
         List<ActivityOfferingInfo> activityOfferingInfoList = new ArrayList<ActivityOfferingInfo>();
 150  0
         List<String> activityOfferingIds = new ArrayList<String>();
 151  0
         if (firstFormat != null) {
 152  0
             List<ActivityInfo> activities = firstFormat.getActivities();
 153  0
             for (ActivityInfo activity : activities) {
 154  0
                 ActivityOfferingInfo activityOfferingInfo = new ActivityOfferingInfo();
 155  0
                 activityOfferingInfo.setInstructors(instructors);
 156  
                 //It looks like termId and activityId are required fields to create an ActivityOfferingInfo data entry
 157  0
                 activityOfferingInfo.setTermId(termId);
 158  0
                 activityOfferingInfo.setActivityId(activity.getId());
 159  
                 try {
 160  0
                     List<TypeInfo> activityOfferingTypes = getCourseOfferingService().getActivityOfferingTypesForActivityType(activity.getActivityType(), new ContextInfo());
 161  0
                     if (activityOfferingTypes.size() > 1) {
 162  0
                         System.out.println(">>for core slice, it should be 1-to-1 mapping. so only take the first one -- " + activityOfferingTypes.get(0).getKey());
 163  
                     }
 164  
 
 165  
                     //for Core Slice -- if the mapping between Canonical Activity to Activity Offering is not 1-to-1,
 166  
                     //(see https://wiki.kuali.org/display/STUDENT/Learning+Unit+Instance+Types+and+States#LearningUnitInstanceTypesandStates-Types)
 167  
                     //only take the first one.
 168  0
                     activityOfferingInfo.setTypeKey(activityOfferingTypes.get(0).getKey());
 169  0
                     activityOfferingInfo.setStateKey(LuiServiceConstants.LUI_OFFERED_STATE_KEY);
 170  
                     //TODO remove this fake generation when we are getting real times from the form
 171  
                     // TODO: fix this to set the schedule id from the schedule service
 172  0
                     String scheduleId = null;
 173  0
                     activityOfferingInfo.setScheduleId(scheduleId);
 174  
                     // activityOfferingInfo.setMeetingSchedules(generateFakeMeetingTimes());
 175  0
                     List<FormatOfferingInfo> formats = this. getCourseOfferingService().getFormatOfferingsByCourseOffering(coi.getId(), new ContextInfo());
 176  0
                     activityOfferingInfo.setFormatOfferingId(formats.get(0).getId ());
 177  0
                     activityOfferingInfo = getCourseOfferingService().createActivityOffering
 178  
                             (activityOfferingInfo.getFormatOfferingId(),
 179  
                             activityOfferingInfo.getActivityId(),
 180  
                             activityOfferingInfo.getTypeKey(),
 181  
                             activityOfferingInfo, 
 182  
                             new ContextInfo());
 183  
 
 184  0
                     activityOfferingInfoList.add(activityOfferingInfo);
 185  0
                     activityOfferingIds.add(activityOfferingInfo.getId());
 186  
 
 187  
                     //create a RegiistrationGroup after successfully create all activityOfferingInfos
 188  0
                     RegistrationGroupInfo registrationGroupInfo = new RegistrationGroupInfo();
 189  0
                     registrationGroupInfo.setCourseOfferingId(coi.getId());
 190  0
                     registrationGroupInfo.setMaximumEnrollment(courseOfferingInfo.getMaximumEnrollment());
 191  0
                     registrationGroupInfo.setActivityOfferingIds(activityOfferingIds);
 192  0
                     registrationGroupInfo.setStateKey(LuiServiceConstants.LUI_OFFERED_STATE_KEY);
 193  0
                     registrationGroupInfo.setTypeKey(LuiServiceConstants.REGISTRATION_GROUP_TYPE_KEY);
 194  
                     // TODO Change this formatOffering to actual one when implementing
 195  0
                     String formatOfferingId = null;
 196  
                     try {
 197  0
                         getCourseOfferingService().createRegistrationGroup(formatOfferingId,registrationGroupInfo.getTypeKey(), registrationGroupInfo, new ContextInfo());
 198  0
                     } catch (OperationFailedException ofe) {
 199  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get OperationFailedException:  " + ofe.toString());
 200  0
                     } catch (InvalidParameterException ipe) {
 201  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get InvalidParameterException:  " + ipe.toString());
 202  0
                     } catch (DoesNotExistException dnee) {
 203  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get DoesNotExistException:  " + dnee.toString());
 204  0
                     } catch (PermissionDeniedException pde) {
 205  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get PermissionDeniedException:  " + pde.toString());
 206  0
                     } catch (MissingParameterException mpe) {
 207  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get MissingParameterException:  " + mpe.toString());
 208  0
                     } catch (DataValidationErrorException dvee) {
 209  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get DataValidationErrorException:  " + dvee.toString());
 210  0
                     } catch (ReadOnlyException roe) {
 211  0
                         System.out.println("call courseOfferingService.createRegistrationGroup() method, and get ReadOnlyException:  " + roe.toString());
 212  0
                     }
 213  0
                 } catch (OperationFailedException ofe) {
 214  0
                     System.out.println("call courseOfferingService.getActivityOfferingTypesForActivityType() or createActivityOffering() method, and get OperationFailedException:  " + ofe.toString());
 215  0
                 } catch (InvalidParameterException ipe) {
 216  0
                     System.out.println("call courseOfferingService.getActivityOfferingTypesForActivityType() or createActivityOffering() method, and get InvalidParameterException:  " + ipe.toString());
 217  0
                 } catch (PermissionDeniedException pde) {
 218  0
                     System.out.println("call courseOfferingService.createActivityOffering() method, and get PermissionDeniedException:  " + pde.toString());
 219  0
                 } catch (MissingParameterException mpe) {
 220  0
                     System.out.println("call courseOfferingService.getActivityOfferingTypesForActivityType() or createActivityOffering() method, and get MissingParameterException:  " + mpe.toString());
 221  0
                 } catch (DataValidationErrorException dvee) {
 222  0
                     System.out.println("call courseOfferingService.createActivityOffering() method, and get DataValidationErrorException:  " + dvee.toString());
 223  0
                 } catch (DoesNotExistException dnee) {
 224  0
                     System.out.println("call courseOfferingService.getActivityOfferingTypesForActivityType() method, and get DoesNotExistException:  " + dnee.toString());
 225  0
                 } catch (ReadOnlyException roe) {
 226  0
                     System.out.println("call courseOfferingService.getActivityOfferingTypesForActivityType() method, and get ReadOnlyException:  " + roe.toString());
 227  0
                 }
 228  0
             }
 229  
         }
 230  0
     }
 231  
 
 232  
     /**
 233  
      * @see org.kuali.rice.krad.maintenance.MaintainableImpl#prepareForSave()
 234  
      */
 235  
     @Override
 236  
     public void prepareForSave() {
 237  0
         if (getMaintenanceAction().equalsIgnoreCase(KRADConstants.MAINTENANCE_NEW_ACTION)) {
 238  
 //          System.out.println(">>>>> in CourseOfferingInfoMaintainableImpl.prepareForSave method");
 239  
 
 240  
             //set state and type value for the courseOfferingInfo
 241  0
             CourseOfferingInfo newCourseOffering = (CourseOfferingInfo) getDataObject();
 242  0
             newCourseOffering.setTypeKey(LuiServiceConstants.COURSE_OFFERING_TYPE_KEY);
 243  0
             newCourseOffering.setStateKey(LuiServiceConstants.LUI_OFFERED_STATE_KEY);
 244  
 
 245  
             //for each instructor, set personId to Id field, state, and type
 246  0
             List<OfferingInstructorInfo> instructors =  newCourseOffering.getInstructors();
 247  0
             for(OfferingInstructorInfo instructor: instructors){
 248  0
                 instructor.setId(instructor.getPersonId());
 249  0
                 instructor.setStateKey(LprServiceConstants.ASSIGNED_STATE_KEY);
 250  0
                 instructor.setTypeKey(LprServiceConstants.INSTRUCTOR_MAIN_TYPE_KEY);
 251  
             }
 252  
         }
 253  0
         super.prepareForSave();
 254  0
     }
 255  
 
 256  
     /**
 257  
      * @see org.kuali.rice.krad.maintenance.Maintainable#processAfterCopy
 258  
      */
 259  
     @Override
 260  
     public void processAfterCopy(MaintenanceDocument document, Map<String, String[]> requestParameters) {
 261  
         //set documentDescription to document.documentHeader.documentDescription
 262  0
         document.getDocumentHeader().setDocumentDescription(DEFAULT_DOCUMENT_DESC_FOR_COPYING_COURSE_OFFERING);
 263  0
     }
 264  
 
 265  
     /**
 266  
      * @see org.kuali.rice.krad.maintenance.Maintainable#processAfterEdit
 267  
      */
 268  
     @Override
 269  
     public void processAfterEdit(MaintenanceDocument document, Map<String, String[]> requestParameters) {
 270  
         //set documentDescription to document.documentHeader.documentDescription
 271  0
         document.getDocumentHeader().setDocumentDescription(DEFAULT_DOCUMENT_DESC_FOR_EDITING_COURSE_OFFERING);
 272  
 
 273  0
     }
 274  
 
 275  
     /**
 276  
      * @see org.kuali.rice.krad.maintenance.Maintainable#processAfterNew
 277  
      */
 278  
     @Override
 279  
     public void processAfterNew(MaintenanceDocument document, Map<String, String[]> requestParameters) {
 280  
         //set documentDescription to document.documentHeader.documentDescription
 281  0
         document.getDocumentHeader().setDocumentDescription(DEFAULT_DOCUMENT_DESC_FOR_CREATING_COURSE_OFFERING);
 282  
 
 283  0
     }
 284  
 
 285  
     protected CourseService getCourseService() {
 286  0
         if (courseService == null) {
 287  0
             courseService = (CourseService) GlobalResourceLoader.getService(new QName(CourseServiceConstants.COURSE_NAMESPACE, "CourseService"));
 288  
         }
 289  0
         return courseService;
 290  
     }
 291  
 
 292  
     protected CourseOfferingService getCourseOfferingService() {
 293  0
         if (courseOfferingService == null) {
 294  0
             courseOfferingService = (CourseOfferingService) GlobalResourceLoader.getService(new QName(CourseOfferingServiceConstants.NAMESPACE, "CourseOfferingService"));
 295  
         }
 296  0
         return courseOfferingService;
 297  
     }
 298  
 
 299  
     //TODO remove this fake generation below when we are getting real times from the form
 300  0
     private static final String[] days = {"MO", "TU", "WE", "TH", "FR"};
 301  0
     private static final String[] hours = {"07", "08", "09", "10", "11", "12", "13", "14", "15", "16", "17"};
 302  0
     private static final String[] mins = {"00", "15", "30", "45"};
 303  
 
 304  
     private List<MeetingScheduleInfo> generateFakeMeetingTimes() {
 305  0
         List<MeetingScheduleInfo> infos = new ArrayList<MeetingScheduleInfo>();
 306  0
         Random generator = new Random();
 307  
 
 308  0
         int randomNum = generator.nextInt(2);
 309  0
         String daysString = "";
 310  0
         String daysString2 = "";
 311  0
         if (randomNum == 0) {
 312  0
             int day1Index = generator.nextInt(4);
 313  0
             daysString = days[day1Index];
 314  0
             daysString2 = days[day1Index + 1];
 315  0
         } else {
 316  0
             int day1Index = generator.nextInt(2);
 317  0
             int day2Index = generator.nextInt(3) + 2;
 318  0
             daysString = days[day1Index] + "," + days[day2Index];
 319  
         }
 320  
 
 321  0
         String time = daysString + ";" + generateHours();
 322  0
         MeetingScheduleInfo m1 = new MeetingScheduleInfo();
 323  0
         m1.setScheduleId(time);
 324  0
         infos.add(m1);
 325  0
         if (StringUtils.isNotBlank(daysString2)) {
 326  0
             String time2 = daysString2 + ";" + generateHours();
 327  0
             MeetingScheduleInfo m2 = new MeetingScheduleInfo();
 328  0
             m2.setScheduleId(time2);
 329  0
             infos.add(m2);
 330  
         }
 331  0
         return infos;
 332  
 
 333  
 
 334  
     }
 335  
 
 336  
     private String generateHours() {
 337  0
         Random generator = new Random();
 338  0
         int randomNum = generator.nextInt(2);
 339  
 
 340  0
         int hourIndex1 = generator.nextInt(10);
 341  0
         String hour1 = hours[hourIndex1];
 342  0
         String hour2 = hours[hourIndex1 + 1];
 343  
 
 344  0
         int minIndex1 = generator.nextInt(3);
 345  0
         String min1 = mins[minIndex1];
 346  0
         String min2 = mins[minIndex1 + randomNum];
 347  
 
 348  0
         return hour1 + min1 + "," + hour2 + min2;
 349  
     }
 350  
 }