Coverage Report - org.kuali.student.lum.service.assembler.CluAssemblerUtils
 
Classes in this File Line Coverage Branch Coverage Complexity
CluAssemblerUtils
0%
0/126
0%
0/52
6.714
 
 1  
 /*
 2  
  * Copyright 2007 The Kuali Foundation
 3  
  *
 4  
  * Licensed under the Educational Community License, Version 1.0 (the "License");
 5  
  * you may not use this file except in compliance with the License.
 6  
  * You may obtain a copy of the License at
 7  
  *
 8  
  * http://www.opensource.org/licenses/ecl1.php
 9  
  *
 10  
  * Unless required by applicable law or agreed to in writing, software
 11  
  * distributed under the License is distributed on an "AS IS" BASIS,
 12  
  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 13  
  * See the License for the specific language governing permissions and
 14  
  * limitations under the License.
 15  
  */
 16  
 package org.kuali.student.lum.service.assembler;
 17  
 
 18  
 import org.kuali.student.common.assembly.BaseDTOAssemblyNode;
 19  
 import org.kuali.student.common.assembly.BaseDTOAssemblyNode.NodeOperation;
 20  
 import org.kuali.student.common.assembly.data.AssemblyException;
 21  
 import org.kuali.student.common.dto.RichTextInfo;
 22  
 import org.kuali.student.common.exceptions.DoesNotExistException;
 23  
 import org.kuali.student.common.exceptions.InvalidParameterException;
 24  
 import org.kuali.student.common.exceptions.MissingParameterException;
 25  
 import org.kuali.student.common.exceptions.OperationFailedException;
 26  
 import org.kuali.student.lum.course.dto.LoDisplayInfo;
 27  
 import org.kuali.student.lum.course.service.assembler.LoAssembler;
 28  
 import org.kuali.student.lum.lo.dto.LoInfo;
 29  
 import org.kuali.student.lum.lo.service.LearningObjectiveService;
 30  
 import org.kuali.student.lum.lu.dto.CluLoRelationInfo;
 31  
 import org.kuali.student.lum.lu.dto.CluResultInfo;
 32  
 import org.kuali.student.lum.lu.dto.ResultOptionInfo;
 33  
 import org.kuali.student.lum.lu.service.LuService;
 34  
 
 35  
 import java.util.ArrayList;
 36  
 import java.util.Date;
 37  
 import java.util.HashMap;
 38  
 import java.util.List;
 39  
 import java.util.Map;
 40  
 import java.util.Map.Entry;
 41  
 
 42  
 /**
 43  
  * This is a description of what this class does - jimt don't forget to fill this in.
 44  
  *
 45  
  * @author Kuali Rice Team (kuali-rice@googlegroups.com)
 46  
  *
 47  
  */
 48  0
 public class CluAssemblerUtils {
 49  
     private LuService luService;
 50  
     private LearningObjectiveService loService;
 51  
     private LoAssembler loAssembler;
 52  
 
 53  
     public List<String> assembleCluResults(List<String> resultTypes, List<CluResultInfo> cluResults) throws AssemblyException{
 54  0
                 if(resultTypes==null){
 55  0
                         throw new AssemblyException("result types can not be null");
 56  
                 }
 57  0
                 List<String> results = new ArrayList<String>();
 58  
                 //Loop through all the CluResults to find those with the matching types
 59  0
                 for(CluResultInfo cluResult:cluResults){
 60  0
                         if(resultTypes.contains(cluResult.getType())){
 61  
                                 //Loop through all options and add to the list of Strings
 62  0
                                 for(ResultOptionInfo resultOption: cluResult.getResultOptions()){
 63  0
                                         results.add(resultOption.getResultComponentId());
 64  
                                 }
 65  
                         }
 66  
                 }
 67  0
                 return results;
 68  
         }
 69  
 
 70  
     public BaseDTOAssemblyNode<?, ?> disassembleCluResults(String cluId,
 71  
                         String cluState, List<String> options, NodeOperation operation, String resultType,
 72  
                         String resultsDescription, String resultDescription) throws AssemblyException {
 73  0
                 BaseDTOAssemblyNode<List<String>, CluResultInfo> cluResultNode = new BaseDTOAssemblyNode<List<String>, CluResultInfo>(null);
 74  0
                 if(resultType==null){
 75  0
                         throw new AssemblyException("resultType can not be null");
 76  
                 }
 77  
 
 78  
                 // Get the current options and put them in a map of option type id/cluResult
 79  0
                 Map<String, ResultOptionInfo> currentResults = new HashMap<String, ResultOptionInfo>();
 80  
 
 81  0
                 CluResultInfo cluResult = null;
 82  
 
 83  
         //TODO Check this for proper handling of multiple CluResultInfos?  
 84  
                 //If this is not a create, lookup the results for this clu
 85  0
                 if (!NodeOperation.CREATE.equals(operation)) {
 86  
                         try {
 87  0
                                 List<CluResultInfo> cluResultList = luService.getCluResultByClu(cluId);
 88  
 
 89  0
                                 for (CluResultInfo currentResult : cluResultList) {
 90  0
                                         if (resultType.equals(currentResult.getType())) {
 91  0
                                                 cluResult = currentResult;
 92  0
                                                 if(NodeOperation.DELETE.equals(operation)){
 93  
                                                         //if this is a delete, then we only need the CluResultInfo
 94  0
                                                         cluResultNode.setOperation(NodeOperation.DELETE);
 95  
                                                 }else{
 96  
                                                         //Find all the Result options and store in a map for easy access later
 97  0
                                                         cluResultNode.setOperation(NodeOperation.UPDATE);
 98  0
                                                         for(ResultOptionInfo resultOption:currentResult.getResultOptions()){
 99  0
                                                                 currentResults.put(resultOption.getResultComponentId(), resultOption);
 100  
                                                         }
 101  
                                                 }
 102  
                                         }
 103  
                                 }
 104  0
                         } catch (DoesNotExistException e) {
 105  0
                         } catch (InvalidParameterException e) {
 106  0
                                 throw new AssemblyException("Error getting related " + resultsDescription, e);
 107  0
                         } catch (MissingParameterException e) {
 108  0
                                 throw new AssemblyException("Error getting related " + resultsDescription, e);
 109  0
                         } catch (OperationFailedException e) {
 110  0
                                 throw new AssemblyException("Error getting related " + resultsDescription, e);
 111  0
                         }
 112  
                 }
 113  
 
 114  
                 //If this is a delete we don't need the result options, just the CluResultInfo
 115  0
                 if(!NodeOperation.DELETE.equals(operation)){
 116  0
                         if(cluResult == null){
 117  
                                 //Create a new resultInfo of the given type if one does not exist and set operation to Create
 118  0
                                 cluResult = new CluResultInfo();
 119  0
                                 cluResult.setCluId(cluId);
 120  0
                                 cluResult.setState(cluState);
 121  0
                                 cluResult.setType(resultType);
 122  0
                                 RichTextInfo desc = new RichTextInfo();
 123  0
                                 desc.setPlain(resultsDescription);
 124  0
                                 cluResult.setDesc(desc);
 125  0
                                 cluResult.setEffectiveDate(new Date());
 126  0
                                 cluResultNode.setOperation(NodeOperation.CREATE);
 127  
                         }
 128  
 
 129  0
                         cluResult.setResultOptions(new ArrayList<ResultOptionInfo>());
 130  
 
 131  
                         // Loop through all the credit options in this clu
 132  0
                         for (String optionType : options) {
 133  0
                                 if(currentResults.containsKey(optionType)){
 134  
                                         //If the option exists already copy it to the new list of result options
 135  0
                                         ResultOptionInfo resultOptionInfo = currentResults.get(optionType);
 136  0
                                         cluResult.getResultOptions().add(resultOptionInfo);
 137  0
                                 }else{
 138  
                                         //Otherwise create a new result option
 139  0
                                         ResultOptionInfo resultOptionInfo = new ResultOptionInfo();
 140  0
                                         RichTextInfo desc = new RichTextInfo();
 141  0
                                         desc.setPlain(resultDescription);
 142  0
                                         resultOptionInfo.setDesc(desc);
 143  0
                                         resultOptionInfo.setResultComponentId(optionType);
 144  0
                                         resultOptionInfo.setState(cluState);
 145  
 
 146  0
                                         cluResult.getResultOptions().add(resultOptionInfo);
 147  0
                                 }
 148  
                         }
 149  
                 }
 150  
 
 151  0
                 cluResultNode.setNodeData(cluResult);
 152  0
                 return cluResultNode;
 153  
         }
 154  
 
 155  
     public List<LoDisplayInfo> assembleLos(String cluId, boolean shallowBuild) throws AssemblyException {
 156  0
         List<LoDisplayInfo> loInfos = new ArrayList<LoDisplayInfo>();
 157  
         try {
 158  0
             List<CluLoRelationInfo> cluLoRelations = luService.getCluLoRelationsByClu(cluId);
 159  0
             for (CluLoRelationInfo cluLoRelation : cluLoRelations) {
 160  0
                 String loId = cluLoRelation.getLoId();
 161  0
                 LoInfo lo = loService.getLo(loId);
 162  0
                 loInfos.add(loAssembler.assemble(lo, null, shallowBuild));
 163  0
             }
 164  0
         } catch (Exception e) {
 165  0
             throw new AssemblyException("Error getting learning objectives", e);
 166  0
         }
 167  
 
 168  0
         return loInfos;
 169  
     }
 170  
     
 171  
         public List<BaseDTOAssemblyNode<?, ?>> disassembleLos(String cluId, String cluState, List<LoDisplayInfo> loInfos,
 172  
                         NodeOperation operation) throws AssemblyException, DoesNotExistException, InvalidParameterException, MissingParameterException, OperationFailedException{
 173  
                 // TODO Auto-generated method stub
 174  0
                 List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>();
 175  
 
 176  
                 // Get the current formats and put them in a map of format id/relation
 177  
                 // id
 178  0
                 Map<String, CluLoRelationInfo> currentCluLoRelations = new HashMap<String, CluLoRelationInfo>();
 179  
                 try {
 180  0
                         List<CluLoRelationInfo> cluLoRelations = luService.getCluLoRelationsByClu(cluId);
 181  0
                         for(CluLoRelationInfo cluLoRelation:cluLoRelations){
 182  0
                                 if(CluAssemblerConstants.CLU_LO_CLU_SPECIFIC_RELATION.equals(cluLoRelation.getType())){
 183  0
                                         currentCluLoRelations.put(cluLoRelation.getLoId(), cluLoRelation);
 184  
                                 }
 185  
                         }
 186  0
                 } catch (DoesNotExistException e) {
 187  0
                 } catch (Exception e) {
 188  0
                         throw new AssemblyException("Error finding related Los", e);
 189  0
                 }
 190  
 
 191  
                 // Loop through all the los in this clu
 192  0
                 for(LoDisplayInfo loDisplay : loInfos){
 193  
 
 194  
                         // If this is a clu create/new lo update then all los will be created
 195  0
                     if (NodeOperation.CREATE == operation
 196  
                             || (NodeOperation.UPDATE == operation &&  !currentCluLoRelations.containsKey(loDisplay.getLoInfo().getId()))) {
 197  
 
 198  
                 // the lo does not exist, so create
 199  
                 // Assemble and add the lo
 200  0
                             loDisplay.getLoInfo().setId(null);
 201  0
                 BaseDTOAssemblyNode<LoDisplayInfo, LoInfo> loNode = loAssembler
 202  
                         .disassemble(loDisplay, NodeOperation.CREATE);
 203  0
                 results.add(loNode);
 204  
 
 205  
                 // Create the relationship and add it as well
 206  0
                 CluLoRelationInfo relation = new CluLoRelationInfo();
 207  0
                 relation.setCluId(cluId);
 208  0
                 relation.setLoId(loNode.getNodeData().getId());
 209  0
                 relation.setType(CluAssemblerConstants.CLU_LO_CLU_SPECIFIC_RELATION);
 210  0
                 relation.setState(cluState);
 211  
 
 212  0
                 BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo> relationNode = new BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo>(
 213  
                         null);
 214  0
                 relationNode.setNodeData(relation);
 215  0
                 relationNode.setOperation(NodeOperation.CREATE);
 216  
 
 217  0
                 results.add(relationNode);
 218  0
             } else if (NodeOperation.UPDATE == operation
 219  
                                         && currentCluLoRelations.containsKey(loDisplay.getLoInfo().getId())) {
 220  
                                 // If the clu already has this lo, then just update the lo
 221  0
                 BaseDTOAssemblyNode<LoDisplayInfo, LoInfo> loNode = loAssembler
 222  
                                 .disassemble(loDisplay, NodeOperation.UPDATE);
 223  0
                                 results.add(loNode);
 224  
 
 225  
                                 // remove this entry from the map so we can tell what needs to
 226  
                                 // be deleted at the end
 227  0
                                 currentCluLoRelations.remove(loDisplay.getLoInfo().getId());
 228  0
                         } else if (NodeOperation.DELETE == operation
 229  
                     && currentCluLoRelations.containsKey(loDisplay.getLoInfo().getId())) {
 230  
 
 231  
                 // Delete the Format and its relation
 232  0
                                 CluLoRelationInfo relationToDelete = currentCluLoRelations.get(loDisplay.getLoInfo().getId());
 233  0
                 BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo>(
 234  
                         null);
 235  0
                 relationToDeleteNode.setNodeData(relationToDelete);
 236  0
                 relationToDeleteNode.setOperation(NodeOperation.DELETE);
 237  0
                 results.add(relationToDeleteNode);
 238  
 
 239  0
                 BaseDTOAssemblyNode<LoDisplayInfo, LoInfo> loNode = loAssembler
 240  
                                         .disassemble(loDisplay, NodeOperation.DELETE);
 241  0
                 results.add(loNode);
 242  
 
 243  
                 // remove this entry from the map so we can tell what needs to
 244  
                 // be deleted at the end
 245  0
                 currentCluLoRelations.remove(loDisplay.getLoInfo().getId());
 246  0
                         }
 247  
                 }
 248  
 
 249  
         // Now any leftover lo ids are no longer needed, so delete
 250  
         // los and relations
 251  0
         for (Entry<String, CluLoRelationInfo> entry : currentCluLoRelations.entrySet()) {
 252  
             // Create a new relation with the id of the relation we want to
 253  
             // delete
 254  0
                 CluLoRelationInfo relationToDelete = entry.getValue();
 255  0
             BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<LoDisplayInfo, CluLoRelationInfo>(
 256  
                     null);
 257  0
             relationToDeleteNode.setNodeData(relationToDelete);
 258  0
             relationToDeleteNode.setOperation(NodeOperation.DELETE);
 259  0
             results.add(relationToDeleteNode);
 260  
 
 261  0
             LoInfo loToDelete = loService.getLo(entry.getKey());
 262  0
             LoDisplayInfo loDisplayToDelete = loAssembler.assemble(loToDelete, null, false);
 263  0
             BaseDTOAssemblyNode<LoDisplayInfo, LoInfo> loNode = loAssembler
 264  
                             .disassemble(loDisplayToDelete, NodeOperation.DELETE);
 265  0
             results.add(loNode);
 266  0
         }
 267  
 
 268  0
                 return results;
 269  
         }
 270  
 
 271  
     // Spring setters
 272  
     public void setLuService(LuService luService) {
 273  0
         this.luService = luService;
 274  0
     }
 275  
 
 276  
     public void setLoService(LearningObjectiveService loService) {
 277  0
         this.loService = loService;
 278  0
     }
 279  
 
 280  
     public void setLoAssembler(LoAssembler loAssembler) {
 281  0
         this.loAssembler = loAssembler;
 282  0
     }
 283  
 }