Coverage Report - org.kuali.student.enrollment.class2.courseoffering.service.assembler.CourseOfferingAssembler
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseOfferingAssembler
0%
0/154
0%
0/60
4.846
 
 1  
 package org.kuali.student.enrollment.class2.courseoffering.service.assembler;
 2  
 
 3  
 import org.kuali.student.enrollment.courseoffering.dto.CourseOfferingInfo;
 4  
 import org.kuali.student.enrollment.courseoffering.dto.OfferingInstructorInfo;
 5  
 import org.kuali.student.enrollment.courseoffering.service.R1ToR2CopyHelper;
 6  
 import org.kuali.student.enrollment.lpr.dto.LuiPersonRelationInfo;
 7  
 import org.kuali.student.enrollment.lpr.service.LuiPersonRelationService;
 8  
 import org.kuali.student.enrollment.lui.dto.LuiIdentifierInfo;
 9  
 import org.kuali.student.enrollment.lui.dto.LuiInfo;
 10  
 import org.kuali.student.enrollment.lui.dto.LuiLuiRelationInfo;
 11  
 import org.kuali.student.enrollment.lui.service.LuiService;
 12  
 import org.kuali.student.lum.course.dto.CourseInfo;
 13  
 import org.kuali.student.r2.common.assembler.AssemblyException;
 14  
 import org.kuali.student.r2.common.assembler.DTOAssembler;
 15  
 import org.kuali.student.r2.common.assembler.EntityDTOAssembler;
 16  
 import org.kuali.student.r2.common.dto.AttributeInfo;
 17  
 import org.kuali.student.r2.common.dto.ContextInfo;
 18  
 import org.kuali.student.r2.common.exceptions.*;
 19  
 import org.kuali.student.r2.common.util.constants.LuiPersonRelationServiceConstants;
 20  
 import org.kuali.student.r2.common.util.constants.LuiServiceConstants;
 21  
 import org.kuali.student.r2.lum.lu.dto.LuCodeInfo;
 22  
 
 23  
 import java.util.ArrayList;
 24  
 import java.util.List;
 25  
 
 26  0
 public class CourseOfferingAssembler implements DTOAssembler<CourseOfferingInfo, LuiInfo>{
 27  
         private LuiService luiService;
 28  
         private LuiPersonRelationService lprService;
 29  
         
 30  
         public LuiService getLuiService() {
 31  0
                 return luiService;
 32  
         }
 33  
 
 34  
         public void setLuiService(LuiService luiService) {
 35  0
                 this.luiService = luiService;
 36  0
         }
 37  
 
 38  
         public LuiPersonRelationService getLprService() {
 39  0
                 return lprService;
 40  
         }
 41  
 
 42  
         public void setLprService(LuiPersonRelationService lprService) {
 43  0
                 this.lprService = lprService;
 44  0
         }
 45  
 
 46  
         @Override
 47  
         public CourseOfferingInfo assemble(LuiInfo lui, ContextInfo context) throws AssemblyException {
 48  0
                 if(lui != null){
 49  0
                         CourseOfferingInfo co = new CourseOfferingInfo();
 50  0
             EntityDTOAssembler<LuiInfo, CourseOfferingInfo> commonAssembler = new EntityDTOAssembler<LuiInfo, CourseOfferingInfo>();
 51  0
             co = commonAssembler.assemble(lui, co, context);
 52  0
                         co.setId(lui.getId());
 53  0
                         co.setMaximumEnrollment(lui.getMaximumEnrollment());
 54  0
                         co.setMinimumEnrollment(lui.getMinimumEnrollment());
 55  
 
 56  0
                         assembleLuiCodes(lui, co);
 57  
                         
 58  
                         //below undecided
 59  
                         //co.setHasWaitlist(lui.getHasWaitlist());
 60  
                         //co.setWaitlistTypeKey(lui.getWaitlistTypeKey());
 61  
                         //co.setWaitlistMaximum(lui.getWaitlistMaximum());
 62  
                         //co.setIsWaitlistCheckinRequired(lui.getIsWaitlistCheckinRequired());
 63  
                         //co.setWaitlistCheckinFrequency(lui.getWaitlistCheckinFrequency());
 64  
                         
 65  0
                         co.setCourseId(lui.getCluId());
 66  0
                         co.setTermId(lui.getAtpId());
 67  0
                         co.setUnitsDeployment(lui.getUnitsDeployment());
 68  0
                         co.setUnitsContentOwner(lui.getUnitsContentOwner());
 69  
 
 70  0
                         co.setFees(lui.getFees());
 71  0
                         co.setRevenues(lui.getRevenues());
 72  0
             co.setGradingOptionKeys(lui.getResultValuesGroupKeys());
 73  
 
 74  
             /*
 75  
              * From Bonnie: Comment out setting for Expenditure since we got  DataValidationErrorException:
 76  
              * Error(s) validating course offering Validation Results:
 77  
              *             [2] Path: [expenditure.id] - error.outOfRange data=[null]
 78  
              * the value of expenditure.id looks like this org.kuali.student.lum.course.dto.CourseExpenditureInfo@16a3516.
 79  
              * Norm's input:
 80  
              *  the problem is in the code I wrote a long time ago...
 81  
              *  // TODO: worry about using the toString method for the id
 82  
              *  r2.setId(r1.toString());
 83  
              *  well I should have worried about it more... :(
 84  
              *  I was using that as part of a mock impl where I needed a fake id but we should remove it
 85  
              * it is in the R1ToR2CopyHelper.java
 86  
              *
 87  
              * After the above issue is fixed, we can revisit about   co.setExpenditure(lui.getExpenditure());
 88  
              */
 89  
 //                        co.setExpenditure(lui.getExpenditure());
 90  0
                         co.setFormatIds(lui.getCluCluRelationIds());
 91  
                         
 92  0
                         assembleIdentifier(lui, co);
 93  
                         
 94  
                         //TODO: lui.getResultOptionIds() -- co.setCreditOptions & co.setGradingOptionKeys --- call LRCService.getResultValuesByIdList
 95  
                         
 96  
                         //instructors
 97  0
                         assembleInstructors(co, lui.getId(), context);
 98  
                         
 99  
                         //lui.getAlternateIdentifiers() -- where to map?
 100  
                         //lui.getName() -- where to map?
 101  
                         //lui.getReferenceURL() -- where to map?
 102  
                 
 103  
                 
 104  
                         //LuiLuiRelation (to set jointOfferingIds, hasFinalExam)
 105  0
                          assembleLuiLuiRelations(co, lui.getId(), context);
 106  
                         
 107  0
                         return co;
 108  
                 }
 109  
                 else
 110  0
                         return null;
 111  
         }
 112  
 
 113  
         private void assembleLuiCodes(LuiInfo lui, CourseOfferingInfo co){
 114  0
                 co.setIsHonorsOffering(false);
 115  0
                 List<LuCodeInfo> luiCodes = lui.getLuiCodes();
 116  0
                 if(luiCodes!= null && !luiCodes.isEmpty()){
 117  0
                         for(LuCodeInfo luiCode : luiCodes){
 118  0
                                 if(luiCode.getTypeKey().equals("kuali.lu.code.honorsOffering"))
 119  0
                                         co.setIsHonorsOffering(Boolean.parseBoolean(luiCode.getValue()));
 120  
                                         break;
 121  
                         }
 122  
                 }
 123  0
         }
 124  
         
 125  
         private void assembleInstructors(CourseOfferingInfo co, String luiId, ContextInfo context) throws AssemblyException{
 126  0
                 List<LuiPersonRelationInfo> lprs = null;;
 127  
                 try {
 128  0
                         lprs = lprService.getLprsByLui(luiId, context);
 129  0
                 } catch (DoesNotExistException e) {
 130  0
                         throw new AssemblyException("DoesNotExistException: " + e.getMessage());
 131  0
                 } catch (InvalidParameterException e) {
 132  0
                         throw new AssemblyException("InvalidParameterException:" + e.getMessage());
 133  0
                 } catch (MissingParameterException e) {
 134  0
                         throw new AssemblyException("MissingParameterException"  + e.getMessage());
 135  0
                 } catch (OperationFailedException e) {
 136  0
                         throw new AssemblyException("OperationFailedException"  + e.getMessage());
 137  0
                 } catch (PermissionDeniedException e) {
 138  0
                         throw new AssemblyException("PermissionDeniedException"  + e.getMessage());
 139  0
                 }
 140  
                 
 141  0
                 if(lprs != null && !lprs.isEmpty()){
 142  0
                         List<OfferingInstructorInfo> instructors = new ArrayList<OfferingInstructorInfo>();
 143  0
                         for (LuiPersonRelationInfo lpr : lprs){
 144  0
                                 if(lpr != null && lpr.getTypeKey() != null && lpr.getTypeKey().equals(LuiPersonRelationServiceConstants.INSTRUCTOR_MAIN_TYPE_KEY)){
 145  0
                                         OfferingInstructorInfo instructor = new OfferingInstructorInfo();
 146  0
                                         instructor.setPersonId(lpr.getPersonId());
 147  0
                                         instructor.setPercentageEffort(lpr.getCommitmentPercent());
 148  0
                                         instructor.setId(lpr.getId());
 149  0
                                         instructor.setTypeKey(lpr.getTypeKey());
 150  0
                                         instructor.setStateKey(lpr.getStateKey());
 151  0
                                         instructors.add(instructor);
 152  0
                                 }
 153  
                         }
 154  0
                         co.setInstructors(instructors);
 155  
                 }                
 156  0
         }
 157  
         
 158  
         private void assembleLuiLuiRelations(CourseOfferingInfo co, String luiId, ContextInfo context) throws AssemblyException {
 159  
                 try {
 160  0
                         List<String> jointOfferingIds = new ArrayList<String>();
 161  0
                         List<String> finalExams = new ArrayList<String>();
 162  0
                         List<LuiLuiRelationInfo> rels = luiService.getLuiLuiRelationsByLui(luiId, context);
 163  0
                         if(rels != null && !rels.isEmpty()){                  
 164  0
                 for(LuiLuiRelationInfo rel : rels){
 165  0
                         if(rel.getLuiId().equals(luiId)){
 166  0
                                 if(rel.getTypeKey().equals(LuiServiceConstants.LUI_LUI_RELATION_ASSOCIATED_TYPE_KEY)){
 167  0
                                         LuiInfo lui1 = luiService.getLui(rel.getRelatedLuiId(), context);
 168  0
                                         if(lui1 != null && lui1.getTypeKey().equals(LuiServiceConstants.COURSE_OFFERING_TYPE_KEY) && !jointOfferingIds.contains(rel.getRelatedLuiId())){
 169  0
                                                 jointOfferingIds.add(rel.getRelatedLuiId());
 170  
                                         }
 171  
                                 }
 172  
                                 
 173  0
                                    if(rel.getTypeKey().equals(LuiServiceConstants.LUI_LUI_RELATION_DELIVEREDVIA_TYPE_KEY)){
 174  0
                                         LuiInfo lui2 = luiService.getLui(rel.getRelatedLuiId(), context);
 175  0
                                         if(lui2 != null && lui2.getTypeKey().equals("kuali.lui.type.course.finalExam") && !finalExams.contains(rel.getRelatedLuiId())){
 176  0
                                                 finalExams.add(rel.getRelatedLuiId());
 177  
                                         }
 178  0
                                 }
 179  
                         }
 180  
                 }
 181  
                         }
 182  
                         
 183  0
                         if (!jointOfferingIds.isEmpty()) co.setJointOfferingIds(jointOfferingIds);
 184  
                                 
 185  0
                         if (finalExams.size() > 0) co.setHasFinalExam(true);
 186  
                         
 187  0
                 } catch (DoesNotExistException e) {
 188  0
                         return;
 189  0
                 } catch (InvalidParameterException e) {
 190  0
                         throw new AssemblyException("InvalidParameterException: " + e.getMessage());
 191  0
                 } catch (MissingParameterException e) {
 192  0
                         throw new AssemblyException("MissingParameterException: " + e.getMessage());
 193  0
                 } catch (OperationFailedException e) {
 194  0
                         throw new AssemblyException("OperationFailedException: " + e.getMessage());
 195  0
                 }
 196  0
         }
 197  
         @Override
 198  
         public LuiInfo disassemble(CourseOfferingInfo co, ContextInfo context) {
 199  0
                 if(co != null){                        
 200  0
                         LuiInfo lui = new LuiInfo();
 201  0
                         lui.setId(co.getId());
 202  0
                         lui.setTypeKey(co.getTypeKey());
 203  0
                         lui.setStateKey(co.getStateKey());
 204  0
                         lui.setDescr(co.getDescr());
 205  0
                         lui.setMeta(co.getMeta());
 206  0
                         lui.setAttributes(co.getAttributes());
 207  
                         
 208  0
                         disassembleLuiCodes(co, lui);
 209  
                         
 210  
                         //below undecided
 211  
                         //lui.setHasWaitlist(co.getHasWaitlist());
 212  
                         //lui.setIsWaitlistCheckinRequired(co.getIsWaitlistCheckinRequired());
 213  
                         //lui.setWaitlistCheckinFrequency(co.getWaitlistCheckinFrequency());
 214  
                         //lui.setWaitlistMaximum(co.getWaitlistMaximum());
 215  
                         //lui.setWaitlistTypeKey(co.getWaitlistTypeKey());
 216  
                         
 217  0
                         lui.setCluId(co.getCourseId());
 218  0
                         lui.setCluCluRelationIds(co.getFormatIds());
 219  0
                         lui.setAtpId(co.getTermId());
 220  0
                         lui.setUnitsContentOwner(co.getUnitsContentOwner());
 221  0
                         lui.setUnitsDeployment(co.getUnitsDeployment());
 222  0
                         lui.setMaximumEnrollment(co.getMaximumEnrollment());
 223  0
                         lui.setMinimumEnrollment(co.getMinimumEnrollment());
 224  0
                     lui.setResultValuesGroupKeys(co.getGradingOptionKeys());
 225  
 
 226  0
                         lui.setFees(co.getFees());
 227  0
                         lui.setExpenditure(co.getExpenditure());
 228  0
                         lui.setRevenues(co.getRevenues());
 229  
                 
 230  0
                         disassembleIdentifier(co, lui);
 231  
                                         
 232  
                         //TODO: the following mapping undecided on wiki
 233  
                         //gradeRosterLevelTypeKey
 234  
                         //fundingSource
 235  
                         //isFinancialAidEligible
 236  
                         //registrationOrderTypeKey
 237  
                                                 
 238  0
                         return lui;
 239  
                 }
 240  
                 else
 241  0
                         return null;
 242  
         }
 243  
 
 244  
         private void disassembleLuiCodes(CourseOfferingInfo co, LuiInfo lui){
 245  0
                 lui.setLuiCodes(new ArrayList<LuCodeInfo>());
 246  
 
 247  0
         Boolean isHonorsOffering = co.getIsHonorsOffering();
 248  
 
 249  
         //TODO needs review: when creating a new CO from a CLU the honorsOffering is never set so we get
 250  
         //                  NPEs when getting value.  Should we be setting the value to false on null?
 251  0
         if (isHonorsOffering != null) {
 252  0
             LuCodeInfo code = new LuCodeInfo();
 253  0
             code.setTypeKey("kuali.lu.code.honorsOffering");
 254  0
             code.setValue(co.getIsHonorsOffering().toString());
 255  0
             code.setAttributes(new ArrayList<AttributeInfo>());
 256  0
             lui.getLuiCodes().add(code);
 257  
         }
 258  0
         }
 259  
         
 260  
         private void disassembleIdentifier(CourseOfferingInfo co, LuiInfo lui){
 261  0
                 LuiIdentifierInfo identifier = new LuiIdentifierInfo();
 262  0
                 identifier.setCode(co.getCourseOfferingCode());
 263  0
                 identifier.setSuffixCode(co.getCourseNumberSuffix());
 264  0
                 identifier.setLongName(co.getCourseTitle());
 265  0
                 identifier.setDivision(co.getSubjectArea());
 266  0
                 lui.setOfficialIdentifier(identifier);                
 267  0
         }
 268  
         
 269  
         private void assembleIdentifier(LuiInfo lui, CourseOfferingInfo co){
 270  0
                 LuiIdentifierInfo identifier = lui.getOfficialIdentifier();
 271  0
                 if(identifier != null){
 272  0
                         co.setCourseOfferingCode(identifier.getCode());
 273  0
                         co.setCourseNumberSuffix(identifier.getSuffixCode());
 274  0
                         co.setCourseTitle(identifier.getLongName());
 275  0
                         co.setSubjectArea(identifier.getDivision());
 276  
                 }
 277  0
         }
 278  
         
 279  
         public CourseOfferingInfo assemble(CourseInfo courseInfo){
 280  0
                 CourseOfferingInfo courseOfferingInfo = new CourseOfferingInfo();
 281  0
                 courseOfferingInfo.setCourseId(courseInfo.getId());
 282  0
                 courseOfferingInfo.setCourseNumberSuffix(courseInfo.getCourseNumberSuffix());
 283  0
                 courseOfferingInfo.setCourseTitle(courseInfo.getCourseTitle());
 284  0
                 courseOfferingInfo.setSubjectArea(courseInfo.getSubjectArea());
 285  0
                 courseOfferingInfo.setCourseOfferingCode(courseInfo.getCode());
 286  0
                 courseOfferingInfo.setUnitsContentOwner(courseInfo.getUnitsContentOwner());
 287  0
                 courseOfferingInfo.setUnitsDeployment(courseInfo.getUnitsDeployment());
 288  0
                 courseOfferingInfo.setGradingOptionKeys(courseInfo.getGradingOptions());
 289  0
                 if (courseInfo.getCreditOptions() == null) {
 290  0
                     courseOfferingInfo.setCreditOptions(null);
 291  0
                 } else if (courseInfo.getCreditOptions().isEmpty()) {
 292  0
                     courseOfferingInfo.setCreditOptions(null);
 293  
                 } else {
 294  0
                     courseOfferingInfo.setCreditOptions(new R1ToR2CopyHelper().copyResultValuesGroup(courseInfo.getCreditOptions().get(0)));
 295  
                 }
 296  0
                 courseOfferingInfo.setDescr(new R1ToR2CopyHelper().copyRichText(courseInfo.getDescr()));
 297  0
                 courseOfferingInfo.setExpenditure(new R1ToR2CopyHelper().copyCourseExpenditure(courseInfo.getExpenditure()));
 298  0
                 courseOfferingInfo.setFees(new R1ToR2CopyHelper().copyCourseFeeList(courseInfo.getFees()));
 299  0
                 courseOfferingInfo.setInstructors(new R1ToR2CopyHelper().copyInstructors(courseInfo.getInstructors()));                
 300  
                 
 301  0
                 return courseOfferingInfo;
 302  
         }
 303  
 
 304  
 }