View Javadoc

1   package org.kuali.student.lum.workflow;
2   
3   import org.kuali.student.r1.core.statement.dto.StatementTreeViewInfo;
4   import org.kuali.student.r2.common.dto.AttributeInfo;
5   import org.kuali.student.r2.common.dto.ContextInfo;
6   import org.kuali.student.r2.common.dto.DtoConstants;
7   import org.kuali.student.r2.common.exceptions.DoesNotExistException;
8   import org.kuali.student.r2.common.exceptions.InvalidParameterException;
9   import org.kuali.student.r2.common.exceptions.MissingParameterException;
10  import org.kuali.student.r2.common.exceptions.OperationFailedException;
11  import org.kuali.student.r2.common.exceptions.PermissionDeniedException;
12  import org.kuali.student.r2.common.util.constants.ProgramServiceConstants;
13  import org.kuali.student.r2.core.atp.dto.AtpInfo;
14  import org.kuali.student.r2.core.atp.service.AtpService;
15  import org.kuali.student.r2.core.versionmanagement.dto.VersionDisplayInfo;
16  import org.kuali.student.r2.lum.program.dto.MajorDisciplineInfo;
17  import org.kuali.student.r2.lum.program.dto.ProgramRequirementInfo;
18  import org.kuali.student.r2.lum.program.dto.ProgramVariationInfo;
19  import org.kuali.student.r2.lum.program.service.ProgramService;
20  import org.springframework.transaction.annotation.Transactional;
21  
22  import java.util.Date;
23  import java.util.List;
24  
25  /**
26   * This class is called whenever the state of a major discipline changes.
27   * <p>
28   * We have a separate class because the operations need to be marked with the @Transactional annotation.
29   * <p>
30   * THIS CLASS IS DUPLICATED FOR MAJOR DISCIPLINE, CORE, AND CREDENTIAL PROGRAMS SINCE THERE ARE
31   * DIFFERENT SERVICE METHODS FOR EACH OF THESE TYPES (THOUGH THEY ARE SIMILAR)
32   * <P>
33   * 
34   * @author Kuali Rice Team (kuali-rice@googlegroups.com)
35   */
36  @Transactional(noRollbackFor = {DoesNotExistException.class}, rollbackFor = {Throwable.class})
37  public class MajorDisciplineStateChangeServiceImpl implements StateChangeService{
38  
39      /**
40       * The program service - injected by spring.
41       */
42      private ProgramService programService;
43      private AtpService atpService;    
44  
45      /**
46       * This method is called by workflow when the state changes.
47       * 
48       * @param majorDisciplineId
49       * @param newState
50       * @return
51       * @throws Exception
52       */
53      public void changeState(String majorDisciplineId, String newState, ContextInfo contextInfo) throws Exception {
54          // This method will be called from workflow.
55          // Since we cannot activate a program from the workflow we do not need to add endEntryTerm and endEnrollTerm
56          changeState(null, null, null, majorDisciplineId, newState, contextInfo);
57      }
58  
59      /**
60       * This method is called from the UI (servlet) when state changes.
61       * 
62       * @param endEntryTerm
63       * @param endEnrollTerm
64       * @param contextInfo
65       * @param majorDisciplineId
66       * @param newState
67       * @return
68       * @throws Exception
69       */
70      public void changeState(String endEntryTerm, String endEnrollTerm, String endInstAdmitTerm, String majorDisciplineId, String newState, ContextInfo contextInfo) throws Exception {
71  
72          // A null state is valid in some cases!
73          // If rice work flow returned a code that LUM is not going to process, then
74          // our ProgramPostProcessorBase will return null 
75          // So, if we see a null, assume we are not supposed to process the code and simply return from
76          // the method without changing state
77          // 1. Blanket Approve Proposal
78          // 1.1 When blanket approved is selected, rice will change status through the following codes:
79          // 1.2 Workflow Status Code = R  ... Change LUM state to "Draft", create new version, update state of all objects
80          // 1.3 Workflow Status Code = A  ... Code 'A' is not processed.  Do not change state in LUM.
81          // 1.4 Workflow Status Code = P  ... Change LUM state to "Approved", do not create new version, update requirements and variations to state "Approved"
82  
83          if (newState == null){
84              return;
85          }
86                     
87          // The version selected in the UI
88          MajorDisciplineInfo selectedVersion = programService.getMajorDiscipline(majorDisciplineId, contextInfo);
89  
90          // If we are activating this version we need to mark the previous version superseded,
91          // update the previous version end terms, and make the selected version current.
92          if (newState.equals(DtoConstants.STATE_ACTIVE)) {
93  
94              // Update previous versions to superseded and set end terms on previous current version.
95          	updatePreviousVersions(selectedVersion, endEntryTerm, endEnrollTerm, endInstAdmitTerm, contextInfo);
96  
97              // Update state of all associated objects for current version
98              // NOTE: we must update state BEFORE making the version current
99              updateMajorDisciplineInfoState(selectedVersion, newState, contextInfo);
100 
101             // Make this the current version
102             makeCurrent(selectedVersion, contextInfo);
103         } else {
104 
105             // Update state of all associated objects for current version
106             updateMajorDisciplineInfoState(selectedVersion, newState, contextInfo);
107         }
108 
109       
110 
111     }
112 
113     /**
114      * This method will update the state of this object and all associated objects.
115      * <p>
116      * It is needed because we need to make separate web service calls to update the state of these objects.
117      *
118      * @param majorDisciplineInfo
119      * @param newState
120      * @param contextInfo
121      */
122     private void updateMajorDisciplineInfoState(MajorDisciplineInfo majorDisciplineInfo, String newState, ContextInfo contextInfo) throws Exception {
123         // Update the statement tree
124         List<String> programRequirementIds = majorDisciplineInfo.getProgramRequirements();
125         updateRequirementsState(programRequirementIds, newState, contextInfo);
126 
127         
128         // Update any variations 
129         List<ProgramVariationInfo> variationList = majorDisciplineInfo.getVariations();
130         updateVariationsRequirementsState(variationList, newState, contextInfo);
131         
132         
133         // Update major discipline
134         majorDisciplineInfo.setStateKey(newState);
135         programService.updateMajorDiscipline(majorDisciplineInfo.getId(), majorDisciplineInfo, contextInfo);
136     }
137 
138     /**
139      * This method will make this version of the major discipline the current one.
140      * 
141      * @param majorDisciplineInfo
142      * @param contextInfo
143      */
144     private void makeCurrent(MajorDisciplineInfo majorDisciplineInfo, ContextInfo contextInfo) throws Exception {
145 
146         // Check if this is the current version before trying to make it current
147         // (the web service will error if you try to make a version current that is already current)
148         VersionDisplayInfo currentVersion = null;
149         currentVersion = programService.getCurrentVersion(ProgramServiceConstants.PROGRAM_NAMESPACE_MAJOR_DISCIPLINE_URI, majorDisciplineInfo.getVersion().getVersionIndId(), contextInfo);
150 
151         // If this is not the current version, then make it current
152         if (!currentVersion.getSequenceNumber().equals(majorDisciplineInfo.getVersion().getSequenceNumber())) {
153             programService.setCurrentMajorDisciplineVersion(majorDisciplineInfo.getId(), null, contextInfo);
154         }
155     }
156 
157 
158     /**
159      * This method finds all previous versions of program and sets all previous ACTIVE,APPROVED,DRAFT versions to SUPERSEDED and
160      * sets new end terms for previous current version.
161      *
162      * @param selectedVersion The version of major discipline program being activated
163      * @param endEntryTerm The new end entry term to set on previous active version
164      * @param endEnrollTerm The new end enroll term to set on previous active version
165      * @param contextInfo
166      * @throws Exception
167      */
168     private void updatePreviousVersions (MajorDisciplineInfo selectedVersion, String endEntryTerm, String endEnrollTerm, String endInstAdmitTerm, ContextInfo contextInfo) throws Exception {
169     	// Get the current version of major discipline given the selected version
170     	MajorDisciplineInfo currentVersion = getCurrentVersion(selectedVersion, contextInfo);
171     	
172     	boolean isSelectedVersionCurrent = selectedVersion.getId().equals(currentVersion.getId());
173     	
174     	//Set the end terms on the current version of major discipline and update it's state to superseded
175     	setEndTerms(currentVersion, endEntryTerm, endEnrollTerm, endInstAdmitTerm, contextInfo);
176     	updateMajorDisciplineInfoState(currentVersion, DtoConstants.STATE_SUPERSEDED, contextInfo);
177 
178 		// Loop through all previous active or approved programs and set the state to superseded.
179 		// We should only need to evaluated versions with sequence number
180 		// higher than previous active program
181 
182 		List<VersionDisplayInfo> versions = null;
183 		versions = programService.getVersions(ProgramServiceConstants.PROGRAM_NAMESPACE_MAJOR_DISCIPLINE_URI, selectedVersion.getVersion().getVersionIndId(), contextInfo);
184 	
185 		Long startSeq = new Long(1);
186 
187 		if (!isSelectedVersionCurrent) {
188 			startSeq = currentVersion.getVersion().getSequenceNumber() + 1;
189 		}
190 
191 		for (VersionDisplayInfo versionInfo : versions) {
192 			if (versionInfo.getSequenceNumber() >= startSeq  && versionInfo.getSequenceNumber() != selectedVersion.getVersion().getSequenceNumber()) {
193 				MajorDisciplineInfo otherProgram = null; 
194 				otherProgram = programService.getMajorDiscipline(versionInfo.getId(), contextInfo);
195 				if (otherProgram.getStateKey().equals(DtoConstants.STATE_APPROVED) ||
196 					otherProgram.getStateKey().equals(DtoConstants.STATE_ACTIVE)){
197 			        updateMajorDisciplineInfoState(otherProgram, DtoConstants.STATE_SUPERSEDED, contextInfo);
198 				}		
199 			}
200 		}    	
201 
202     }
203 
204 	/**
205 	 * Get the current version of program given the selected version of program
206 	 * 
207 	 * @param majorDisciplineInfo
208      * @param contextInfo
209 	 */
210 	protected MajorDisciplineInfo getCurrentVersion(MajorDisciplineInfo majorDisciplineInfo, ContextInfo contextInfo)
211 			throws Exception {
212 		// Get version independent id of program
213 		String verIndId = majorDisciplineInfo.getVersion().getVersionIndId();
214 
215 		// Get id of current version of program given the version independent id
216 		VersionDisplayInfo curVerDisplayInfo = null; 
217 		curVerDisplayInfo =		programService.getCurrentVersion(ProgramServiceConstants.PROGRAM_NAMESPACE_MAJOR_DISCIPLINE_URI, verIndId, contextInfo);
218 	
219 		String curVerId = null;
220 				
221 		curVerId = curVerDisplayInfo.getId();
222 
223 		// Return the current version of the course
224 		MajorDisciplineInfo currentVersion = programService.getMajorDiscipline(curVerId, contextInfo);
225 
226 		return currentVersion;
227 	}
228 
229     /**
230      * This method updates the end terms for the major discipline passed into it.
231      * <p>
232      * You must still call updateState() to save the object using the web service.
233      * 
234      * @param majorDisciplineInfo
235      * @param endEntryTerm
236      * @param endEnrollTerm
237      * @param endInstAdmitTerm 
238      * @throws OperationFailedException 
239      * @throws MissingParameterException 
240      * @throws InvalidParameterException 
241      * @throws DoesNotExistException 
242      */
243     private void setEndTerms(MajorDisciplineInfo majorDisciplineInfo, String endEntryTerm, String endEnrollTerm, String endInstAdmitTerm, ContextInfo contextInfo) throws InvalidParameterException, MissingParameterException, OperationFailedException, DoesNotExistException, PermissionDeniedException {
244 
245     	//Set the end terms on the major discipline
246     	majorDisciplineInfo.setEndProgramEntryTerm(endEntryTerm);
247     	majorDisciplineInfo.setEndTerm(endEnrollTerm);
248         majorDisciplineInfo.getAttributes().add(new AttributeInfo("endInstAdmitTerm", endInstAdmitTerm));
249 
250         //Check if there are variations to process
251         if(!majorDisciplineInfo.getVariations().isEmpty()){
252         	
253         	//Find the major's end term atps and obtain their date information
254             Date majorEndEntryTermEndDate = null;
255             Date majorEndEnrollTermEndDate = null;
256             Date majorEndInstAdmitTermEndDate = null;
257             if(endEntryTerm != null){
258             AtpInfo majorEndEntryTermAtp = atpService.getAtp(endEntryTerm, contextInfo);
259    			majorEndEntryTermEndDate = majorEndEntryTermAtp.getEndDate();
260                }
261             if(endEnrollTerm != null){
262             AtpInfo majorEndEnrollTermAtp = atpService.getAtp(endEnrollTerm, contextInfo);
263    			majorEndEnrollTermEndDate = majorEndEnrollTermAtp.getEndDate();
264             }
265             if(endInstAdmitTerm != null){
266             AtpInfo majorEndInstAdmitTermAtp = atpService.getAtp(endInstAdmitTerm, contextInfo);
267        		majorEndInstAdmitTermEndDate = majorEndInstAdmitTermAtp.getEndDate();
268             }
269        		//Loop through the variations
270 	        for(ProgramVariationInfo variation:majorDisciplineInfo.getVariations()){
271 	        	//compare dates to get the older of the two end terms
272 	    		if(variation.getEndProgramEntryTerm() != null &&  majorEndEntryTermEndDate != null){
273 	    			AtpInfo variationEndEntryTermAtp = atpService.getAtp(variation.getEndProgramEntryTerm(), contextInfo);
274 	    			Date variationEndEntryTermEndDate = variationEndEntryTermAtp.getEndDate();
275 	    			if(majorEndEntryTermEndDate.compareTo(variationEndEntryTermEndDate)<=0){
276 		    			variation.setEndProgramEntryTerm(endEntryTerm);
277 	    			}
278 	    		}else{
279 	    			variation.setEndProgramEntryTerm(endEntryTerm);
280 	    		}
281 	    		//compare dates to get the older of the two end terms
282 	    		if(variation.getEndTerm() != null &&  majorEndEnrollTermEndDate != null){
283 	    			AtpInfo variationEndTermAtp = atpService.getAtp(variation.getEndTerm(), contextInfo);
284 	    			Date variationEndTermEndDate = variationEndTermAtp.getEndDate();
285 	    			if(majorEndEnrollTermEndDate.compareTo(variationEndTermEndDate)<=0){
286 		    			variation.setEndTerm(endEnrollTerm);
287 	    			}
288 	    		}else{
289 	    			variation.setEndTerm(endEnrollTerm);
290 	    		}
291 	    		//compare dates to get the older of the two end terms
292                 endInstAdmitTerm = variation.getAttributeValue("endInstAdmitTerm");
293 	    		if(endInstAdmitTerm != null &&  majorEndInstAdmitTermEndDate != null){
294 	    			AtpInfo variationEndInstAdmitAtp = atpService.getAtp(endInstAdmitTerm, contextInfo);
295 	    			Date variationEndInstAdmitEndDate = variationEndInstAdmitAtp.getEndDate();
296 	    			if(majorEndInstAdmitTermEndDate.compareTo(variationEndInstAdmitEndDate)<=0){
297 	    				variation.getAttributes().add(new AttributeInfo("endInstAdmitTerm", endInstAdmitTerm));
298 	    			}
299 	    		}else{
300 	    			variation.getAttributes().add(new AttributeInfo("endInstAdmitTerm", endInstAdmitTerm));
301 	    		} 
302 	    		
303 	        }
304         }
305     }
306 
307 	/**
308      * This method will update the requirement state.
309      * <p>
310      * Note that it uses StatementUtil to update the statement tree.
311      * 
312      * @param programRequirementIds
313      * @param newState
314      * @param contextInfo
315      * @throws Exception
316      */
317     public void updateRequirementsState(List<String> programRequirementIds, String newState, ContextInfo contextInfo) throws Exception {
318     
319         for (String programRequirementId : programRequirementIds) {
320 
321             // Get program requirement from the program service
322             ProgramRequirementInfo programRequirementInfo = programService.getProgramRequirement(programRequirementId, contextInfo);
323 
324             // Look in the requirement for the statement tree
325             StatementTreeViewInfo statementTree = programRequirementInfo.getStatement();
326 
327             // And recursively update the entire tree with the new state
328             StatementUtil.updateStatementTreeViewInfoState(newState, statementTree);
329 
330             // Update the state of the requirement object
331             programRequirementInfo.setStateKey(newState);
332 
333             // The write the requirement back to the program service
334             programService.updateProgramRequirement(programRequirementId, programRequirementInfo.getTypeKey(), programRequirementInfo, contextInfo);
335 
336         }
337     }
338 
339     /**
340      * This method will update the requirements of each variation.
341      * <p>
342      * We need to do this here as opposed to in the assemblers, since we need
343      * to make calls out to a separate web service.  Also, this needs to be done here
344      * because changing state no longer calls the save function.
345      * <p>
346      * Note that core and credential programs do not have variations so
347      * this method isn't necessary.
348      * <p>
349      * 
350      * @param variationList
351      * @param newState
352      * @throws Exception
353      */
354     public void updateVariationsRequirementsState(List<ProgramVariationInfo> variationList, String newState, ContextInfo contextInfo) throws Exception {
355 
356         // Iterate over all variations
357         for (ProgramVariationInfo variation : variationList) {
358      
359             // Get the requirements 
360             List<String> programRequirementIds = variation.getProgramRequirements();
361             
362             // Call the method that will update the requirements state for the program
363             // This will also update the statement tree
364             updateRequirementsState(programRequirementIds, newState, contextInfo);
365          }
366     }
367     
368 
369     /**
370      * This method is used by Spring to inject the program service into this bean.
371      * 
372      * @param programService
373      */
374     public void setProgramService(ProgramService programService) {
375         this.programService = programService;
376     }
377 
378     public void setAtpService(AtpService atpService) {
379 		this.atpService = atpService;
380 	}
381 }