Coverage Report - org.kuali.student.lum.lu.ui.course.server.gwt.CourseDataService
 
Classes in this File Line Coverage Branch Coverage Complexity
CourseDataService
0%
0/32
0%
0/18
2
 
 1  
 /**
 2  
  * Copyright 2010 The Kuali Foundation Licensed under the
 3  
  * Educational Community License, Version 2.0 (the "License"); you may
 4  
  * not use this file except in compliance with the License. You may
 5  
  * obtain a copy of the License at
 6  
  *
 7  
  * http://www.osedu.org/licenses/ECL-2.0
 8  
  *
 9  
  * Unless required by applicable law or agreed to in writing,
 10  
  * software distributed under the License is distributed on an "AS IS"
 11  
  * BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
 12  
  * or implied. See the License for the specific language governing
 13  
  * permissions and limitations under the License.
 14  
  */
 15  
 
 16  
 package org.kuali.student.lum.lu.ui.course.server.gwt;
 17  
 
 18  
 import java.util.List;
 19  
 import java.util.Map;
 20  
 
 21  
 import org.apache.log4j.Logger;
 22  
 import org.kuali.student.common.dto.DtoConstants;
 23  
 import org.kuali.student.common.exceptions.DoesNotExistException;
 24  
 import org.kuali.student.common.ui.server.gwt.AbstractDataService;
 25  
 import org.kuali.student.common.validation.dto.ValidationResultInfo;
 26  
 import org.kuali.student.core.assembly.transform.ProposalWorkflowFilter;
 27  
 import org.kuali.student.lum.course.dto.CourseCrossListingInfo;
 28  
 import org.kuali.student.lum.course.dto.CourseInfo;
 29  
 import org.kuali.student.lum.course.service.CourseService;
 30  
 import org.kuali.student.lum.lu.LUConstants;
 31  
 import org.springframework.util.StringUtils;
 32  
 
 33  0
 public class CourseDataService extends AbstractDataService {
 34  
 
 35  
         private static final long serialVersionUID = 1L;
 36  0
         final static Logger LOG = Logger.getLogger(CourseDataService.class);
 37  
 
 38  
         private static final String DEFAULT_METADATA_STATE = DtoConstants.STATE_DRAFT;
 39  
         
 40  
         private CourseService courseService;
 41  
 
 42  
         @Override
 43  
         protected Object get(String id) throws Exception {
 44  0
                 CourseInfo courseInfo = null;
 45  
 
 46  
                 try {
 47  0
                         courseInfo = courseService.getCourse(id);
 48  0
                 } catch (DoesNotExistException dne) {
 49  0
                         LOG.info("Course not found for key " + id + ". Course loaded from proposal instead.");
 50  0
                 }                
 51  
                 
 52  0
                 return courseInfo; 
 53  
         }
 54  
 
 55  
         @Override
 56  
         protected Object save(Object dto, Map<String, Object> properties) throws Exception {
 57  0
                 CourseInfo courseInfo = (CourseInfo)dto;
 58  
                 
 59  
                 //Set derived course fields before saving/updating
 60  0
                 courseInfo = calculateCourseDerivedFields(courseInfo);
 61  
                 
 62  0
                 if(properties!=null&&LUConstants.PROPOSAL_TYPE_COURSE_MODIFY.equals((String)properties.get(ProposalWorkflowFilter.WORKFLOW_DOC_TYPE))){
 63  
                         //For Modify Course, see if we need to create a new version instead of create
 64  0
                         if(courseInfo.getId() == null){
 65  0
                                 courseInfo = courseService.createNewCourseVersion(courseInfo.getVersionInfo().getVersionIndId(), courseInfo.getVersionInfo().getVersionComment());
 66  
                         }else{
 67  0
                                 courseInfo = courseService.updateCourse(courseInfo);
 68  
                         }
 69  
                 }else{
 70  0
                         if (courseInfo.getId() == null){
 71  0
                                 courseInfo = courseService.createCourse(courseInfo);
 72  
                         } else {
 73  0
                                 courseInfo = courseService.updateCourse(courseInfo);
 74  
                         }
 75  
                 }
 76  0
                 return courseInfo;
 77  
         }
 78  
         
 79  
         
 80  
         @Override
 81  
         protected List<ValidationResultInfo> validate(Object dto) throws Exception {
 82  0
                 return courseService.validateCourse("OBJECT", (CourseInfo)dto);
 83  
         }
 84  
 
 85  
         @Override
 86  
         protected String getDefaultMetaDataState() {
 87  0
                 return DEFAULT_METADATA_STATE;
 88  
         }
 89  
 
 90  
         @Override
 91  
         protected String getDefaultWorkflowDocumentType() {
 92  0
                 return LUConstants.PROPOSAL_TYPE_COURSE_CREATE;
 93  
         }
 94  
 
 95  
         @Override
 96  
         protected boolean checkDocumentLevelPermissions() {
 97  0
                 return true;
 98  
         }
 99  
 
 100  
         @Override
 101  
         protected Class<?> getDtoClass() {
 102  0
                 return CourseInfo.class;
 103  
         }
 104  
 
 105  
         public void setCourseService(CourseService courseService) {
 106  0
                 this.courseService = courseService;
 107  0
         }
 108  
 
 109  
 
 110  
         /**
 111  
          * This calculates and sets fields on course object that are derived from other course object fields.
 112  
          */
 113  
         protected CourseInfo calculateCourseDerivedFields(CourseInfo courseInfo){
 114  
                 //Course code is not populated in UI, need to derive them from the subject area and suffix fields
 115  0
                 if(StringUtils.hasText(courseInfo.getCourseNumberSuffix()) && StringUtils.hasText(courseInfo.getSubjectArea())){
 116  0
                         courseInfo.setCode(calculateCourseCode(courseInfo.getSubjectArea(),courseInfo.getCourseNumberSuffix()));
 117  
                 }
 118  
                 
 119  
                 //Derive course code for crosslistings
 120  0
                 for(CourseCrossListingInfo crossListing:courseInfo.getCrossListings()){
 121  0
                          if(StringUtils.hasText(crossListing.getCourseNumberSuffix()) && StringUtils.hasText(crossListing.getSubjectArea())){
 122  0
                                  crossListing.setCode(calculateCourseCode(crossListing.getSubjectArea(), crossListing.getCourseNumberSuffix()));         
 123  
                          }
 124  
                 }
 125  
                 
 126  0
                 return courseInfo;
 127  
         }
 128  
         
 129  
         /**
 130  
          * 
 131  
          * This method calculates code for course and cross listed course.
 132  
          * 
 133  
          * @param subjectArea
 134  
          * @param suffixNumber
 135  
          * @return
 136  
          */
 137  
         private String calculateCourseCode(String subjectArea, String suffixNumber) {
 138  0
             return subjectArea + suffixNumber;
 139  
         }
 140  
         
 141  
 }