Coverage Report - org.kuali.student.enrollment.class2.appointment.service.impl.AppointmentWindowWrapperLookupableImpl
 
Classes in this File Line Coverage Branch Coverage Complexity
AppointmentWindowWrapperLookupableImpl
0%
0/77
0%
0/28
3.2
 
 1  
 package org.kuali.student.enrollment.class2.appointment.service.impl;
 2  
 
 3  
 import org.kuali.rice.core.api.criteria.PredicateFactory;
 4  
 import org.kuali.rice.core.api.criteria.QueryByCriteria;
 5  
 import org.kuali.rice.core.api.resourceloader.GlobalResourceLoader;
 6  
 import org.kuali.rice.krad.lookup.LookupableImpl;
 7  
 import org.kuali.rice.krad.web.form.LookupForm;
 8  
 
 9  
 import org.kuali.student.enrollment.acal.constants.AcademicCalendarServiceConstants;
 10  
 import org.kuali.student.enrollment.acal.dto.KeyDateInfo;
 11  
 import org.kuali.student.enrollment.acal.dto.TermInfo;
 12  
 import org.kuali.student.enrollment.acal.service.AcademicCalendarService;
 13  
 import org.kuali.student.enrollment.class2.appointment.dto.AppointmentWindowWrapper;
 14  
 import org.kuali.student.r2.common.dto.ContextInfo;
 15  
 import org.kuali.student.r2.common.util.constants.PopulationServiceConstants;
 16  
 import org.kuali.student.r2.common.util.constants.TypeServiceConstants;
 17  
 import org.kuali.student.r2.core.appointment.constants.AppointmentServiceConstants;
 18  
 import org.kuali.student.r2.core.appointment.dto.AppointmentWindowInfo;
 19  
 import org.kuali.student.r2.core.appointment.service.AppointmentService;
 20  
 import org.kuali.student.r2.core.population.dto.PopulationInfo;
 21  
 import org.kuali.student.r2.core.population.service.PopulationService;
 22  
 import org.kuali.student.r2.core.type.dto.TypeTypeRelationInfo;
 23  
 import org.kuali.student.r2.core.type.service.TypeService;
 24  
 
 25  
 import javax.xml.namespace.QName;
 26  
 import java.text.DateFormat;
 27  
 import java.text.SimpleDateFormat;
 28  
 import java.util.ArrayList;
 29  
 import java.util.Date;
 30  
 import java.util.List;
 31  
 import java.util.Map;
 32  
 
 33  
 
 34  0
 public class AppointmentWindowWrapperLookupableImpl extends LookupableImpl {
 35  0
     private static final org.apache.log4j.Logger LOG = org.apache.log4j.Logger.getLogger(AppointmentWindowWrapperLookupableImpl.class);
 36  
 
 37  
     public final static String TERM_TYPE_KEY = "termType";
 38  
     public final static String TERM_YEAR_KEY = "termYear";
 39  
 
 40  
     @Override
 41  
     protected List<?> getSearchResults(LookupForm lookupForm, Map<String, String> fieldValues, boolean unbounded) {
 42  
   
 43  0
         List<AppointmentWindowWrapper> windowWrapperList = new ArrayList<AppointmentWindowWrapper>();
 44  0
         String termTypeKey = fieldValues.get(TERM_TYPE_KEY);
 45  0
         String termYear = fieldValues.get(TERM_YEAR_KEY);
 46  
         try{
 47  0
             List<KeyDateInfo> periods = _searchPeriods(termTypeKey, termYear);
 48  0
             if(periods == null || periods.isEmpty())
 49  0
                 return null;
 50  0
             windowWrapperList = _loadWindows(periods);
 51  0
         }catch (Exception e){
 52  0
             return null;
 53  0
         }
 54  
         
 55  0
         return windowWrapperList;
 56  
     }
 57  
     
 58  
     private List<KeyDateInfo>  _searchPeriods (String termTypeKey, String termYear) throws Exception {
 59  
 
 60  
         //Parse the year to a date and the next year's date to compare against the startTerm
 61  0
         DateFormat df = new SimpleDateFormat("yyyy");
 62  0
         Date minBoundDate = df.parse(termYear);
 63  0
         Date maxBoundDate = df.parse(Integer.toString(Integer.parseInt(termYear)+1));
 64  
 
 65  
         //Build up a term search criteria
 66  0
         QueryByCriteria.Builder qbcBuilder = QueryByCriteria.Builder.create();
 67  0
         qbcBuilder.setPredicates(PredicateFactory.and(
 68  
                 PredicateFactory.equal("atpType", termTypeKey),
 69  
                 PredicateFactory.greaterThanOrEqual("startDate", minBoundDate),
 70  
                 PredicateFactory.lessThan("startDate", maxBoundDate)));
 71  
 
 72  0
         QueryByCriteria criteria = qbcBuilder.build();
 73  
 
 74  
         //Perform Term Search with Service Call
 75  0
         AcademicCalendarService academicCalendarService = getAcalService();
 76  0
         List<TermInfo> terms = academicCalendarService.searchForTerms(criteria, null);
 77  
 
 78  
         //Check for exceptions
 79  0
         if(terms == null){
 80  0
             return null; //Nothing found and null
 81  
         }
 82  0
         if(terms.isEmpty()){
 83  0
             return null; //Nothing found
 84  
         }
 85  0
         if(terms.size()>1){
 86  0
             LOG.error("Too many terms!");
 87  
         }
 88  
 
 89  0
         TermInfo term = terms.get(0);
 90  
 
 91  
         //Get the milestones and filter out anything that is not registration period
 92  0
         List<KeyDateInfo> keyDates = academicCalendarService.getKeyDatesForTerm(term.getId(), null);
 93  0
         if(keyDates != null){
 94  
 
 95  
             //Get the valid period types
 96  0
             List<TypeTypeRelationInfo> milestoneTypeRelations = getTypeService().getTypeTypeRelationsByOwnerAndType("kuali.milestone.type.group.appt.regperiods","kuali.type.type.relation.type.group",new ContextInfo());
 97  0
             List<String> validMilestoneTypes = new ArrayList<String>();
 98  0
             for(TypeTypeRelationInfo milestoneTypeRelation:milestoneTypeRelations){
 99  0
                 validMilestoneTypes.add(milestoneTypeRelation.getRelatedTypeKey());
 100  
             }
 101  
 
 102  
             //Add in only valid milestones that are registration periods
 103  0
             List<KeyDateInfo> periodMilestones = new ArrayList<KeyDateInfo>();
 104  0
             for(KeyDateInfo keyDate:keyDates){
 105  0
                 if(validMilestoneTypes.contains(keyDate.getTypeKey())){
 106  0
                     periodMilestones.add(keyDate);
 107  
                 }
 108  
             }
 109  0
             return  periodMilestones;
 110  
         }
 111  0
         return null;
 112  
         
 113  
     }
 114  
     
 115  
     private List<AppointmentWindowWrapper> _loadWindows(List<KeyDateInfo> periods) throws Exception{
 116  0
         List<AppointmentWindowWrapper> windowWrapperList = new ArrayList<AppointmentWindowWrapper>();
 117  0
         for(KeyDateInfo period:periods){
 118  0
             List<AppointmentWindowInfo> windows = getAppointmentService().getAppointmentWindowsByPeriod(period.getId(), new ContextInfo());
 119  0
             if(windows!=null){
 120  0
                 for(AppointmentWindowInfo window:windows){
 121  
 
 122  
                     //Look up the population
 123  0
                     PopulationInfo population = getPopulationService().getPopulation(window.getAssignedPopulationId(), new ContextInfo());
 124  
 
 125  0
                     AppointmentWindowWrapper windowWrapper = new AppointmentWindowWrapper();
 126  
 
 127  0
                     windowWrapper.setAppointmentWindowInfo(window);
 128  0
                     windowWrapper.setId(window.getId());
 129  0
                     windowWrapper.setWindowName(window.getName());
 130  0
                     windowWrapper.setPeriodKey(window.getPeriodMilestoneId());
 131  0
                     windowWrapper.setPeriodName(period.getName());
 132  
 
 133  0
                     windowWrapper.setAssignedPopulationName(population.getName());
 134  0
                     windowWrapper.setWindowTypeKey(window.getTypeKey());
 135  
 
 136  0
                     windowWrapper.setStartDate(_parseDate(window.getStartDate()));
 137  0
                     windowWrapper.setStartTime(_parseTime(window.getStartDate()));
 138  0
                     windowWrapper.setStartTimeAmPm(_parseAmPm(window.getStartDate()));
 139  
 
 140  0
                     windowWrapper.setEndDate(_parseDate(window.getEndDate()));
 141  0
                     windowWrapper.setEndTime(_parseTime(window.getEndDate()));
 142  0
                     windowWrapper.setEndTimeAmPm(_parseAmPm(window.getEndDate()));
 143  
 
 144  0
                     windowWrapperList.add(windowWrapper);
 145  0
                 }
 146  
             }
 147  0
         }
 148  0
         return windowWrapperList;
 149  
 
 150  
     }
 151  
 
 152  
     private String _parseAmPm(Date date) {
 153  0
         if(date==null){
 154  0
             return null;
 155  
         }
 156  0
         DateFormat df = new SimpleDateFormat("a");
 157  0
         return df.format(date);
 158  
     }
 159  
 
 160  
     private String _parseTime(Date date) {
 161  0
         if(date==null){
 162  0
             return null;
 163  
         }
 164  0
         DateFormat df = new SimpleDateFormat("hh:mm");
 165  0
         return df.format(date);
 166  
     }
 167  
 
 168  
     private Date _parseDate(Date date) {
 169  0
         return date;
 170  
     }
 171  
 
 172  
     public AcademicCalendarService getAcalService() {
 173  0
         return (AcademicCalendarService) GlobalResourceLoader.getService(new QName(AcademicCalendarServiceConstants.NAMESPACE, AcademicCalendarServiceConstants.SERVICE_NAME_LOCAL_PART));
 174  
     }
 175  
     public TypeService getTypeService() {
 176  0
         return (TypeService) GlobalResourceLoader.getService(new QName(TypeServiceConstants.NAMESPACE, TypeService.class.getSimpleName()));
 177  
     }
 178  
     public AppointmentService getAppointmentService() {
 179  0
         return (AppointmentService) GlobalResourceLoader.getService(new QName(AppointmentServiceConstants.NAMESPACE, AppointmentServiceConstants.SERVICE_NAME_LOCAL_PART));
 180  
     }
 181  
     public PopulationService getPopulationService() {
 182  0
         return (PopulationService) GlobalResourceLoader.getService(new QName(PopulationServiceConstants.NAMESPACE, PopulationService.class.getSimpleName()));
 183  
 
 184  
     }
 185  
 
 186  
 }