1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.lo.service.impl; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import javax.jws.WebService; |
22 | |
|
23 | |
import org.kuali.student.common.validator.Validator; |
24 | |
import org.kuali.student.common.validator.ValidatorFactory; |
25 | |
import org.kuali.student.core.dictionary.dto.ObjectStructureDefinition; |
26 | |
import org.kuali.student.core.dictionary.service.DictionaryService; |
27 | |
import org.kuali.student.core.dto.StatusInfo; |
28 | |
import org.kuali.student.core.exceptions.AlreadyExistsException; |
29 | |
import org.kuali.student.core.exceptions.DataValidationErrorException; |
30 | |
import org.kuali.student.core.exceptions.DependentObjectsExistException; |
31 | |
import org.kuali.student.core.exceptions.DoesNotExistException; |
32 | |
import org.kuali.student.core.exceptions.InvalidParameterException; |
33 | |
import org.kuali.student.core.exceptions.MissingParameterException; |
34 | |
import org.kuali.student.core.exceptions.OperationFailedException; |
35 | |
import org.kuali.student.core.exceptions.PermissionDeniedException; |
36 | |
import org.kuali.student.core.exceptions.UnsupportedActionException; |
37 | |
import org.kuali.student.core.exceptions.VersionMismatchException; |
38 | |
import org.kuali.student.core.search.dto.SearchCriteriaTypeInfo; |
39 | |
import org.kuali.student.core.search.dto.SearchParam; |
40 | |
import org.kuali.student.core.search.dto.SearchRequest; |
41 | |
import org.kuali.student.core.search.dto.SearchResult; |
42 | |
import org.kuali.student.core.search.dto.SearchResultCell; |
43 | |
import org.kuali.student.core.search.dto.SearchResultRow; |
44 | |
import org.kuali.student.core.search.dto.SearchResultTypeInfo; |
45 | |
import org.kuali.student.core.search.dto.SearchTypeInfo; |
46 | |
import org.kuali.student.core.search.service.SearchManager; |
47 | |
import org.kuali.student.core.validation.dto.ValidationResultInfo; |
48 | |
import org.kuali.student.lum.lo.dao.LoDao; |
49 | |
import org.kuali.student.lum.lo.dto.LoCategoryInfo; |
50 | |
import org.kuali.student.lum.lo.dto.LoCategoryTypeInfo; |
51 | |
import org.kuali.student.lum.lo.dto.LoInfo; |
52 | |
import org.kuali.student.lum.lo.dto.LoLoRelationInfo; |
53 | |
import org.kuali.student.lum.lo.dto.LoLoRelationTypeInfo; |
54 | |
import org.kuali.student.lum.lo.dto.LoRepositoryInfo; |
55 | |
import org.kuali.student.lum.lo.dto.LoTypeInfo; |
56 | |
import org.kuali.student.lum.lo.entity.Lo; |
57 | |
import org.kuali.student.lum.lo.entity.LoCategory; |
58 | |
import org.kuali.student.lum.lo.entity.LoCategoryType; |
59 | |
import org.kuali.student.lum.lo.entity.LoLoRelation; |
60 | |
import org.kuali.student.lum.lo.entity.LoLoRelationType; |
61 | |
import org.kuali.student.lum.lo.entity.LoRepository; |
62 | |
import org.kuali.student.lum.lo.entity.LoType; |
63 | |
import org.kuali.student.lum.lo.service.LearningObjectiveService; |
64 | |
import org.springframework.transaction.annotation.Transactional; |
65 | |
|
66 | |
|
67 | |
|
68 | |
|
69 | |
|
70 | |
@WebService(endpointInterface = "org.kuali.student.lum.lo.service.LearningObjectiveService", serviceName = "LearningObjectiveService", portName = "LearningObjectiveService", targetNamespace = "http://student.kuali.org/wsdl/lo") |
71 | |
@Transactional(readOnly=true,noRollbackFor={DoesNotExistException.class},rollbackFor={Throwable.class}) |
72 | 6 | public class LearningObjectiveServiceImpl implements LearningObjectiveService { |
73 | |
private LoDao loDao; |
74 | |
private SearchManager searchManager; |
75 | |
private DictionaryService dictionaryServiceDelegate; |
76 | |
private ValidatorFactory validatorFactory; |
77 | |
|
78 | |
public LoDao getLoDao() { |
79 | 0 | return loDao; |
80 | |
} |
81 | |
|
82 | |
public void setLoDao(LoDao dao) { |
83 | 3 | this.loDao = dao; |
84 | 3 | } |
85 | |
|
86 | |
public void setSearchManager(SearchManager searchManager) { |
87 | 3 | this.searchManager = searchManager; |
88 | 3 | } |
89 | |
|
90 | |
public void setDictionaryServiceDelegate(DictionaryService dictionaryServiceDelegate) { |
91 | 3 | this.dictionaryServiceDelegate = dictionaryServiceDelegate; |
92 | 3 | } |
93 | |
|
94 | |
public ValidatorFactory getValidatorFactory() { |
95 | 0 | return validatorFactory; |
96 | |
} |
97 | |
|
98 | |
public void setValidatorFactory(ValidatorFactory validatorFactory) { |
99 | 3 | this.validatorFactory = validatorFactory; |
100 | 3 | } |
101 | |
|
102 | |
|
103 | |
|
104 | |
|
105 | |
|
106 | |
@Override |
107 | |
public List<LoRepositoryInfo> getLoRepositories() |
108 | |
throws OperationFailedException { |
109 | 1 | List<LoRepository> repositories = loDao.find(LoRepository.class); |
110 | 1 | return LearningObjectiveServiceAssembler.toLoRepositoryInfos(repositories); |
111 | |
} |
112 | |
|
113 | |
|
114 | |
|
115 | |
|
116 | |
|
117 | |
@Override |
118 | |
public LoRepositoryInfo getLoRepository(String loRepositoryKey) |
119 | |
throws DoesNotExistException, InvalidParameterException, |
120 | |
MissingParameterException, OperationFailedException { |
121 | 2 | checkForMissingParameter(loRepositoryKey, "loRepositoryKey"); |
122 | 1 | return LearningObjectiveServiceAssembler.toLoRepositoryInfo(loDao.fetch(LoRepository.class, loRepositoryKey)); |
123 | |
} |
124 | |
|
125 | |
|
126 | |
|
127 | |
|
128 | |
|
129 | |
@Override |
130 | |
public List<LoTypeInfo> getLoTypes() throws OperationFailedException { |
131 | 1 | List<LoType> find = loDao.find(LoType.class); |
132 | 1 | return LearningObjectiveServiceAssembler.toLoTypeInfos(find); |
133 | |
} |
134 | |
|
135 | |
|
136 | |
|
137 | |
|
138 | |
|
139 | |
@Override |
140 | |
public LoTypeInfo getLoType(String loTypeKey) throws DoesNotExistException, |
141 | |
InvalidParameterException, MissingParameterException, |
142 | |
OperationFailedException { |
143 | 3 | checkForMissingParameter(loTypeKey, "loTypeKey"); |
144 | 2 | LoType fetch = loDao.fetch(LoType.class, loTypeKey); |
145 | 2 | return LearningObjectiveServiceAssembler.toLoTypeInfo(fetch); |
146 | |
} |
147 | |
|
148 | |
|
149 | |
|
150 | |
|
151 | |
|
152 | |
@Override |
153 | |
public List<LoLoRelationTypeInfo> getLoLoRelationTypes() |
154 | |
throws OperationFailedException { |
155 | 1 | List<LoLoRelationType> fetch = loDao.find(LoLoRelationType.class); |
156 | 1 | return LearningObjectiveServiceAssembler.toLoLoRelationTypeInfos(fetch); |
157 | |
} |
158 | |
|
159 | |
|
160 | |
|
161 | |
|
162 | |
|
163 | |
@Override |
164 | |
public LoLoRelationTypeInfo getLoLoRelationType(String loLoRelationTypeKey) |
165 | |
throws OperationFailedException, MissingParameterException, DoesNotExistException { |
166 | 2 | checkForMissingParameter(loLoRelationTypeKey, "loLoRelationTypeKey"); |
167 | 1 | return LearningObjectiveServiceAssembler.toLoLoRelationTypeInfo(loDao.fetch(LoLoRelationType.class, loLoRelationTypeKey)); |
168 | |
} |
169 | |
|
170 | |
@Override |
171 | |
public List<String> getAllowedLoLoRelationTypesForLoType(String loTypeKey, String relatedLoTypeKey) |
172 | |
throws DoesNotExistException, InvalidParameterException, |
173 | |
MissingParameterException, OperationFailedException { |
174 | 2 | checkForMissingParameter(loTypeKey, "loTypeKey"); |
175 | 2 | checkForMissingParameter(relatedLoTypeKey, "relatedLoTypeKey"); |
176 | |
|
177 | 2 | return loDao.getAllowedLoLoRelationTypesForLoType(loTypeKey, relatedLoTypeKey); |
178 | |
} |
179 | |
|
180 | |
|
181 | |
|
182 | |
|
183 | |
|
184 | |
@Override |
185 | |
@Transactional(readOnly=false) |
186 | |
public StatusInfo addLoCategoryToLo(String loCategoryId, String loId) |
187 | |
throws AlreadyExistsException, DoesNotExistException, |
188 | |
InvalidParameterException, MissingParameterException, |
189 | |
OperationFailedException, PermissionDeniedException, |
190 | |
UnsupportedActionException { |
191 | 1263 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
192 | 1263 | checkForMissingParameter(loId, "loId"); |
193 | 1263 | StatusInfo statusInfo = new StatusInfo(); |
194 | 1263 | statusInfo.setSuccess(loDao.addLoCategoryToLo(loCategoryId, loId)); |
195 | 1263 | return statusInfo; |
196 | |
} |
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
@Override |
202 | |
@Transactional(readOnly=false) |
203 | |
public LoInfo createLo(String repositoryId, String loType, LoInfo loInfo) |
204 | |
throws DataValidationErrorException, DoesNotExistException, |
205 | |
InvalidParameterException, MissingParameterException, |
206 | |
OperationFailedException, PermissionDeniedException { |
207 | 642 | checkForMissingParameter(repositoryId, "repositoryId"); |
208 | 641 | checkForMissingParameter(loType, "loType"); |
209 | 640 | checkForMissingParameter(loInfo, "loInfo"); |
210 | |
|
211 | |
|
212 | |
|
213 | 639 | List<ValidationResultInfo> val = validateLo("SYSTEM", loInfo); |
214 | 638 | if(null != val && val.size() > 0) { |
215 | 0 | for (ValidationResultInfo result : val) { |
216 | 0 | System.err.println("Validation error. Element: " + result.getElement() + ", Value: " + result.getMessage()); |
217 | |
} |
218 | 0 | throw new DataValidationErrorException("Validation error!"); |
219 | |
} |
220 | |
|
221 | |
|
222 | |
|
223 | 638 | LoType type = null; |
224 | 638 | LoRepository repository = null; |
225 | |
try { |
226 | 638 | type = loDao.fetch(LoType.class, loType); |
227 | 638 | repository = loDao.fetch(LoRepository.class, repositoryId); |
228 | 0 | } catch (DoesNotExistException dnee) { |
229 | 0 | throw new DoesNotExistException("Specified " + (null == type ? "LoType" : "LoRepository") + " does not exist", dnee); |
230 | 638 | } |
231 | |
|
232 | 638 | loInfo.setLoRepositoryKey(repositoryId); |
233 | 638 | loInfo.setType(loType); |
234 | |
|
235 | 638 | Lo lo = null; |
236 | |
try { |
237 | 638 | lo = LearningObjectiveServiceAssembler.toLo(false, loInfo, loDao); |
238 | 0 | } catch (VersionMismatchException vme) { |
239 | |
|
240 | 0 | throw new OperationFailedException("VersionMismatchException caught during Learning Objective creation"); |
241 | 638 | } |
242 | 638 | lo.setLoType(type); |
243 | 638 | lo.setLoRepository(repository); |
244 | 638 | loDao.create(lo); |
245 | |
|
246 | 638 | return LearningObjectiveServiceAssembler.toLoInfo(lo); |
247 | |
} |
248 | |
|
249 | |
|
250 | |
|
251 | |
|
252 | |
@Override |
253 | |
@Transactional(readOnly=false) |
254 | |
public StatusInfo deleteLo(String loId) |
255 | |
throws DependentObjectsExistException, DoesNotExistException, |
256 | |
InvalidParameterException, MissingParameterException, |
257 | |
OperationFailedException, PermissionDeniedException { |
258 | 25 | checkForMissingParameter(loId, "loId"); |
259 | |
|
260 | 25 | StatusInfo returnStatus = new StatusInfo(); |
261 | 25 | returnStatus.setSuccess(loDao.deleteLo(loId)); |
262 | 24 | return returnStatus; |
263 | |
} |
264 | |
|
265 | |
|
266 | |
|
267 | |
|
268 | |
@Override |
269 | |
@Transactional(readOnly=false) |
270 | |
public StatusInfo deleteLoCategory(String loCategoryId) |
271 | |
throws DependentObjectsExistException, DoesNotExistException, |
272 | |
InvalidParameterException, MissingParameterException, |
273 | |
OperationFailedException, PermissionDeniedException { |
274 | 6 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
275 | |
|
276 | 6 | loDao.deleteLoCategory(loCategoryId); |
277 | |
|
278 | 5 | return new StatusInfo(); |
279 | |
} |
280 | |
|
281 | |
|
282 | |
|
283 | |
|
284 | |
@Override |
285 | |
public LoInfo getLo(String loId) throws DoesNotExistException, |
286 | |
InvalidParameterException, MissingParameterException, |
287 | |
OperationFailedException { |
288 | 84 | checkForMissingParameter(loId, "loId"); |
289 | |
|
290 | 83 | return LearningObjectiveServiceAssembler.toLoInfo(loDao.fetch(Lo.class, loId)); |
291 | |
} |
292 | |
|
293 | |
|
294 | |
|
295 | |
|
296 | |
@Override |
297 | |
public List<LoInfo> getLoByIdList(List<String> loIds) |
298 | |
throws InvalidParameterException, MissingParameterException, |
299 | |
OperationFailedException { |
300 | 1 | checkForMissingParameter(loIds, "loId"); |
301 | 1 | checkForEmptyList(loIds, "loId"); |
302 | 1 | List<Lo> los = loDao.getLoByIdList(loIds); |
303 | 1 | return LearningObjectiveServiceAssembler.toLoInfos(los); |
304 | |
} |
305 | |
|
306 | |
|
307 | |
|
308 | |
|
309 | |
@Override |
310 | |
public List<LoCategoryInfo> getLoCategories(String loRepositoryKey) |
311 | |
throws DoesNotExistException, InvalidParameterException, |
312 | |
MissingParameterException, OperationFailedException { |
313 | 3 | checkForMissingParameter(loRepositoryKey, "loRepositoryKey"); |
314 | 3 | List<LoCategory> categories = loDao.getLoCategories(loRepositoryKey); |
315 | 3 | return LearningObjectiveServiceAssembler.toLoCategoryInfos(categories); |
316 | |
} |
317 | |
|
318 | |
|
319 | |
|
320 | |
|
321 | |
@Override |
322 | |
public List<LoCategoryInfo> getLoCategoriesForLo(String loId) |
323 | |
throws DoesNotExistException, InvalidParameterException, |
324 | |
MissingParameterException, OperationFailedException { |
325 | 432 | checkForMissingParameter(loId, "loId"); |
326 | 432 | List<LoCategory> categories = loDao.getLoCategoriesForLo(loId); |
327 | 432 | return LearningObjectiveServiceAssembler.toLoCategoryInfos(categories); |
328 | |
} |
329 | |
|
330 | |
|
331 | |
|
332 | |
|
333 | |
@Override |
334 | |
public LoCategoryInfo getLoCategory(String loCategoryId) |
335 | |
throws DoesNotExistException, InvalidParameterException, |
336 | |
MissingParameterException, OperationFailedException { |
337 | 3 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
338 | |
|
339 | 3 | return LearningObjectiveServiceAssembler.toLoCategoryInfo(loDao.fetch(LoCategory.class, loCategoryId)); |
340 | |
} |
341 | |
|
342 | |
|
343 | |
|
344 | |
|
345 | |
|
346 | |
|
347 | |
|
348 | |
|
349 | |
|
350 | |
|
351 | |
|
352 | |
|
353 | |
|
354 | |
|
355 | |
|
356 | |
@Override |
357 | |
public List<LoInfo> getLosByLoCategory(String loCategoryId) |
358 | |
throws DoesNotExistException, InvalidParameterException, |
359 | |
MissingParameterException, OperationFailedException { |
360 | 5 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
361 | 5 | List<Lo> los = loDao.getLosByLoCategory(loCategoryId); |
362 | 5 | return LearningObjectiveServiceAssembler.toLoInfos(los); |
363 | |
} |
364 | |
|
365 | |
|
366 | |
|
367 | |
|
368 | |
|
369 | |
|
370 | |
|
371 | |
|
372 | |
|
373 | |
|
374 | |
|
375 | |
|
376 | |
|
377 | |
|
378 | |
|
379 | |
|
380 | |
|
381 | |
|
382 | |
|
383 | |
|
384 | |
|
385 | |
|
386 | |
|
387 | |
|
388 | |
|
389 | |
|
390 | |
|
391 | |
|
392 | |
|
393 | |
|
394 | |
|
395 | |
|
396 | |
|
397 | |
|
398 | |
|
399 | |
|
400 | |
|
401 | |
|
402 | |
|
403 | |
|
404 | |
|
405 | |
|
406 | |
|
407 | |
|
408 | |
|
409 | |
|
410 | |
|
411 | |
|
412 | |
|
413 | |
|
414 | |
|
415 | |
|
416 | |
|
417 | |
|
418 | |
|
419 | |
|
420 | |
|
421 | |
|
422 | |
|
423 | |
|
424 | |
|
425 | |
|
426 | |
@Override |
427 | |
@Transactional(readOnly=false) |
428 | |
public StatusInfo removeLoCategoryFromLo(String loCategoryId, String loId) |
429 | |
throws DoesNotExistException, InvalidParameterException, |
430 | |
MissingParameterException, OperationFailedException, |
431 | |
PermissionDeniedException, UnsupportedActionException { |
432 | 44 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
433 | 44 | checkForMissingParameter(loId, "loId"); |
434 | |
|
435 | 44 | StatusInfo statusInfo = new StatusInfo(); |
436 | 44 | statusInfo.setSuccess(loDao.removeLoCategoryFromLo(loCategoryId, loId)); |
437 | 44 | return statusInfo; |
438 | |
} |
439 | |
|
440 | |
|
441 | |
|
442 | |
|
443 | |
@Override |
444 | |
@Transactional(readOnly=false) |
445 | |
public LoInfo updateLo(String loId, LoInfo loInfo) |
446 | |
throws DataValidationErrorException, DoesNotExistException, |
447 | |
InvalidParameterException, MissingParameterException, |
448 | |
OperationFailedException, PermissionDeniedException, |
449 | |
VersionMismatchException { |
450 | 25 | checkForMissingParameter(loId, "loId"); |
451 | 24 | checkForMissingParameter(loInfo, "loInfo"); |
452 | |
|
453 | |
|
454 | 23 | List<ValidationResultInfo> val = validateLo("SYSTEM", loInfo); |
455 | 23 | if(null != val && val.size() > 0) { |
456 | 0 | for (ValidationResultInfo result : val) { |
457 | 0 | System.err.println("Validation error. Element: " + result.getElement() + ", Value: " + result.getMessage()); |
458 | |
} |
459 | 0 | throw new DataValidationErrorException("Validation error!"); |
460 | |
} |
461 | |
|
462 | 23 | Lo lo = loDao.fetch(Lo.class, loId); |
463 | |
|
464 | 23 | if (!String.valueOf(lo.getVersionNumber()).equals(loInfo.getMetaInfo().getVersionInd())){ |
465 | 1 | throw new VersionMismatchException("LO to be updated is not the current version"); |
466 | |
} |
467 | |
|
468 | 22 | lo = LearningObjectiveServiceAssembler.toLo(true, lo, loInfo, loDao); |
469 | 22 | loDao.update(lo); |
470 | 22 | return LearningObjectiveServiceAssembler.toLoInfo(lo); |
471 | |
} |
472 | |
|
473 | |
|
474 | |
|
475 | |
|
476 | |
@Override |
477 | |
@Transactional(readOnly=false) |
478 | |
public LoCategoryInfo updateLoCategory(String loCategoryId, |
479 | |
LoCategoryInfo loCategoryInfo) throws DataValidationErrorException, |
480 | |
DoesNotExistException, InvalidParameterException, |
481 | |
MissingParameterException, OperationFailedException, |
482 | |
PermissionDeniedException, VersionMismatchException { |
483 | 3 | checkForMissingParameter(loCategoryId, "loCategoryId"); |
484 | 3 | checkForMissingParameter(loCategoryInfo, "loCategoryInfo"); |
485 | |
|
486 | |
|
487 | 3 | List<ValidationResultInfo> val = validateLoCategory("SYSTEM", loCategoryInfo); |
488 | |
|
489 | |
|
490 | 3 | if (doesLoCategoryExist(loCategoryInfo.getLoRepository(), loCategoryInfo, loCategoryId)) { |
491 | 2 | ValidationResultInfo vr = new ValidationResultInfo(); |
492 | 2 | vr.setElement("LO Category Name"); |
493 | 2 | vr.setError("LO Category already exists"); |
494 | 2 | val.add(vr); |
495 | |
} |
496 | 3 | if(null != val && val.size() > 0) { |
497 | 2 | for (ValidationResultInfo result : val) { |
498 | 2 | System.err.println("Validation error. Element: " + result.getElement() + ", Value: " + result.getMessage()); |
499 | |
} |
500 | 2 | throw new DataValidationErrorException("Validation error!", val); |
501 | |
} |
502 | 1 | LoCategory loCategory = loDao.fetch(LoCategory.class, loCategoryId); |
503 | |
|
504 | 1 | if (!String.valueOf(loCategory.getVersionNumber()).equals(loCategoryInfo.getMetaInfo().getVersionInd())){ |
505 | 0 | throw new VersionMismatchException("LoCategory to be updated is not the current version"); |
506 | |
} |
507 | |
|
508 | |
|
509 | 1 | if (loCategory.getState().equals("active") && ( ! loCategoryInfo.getState().equals("active") )) { |
510 | |
|
511 | |
|
512 | 0 | List<LoInfo> loInfos = getLosByLoCategory(loCategoryId); |
513 | 0 | if (null != loInfos) { |
514 | |
|
515 | 0 | for (LoInfo info : loInfos) { |
516 | 0 | if (info.getState().equals("active")) { |
517 | |
try { |
518 | 0 | removeLoCategoryFromLo(loCategoryId, info.getId()); |
519 | 0 | } catch (UnsupportedActionException uaee) { |
520 | 0 | throw new OperationFailedException("Unable to update LoCategory: could not remove association with active LearningObjective", uaee); |
521 | 0 | } |
522 | |
} |
523 | |
} |
524 | |
} |
525 | |
} |
526 | |
|
527 | |
|
528 | 1 | if ( ! loCategory.getLoCategoryType().getId().equals(loCategoryInfo.getType()) ) { |
529 | 1 | loCategory = cloneLoCategory(loCategory, loCategoryInfo); |
530 | |
} else { |
531 | 0 | loCategory = LearningObjectiveServiceAssembler.toLoCategory(loCategory, loCategoryInfo, loDao); |
532 | 0 | loDao.update(loCategory); |
533 | |
} |
534 | 1 | return LearningObjectiveServiceAssembler.toLoCategoryInfo(loCategory); |
535 | |
} |
536 | |
|
537 | |
|
538 | |
|
539 | |
|
540 | |
private LoCategory cloneLoCategory(LoCategory loCategory, LoCategoryInfo loCategoryInfo) throws DoesNotExistException, InvalidParameterException, OperationFailedException { |
541 | 1 | LoCategoryType catType = null; |
542 | |
|
543 | |
try { |
544 | 1 | catType = loDao.fetch(LoCategoryType.class, loCategoryInfo.getType()); |
545 | 0 | } catch (DoesNotExistException dnee) { |
546 | 0 | throw new DoesNotExistException("Attempt to set LoCategory's type to nonexistent LoCategoryType", dnee); |
547 | 1 | } |
548 | |
|
549 | |
|
550 | 1 | LoCategoryInfo newLoCategoryInfo = LearningObjectiveServiceAssembler.toLoCategoryInfo(loCategory); |
551 | 1 | newLoCategoryInfo.setType(catType.getId()); |
552 | 1 | newLoCategoryInfo.setName(loCategoryInfo.getName()); |
553 | 1 | LoCategory newLoCategory = loDao.create(LearningObjectiveServiceAssembler.toLoCategory(newLoCategoryInfo, loDao)); |
554 | |
|
555 | |
|
556 | 1 | List<Lo> catsLos = loDao.getLosByLoCategory(loCategory.getId()); |
557 | 1 | for (Lo lo : catsLos) { |
558 | |
try { |
559 | |
|
560 | 2 | loDao.addLoCategoryToLo(newLoCategory.getId(), lo.getId()); |
561 | |
|
562 | 2 | loDao.removeLoCategoryFromLo(loCategory.getId(), lo.getId()); |
563 | 0 | } catch (UnsupportedActionException uae) { |
564 | 0 | throw new OperationFailedException(uae.getMessage(), uae); |
565 | 2 | } |
566 | |
} |
567 | |
|
568 | |
|
569 | 1 | loCategory.setState("inactive"); |
570 | 1 | loDao.update(loCategory); |
571 | |
|
572 | 1 | return newLoCategory; |
573 | |
} |
574 | |
|
575 | |
|
576 | |
|
577 | |
|
578 | |
@Override |
579 | |
public List<ValidationResultInfo> validateLo(String validationType, |
580 | |
LoInfo loInfo) throws DoesNotExistException, |
581 | |
InvalidParameterException, MissingParameterException, |
582 | |
OperationFailedException { |
583 | 662 | checkForMissingParameter(validationType, "validationType"); |
584 | 662 | checkForMissingParameter(loInfo, "loInfo"); |
585 | |
|
586 | |
try{ |
587 | 662 | String loDesc = loInfo.getDesc().getPlain(); |
588 | 662 | checkForEmptyString(loDesc, "loInfo.Desc"); |
589 | 0 | } catch (NullPointerException e){ |
590 | |
|
591 | 661 | } |
592 | |
|
593 | 661 | ObjectStructureDefinition objStructure = this.getObjectStructure(LoInfo.class.getName()); |
594 | 661 | Validator validator = validatorFactory.getValidator(); |
595 | 661 | return validator.validateObject(loInfo, objStructure); |
596 | |
} |
597 | |
|
598 | |
|
599 | |
|
600 | |
|
601 | |
@Override |
602 | |
public List<ValidationResultInfo> validateLoCategory(String validationType, |
603 | |
LoCategoryInfo loCategoryInfo) throws DoesNotExistException, |
604 | |
InvalidParameterException, MissingParameterException, |
605 | |
OperationFailedException { |
606 | 10 | checkForMissingParameter(validationType, "validationType"); |
607 | 10 | checkForMissingParameter(loCategoryInfo, "loCategoryInfo"); |
608 | |
|
609 | |
try{ |
610 | 10 | String catDesc = loCategoryInfo.getDesc().getPlain(); |
611 | 3 | checkForEmptyString(catDesc, "loCategoryInfo.Desc"); |
612 | 7 | } catch (NullPointerException e){ |
613 | |
|
614 | 2 | } |
615 | |
|
616 | 9 | ObjectStructureDefinition objStructure = this.getObjectStructure(LoCategoryInfo.class.getName()); |
617 | 9 | Validator validator = validatorFactory.getValidator(); |
618 | 9 | return validator.validateObject(loCategoryInfo, objStructure); |
619 | |
|
620 | |
} |
621 | |
|
622 | |
@Override |
623 | |
public List<ValidationResultInfo> validateLoLoRelation( |
624 | |
String validationType, LoLoRelationInfo loLoRelationInfo) |
625 | |
throws DoesNotExistException, InvalidParameterException, |
626 | |
MissingParameterException, OperationFailedException { |
627 | |
|
628 | 542 | ObjectStructureDefinition objStructure = this.getObjectStructure(LoLoRelationInfo.class.getName()); |
629 | 542 | Validator validator = validatorFactory.getValidator(); |
630 | 542 | return validator.validateObject(loLoRelationInfo, objStructure); |
631 | |
} |
632 | |
|
633 | |
|
634 | |
|
635 | |
|
636 | |
|
637 | |
|
638 | |
|
639 | |
|
640 | |
private void checkForMissingParameter(Object param, String paramName) |
641 | |
throws MissingParameterException { |
642 | 9488 | if (param == null) { |
643 | 16 | throw new MissingParameterException(paramName + " can not be null"); |
644 | |
} |
645 | 9472 | } |
646 | |
|
647 | |
|
648 | |
|
649 | |
|
650 | |
|
651 | |
|
652 | |
private void checkForEmptyList(Object param, String paramName) |
653 | |
throws MissingParameterException { |
654 | 1 | if (param != null && param instanceof List && ((List<?>)param).size() == 0) { |
655 | 0 | throw new MissingParameterException(paramName + " can not be an empty list"); |
656 | |
} |
657 | 1 | } |
658 | |
|
659 | |
|
660 | |
|
661 | |
|
662 | |
|
663 | |
|
664 | |
private void checkForEmptyString(String param, String paramName) |
665 | |
throws MissingParameterException { |
666 | 665 | if (param != null && "".equals(param.trim())) { |
667 | 2 | throw new MissingParameterException(paramName + " can not be empty"); |
668 | |
} |
669 | 663 | } |
670 | |
|
671 | |
|
672 | |
|
673 | |
|
674 | |
|
675 | |
|
676 | |
|
677 | |
private boolean doesLoCategoryExist(String loRepositoryKey, LoCategoryInfo loCategoryInfo, String loCategoryId) |
678 | |
throws MissingParameterException, DataValidationErrorException { |
679 | |
|
680 | 9 | boolean exists = false; |
681 | 9 | SearchRequest request = new SearchRequest(); |
682 | 9 | request.setSearchKey("lo.search.loCategoriesByNameRepoTypeState"); |
683 | |
|
684 | 9 | List<SearchParam> searchParams = new ArrayList<SearchParam>(); |
685 | 9 | SearchParam qpv1 = new SearchParam(); |
686 | 9 | qpv1.setKey("lo.queryParam.loCategoryName"); |
687 | 9 | qpv1.setValue(loCategoryInfo.getName().toLowerCase()); |
688 | 9 | searchParams.add(qpv1); |
689 | 9 | SearchParam qpv2 = new SearchParam(); |
690 | 9 | qpv2.setKey("lo.queryParam.loCategoryRepo"); |
691 | 9 | qpv2.setValue(loRepositoryKey); |
692 | 9 | searchParams.add(qpv2); |
693 | 9 | SearchParam qpv3 = new SearchParam(); |
694 | 9 | qpv3.setKey("lo.queryParam.loCategoryType"); |
695 | 9 | qpv3.setValue(loCategoryInfo.getType()); |
696 | 9 | searchParams.add(qpv3); |
697 | 9 | SearchParam qpv4 = new SearchParam(); |
698 | 9 | qpv4.setKey("lo.queryParam.loCategoryState"); |
699 | 9 | qpv4.setValue(loCategoryInfo.getState()); |
700 | 9 | searchParams.add(qpv4); |
701 | |
|
702 | 9 | request.setParams(searchParams); |
703 | |
|
704 | 9 | SearchResult result = search(request); |
705 | |
|
706 | 9 | if(loCategoryId != null && !loCategoryId.trim().equals("")){ |
707 | 3 | if (result.getRows().size() > 0) { |
708 | 2 | for(SearchResultRow srrow : result.getRows()){ |
709 | 2 | List<SearchResultCell> srCells = srrow.getCells(); |
710 | 2 | if(srCells != null && srCells.size() > 0){ |
711 | 2 | for(SearchResultCell srcell : srCells){ |
712 | 2 | if(!srcell.getValue().equals(loCategoryId)) { |
713 | 2 | exists = true; |
714 | |
} |
715 | |
} |
716 | |
} |
717 | 2 | } |
718 | |
} |
719 | |
} |
720 | |
else{ |
721 | 6 | if (result.getRows().size() > 0) { |
722 | 2 | exists = true; |
723 | |
} |
724 | |
} |
725 | 9 | return exists; |
726 | |
} |
727 | |
|
728 | |
@Override |
729 | |
public ObjectStructureDefinition getObjectStructure(String objectTypeKey) { |
730 | 1212 | return dictionaryServiceDelegate.getObjectStructure(objectTypeKey); |
731 | |
} |
732 | |
|
733 | |
@Override |
734 | |
public List<String> getObjectTypes() { |
735 | 0 | return dictionaryServiceDelegate.getObjectTypes(); |
736 | |
} |
737 | |
|
738 | |
|
739 | |
|
740 | |
|
741 | |
@Override |
742 | |
public SearchCriteriaTypeInfo getSearchCriteriaType( |
743 | |
String searchCriteriaTypeKey) throws DoesNotExistException, |
744 | |
InvalidParameterException, MissingParameterException, |
745 | |
OperationFailedException { |
746 | |
|
747 | 0 | return searchManager.getSearchCriteriaType(searchCriteriaTypeKey); |
748 | |
} |
749 | |
|
750 | |
|
751 | |
|
752 | |
|
753 | |
@Override |
754 | |
public List<SearchCriteriaTypeInfo> getSearchCriteriaTypes() |
755 | |
throws OperationFailedException { |
756 | 0 | return searchManager.getSearchCriteriaTypes(); |
757 | |
} |
758 | |
|
759 | |
|
760 | |
|
761 | |
|
762 | |
@Override |
763 | |
public SearchResultTypeInfo getSearchResultType(String searchResultTypeKey) |
764 | |
throws DoesNotExistException, InvalidParameterException, |
765 | |
MissingParameterException, OperationFailedException { |
766 | 0 | checkForMissingParameter(searchResultTypeKey, "searchResultTypeKey"); |
767 | 0 | return searchManager.getSearchResultType(searchResultTypeKey); |
768 | |
} |
769 | |
|
770 | |
|
771 | |
|
772 | |
|
773 | |
@Override |
774 | |
public List<SearchResultTypeInfo> getSearchResultTypes() |
775 | |
throws OperationFailedException { |
776 | 0 | return searchManager.getSearchResultTypes(); |
777 | |
} |
778 | |
|
779 | |
|
780 | |
|
781 | |
|
782 | |
@Override |
783 | |
public SearchTypeInfo getSearchType(String searchTypeKey) |
784 | |
throws DoesNotExistException, InvalidParameterException, |
785 | |
MissingParameterException, OperationFailedException { |
786 | 0 | checkForMissingParameter(searchTypeKey, "searchTypeKey"); |
787 | 0 | return searchManager.getSearchType(searchTypeKey); |
788 | |
} |
789 | |
|
790 | |
|
791 | |
|
792 | |
|
793 | |
@Override |
794 | |
public List<SearchTypeInfo> getSearchTypes() |
795 | |
throws OperationFailedException { |
796 | 0 | return searchManager.getSearchTypes(); |
797 | |
} |
798 | |
|
799 | |
|
800 | |
|
801 | |
|
802 | |
@Override |
803 | |
public List<SearchTypeInfo> getSearchTypesByCriteria( |
804 | |
String searchCriteriaTypeKey) throws DoesNotExistException, |
805 | |
InvalidParameterException, MissingParameterException, |
806 | |
OperationFailedException { |
807 | 0 | checkForMissingParameter(searchCriteriaTypeKey, "searchCriteriaTypeKey"); |
808 | 0 | return searchManager.getSearchTypesByCriteria(searchCriteriaTypeKey); |
809 | |
} |
810 | |
|
811 | |
|
812 | |
|
813 | |
|
814 | |
@Override |
815 | |
public List<SearchTypeInfo> getSearchTypesByResult( |
816 | |
String searchResultTypeKey) throws DoesNotExistException, |
817 | |
InvalidParameterException, MissingParameterException, |
818 | |
OperationFailedException { |
819 | 0 | checkForMissingParameter(searchResultTypeKey, "searchResultTypeKey"); |
820 | 0 | return searchManager.getSearchTypesByResult(searchResultTypeKey); |
821 | |
} |
822 | |
|
823 | |
@Override |
824 | |
@Transactional(readOnly=false) |
825 | |
public LoLoRelationInfo createLoLoRelation(String loId, String relatedLoId, |
826 | |
String loLoRelationType, LoLoRelationInfo loLoRelationInfo) |
827 | |
throws AlreadyExistsException, |
828 | |
DataValidationErrorException, DoesNotExistException, |
829 | |
InvalidParameterException, MissingParameterException, |
830 | |
OperationFailedException, PermissionDeniedException { |
831 | 546 | checkForMissingParameter(loId, "loId"); |
832 | 545 | checkForMissingParameter(relatedLoId, "relatedLoId"); |
833 | 544 | checkForMissingParameter(loLoRelationType, "loLoRelationType"); |
834 | 543 | checkForMissingParameter(loLoRelationInfo, "loLoRelationInfo"); |
835 | |
|
836 | |
|
837 | 542 | List<ValidationResultInfo> val = validateLoLoRelation("SYSTEM", loLoRelationInfo); |
838 | 542 | if(null != val && val.size() > 0) { |
839 | 0 | for (ValidationResultInfo result : val) { |
840 | 0 | System.err.println("Validation error. Element: " + result.getElement() + ", Value: " + result.getMessage()); |
841 | |
} |
842 | 0 | throw new DataValidationErrorException("Validation error!"); |
843 | |
} |
844 | |
|
845 | 542 | if (null == loLoRelationInfo.getState()) { |
846 | 2 | loLoRelationInfo.setState("draft"); |
847 | |
} |
848 | 542 | Lo lo = loDao.fetch(Lo.class, loId); |
849 | 542 | Lo relatedLo = loDao.fetch(Lo.class, relatedLoId); |
850 | 542 | LoLoRelationType type = loDao.fetch(LoLoRelationType.class, loLoRelationType); |
851 | 542 | loLoRelationInfo.setLoId(loId); |
852 | 542 | loLoRelationInfo.setRelatedLoId(relatedLoId); |
853 | 542 | loLoRelationInfo.setType(loLoRelationType); |
854 | |
|
855 | 542 | LoLoRelation relation = null; |
856 | |
try { |
857 | 542 | relation = LearningObjectiveServiceAssembler.toLoLoRelation(false, loLoRelationInfo, loDao); |
858 | 0 | } catch (VersionMismatchException vme) { |
859 | |
|
860 | 0 | throw new OperationFailedException("VersionMismatchException caught during LoLoRelation creation"); |
861 | 542 | } |
862 | 542 | relation.setLo(lo); |
863 | 542 | relation.setRelatedLo(relatedLo); |
864 | 542 | relation.setLoLoRelationType(type); |
865 | |
|
866 | 542 | relation = loDao.create(relation); |
867 | |
|
868 | 542 | return LearningObjectiveServiceAssembler.toLoLoRelationInfo(relation); |
869 | |
} |
870 | |
|
871 | |
@Override |
872 | |
@Transactional(readOnly=false) |
873 | |
public StatusInfo deleteLoLoRelation(String loLoRelationId) |
874 | |
throws DoesNotExistException, InvalidParameterException, |
875 | |
MissingParameterException, OperationFailedException, |
876 | |
PermissionDeniedException { |
877 | 18 | checkForMissingParameter(loLoRelationId, "loLoRelationId"); |
878 | |
|
879 | 18 | loDao.deleteLoLoRelation(loLoRelationId); |
880 | |
|
881 | 18 | return new StatusInfo(); |
882 | |
} |
883 | |
|
884 | |
@Override |
885 | |
public LoLoRelationInfo getLoLoRelation(String loLoRelationId) |
886 | |
throws DoesNotExistException, InvalidParameterException, |
887 | |
MissingParameterException, OperationFailedException { |
888 | 4 | checkForMissingParameter(loLoRelationId, "loLoRelationId"); |
889 | 3 | return LearningObjectiveServiceAssembler.toLoLoRelationInfo(loDao.fetch(LoLoRelation.class, loLoRelationId)); |
890 | |
} |
891 | |
|
892 | |
@Override |
893 | |
public List<LoLoRelationInfo> getLoLoRelationsByLoId(String loId) |
894 | |
throws DoesNotExistException, InvalidParameterException, |
895 | |
MissingParameterException, OperationFailedException { |
896 | 52 | List<LoLoRelation> llRelations = loDao.getLoLoRelationsByLoId(loId); |
897 | 52 | return LearningObjectiveServiceAssembler.toLoLoRelationInfos(llRelations); |
898 | |
} |
899 | |
|
900 | |
@Override |
901 | |
public List<LoInfo> getLosByRelatedLoId(String relatedLoId, |
902 | |
String loLoRelationType) throws DoesNotExistException, |
903 | |
InvalidParameterException, MissingParameterException, |
904 | |
OperationFailedException { |
905 | 0 | List<Lo> relatedLos = loDao.getLosByRelatedLoId(relatedLoId, loLoRelationType); |
906 | 0 | return LearningObjectiveServiceAssembler.toLoInfos(relatedLos); |
907 | |
} |
908 | |
|
909 | |
@Override |
910 | |
public List<LoInfo> getRelatedLosByLoId(String loId, String loLoRelationTypeKey) |
911 | |
throws DoesNotExistException, InvalidParameterException, |
912 | |
MissingParameterException, OperationFailedException { |
913 | 376 | checkForMissingParameter(loId, "loId"); |
914 | 375 | checkForMissingParameter(loLoRelationTypeKey, "loLoRelationTypeKey"); |
915 | 374 | List<Lo> relatedLos = loDao.getRelatedLosByLoId(loId, loLoRelationTypeKey); |
916 | 374 | return LearningObjectiveServiceAssembler.toLoInfos(relatedLos); |
917 | |
} |
918 | |
|
919 | |
@Override |
920 | |
@Transactional(readOnly=false) |
921 | |
public LoLoRelationInfo updateLoLoRelation(String loLoRelationId, |
922 | |
LoLoRelationInfo loLoRelationInfo) |
923 | |
throws DataValidationErrorException, DoesNotExistException, |
924 | |
InvalidParameterException, MissingParameterException, |
925 | |
OperationFailedException, PermissionDeniedException, |
926 | |
VersionMismatchException { |
927 | |
|
928 | |
|
929 | |
|
930 | |
|
931 | |
|
932 | |
|
933 | |
|
934 | |
|
935 | |
|
936 | |
|
937 | 0 | return null; |
938 | |
} |
939 | |
|
940 | |
@Override |
941 | |
@Transactional(readOnly=false) |
942 | |
public LoCategoryInfo createLoCategory(String loRepositoryKey, |
943 | |
String loCategoryTypeKey, LoCategoryInfo loCategoryInfo) |
944 | |
throws DataValidationErrorException, DoesNotExistException, |
945 | |
InvalidParameterException, MissingParameterException, |
946 | |
OperationFailedException, PermissionDeniedException { |
947 | 7 | checkForMissingParameter(loRepositoryKey, "loRepositoryKey"); |
948 | 7 | checkForMissingParameter(loCategoryTypeKey, "loCategoryTypeKey"); |
949 | 7 | checkForMissingParameter(loCategoryInfo, "loCategoryInfo"); |
950 | |
|
951 | |
|
952 | 7 | List<ValidationResultInfo> val = validateLoCategory("SYSTEM", loCategoryInfo); |
953 | |
|
954 | |
|
955 | 6 | if (doesLoCategoryExist(loRepositoryKey, loCategoryInfo, null)) { |
956 | 2 | ValidationResultInfo vr = new ValidationResultInfo(); |
957 | 2 | vr.setElement("LO Category Name"); |
958 | 2 | vr.setError("LO Category already exists"); |
959 | 2 | val.add(vr); |
960 | |
} |
961 | 6 | if(null != val && val.size() > 0) { |
962 | 2 | for (ValidationResultInfo result : val) { |
963 | 2 | System.err.println("Validation error. Element: " + result.getElement() + ", Value: " + result.getMessage()); |
964 | |
} |
965 | 2 | throw new DataValidationErrorException("Validation error!", val); |
966 | |
} |
967 | |
|
968 | 4 | LoCategory category = LearningObjectiveServiceAssembler.toLoCategory(loCategoryInfo, loDao); |
969 | 4 | LoCategoryType loCatType = loDao.fetch(LoCategoryType.class, loCategoryTypeKey); |
970 | 4 | category.setLoCategoryType(loCatType); |
971 | 4 | LoRepository loRepository = loDao.fetch(LoRepository.class, loRepositoryKey); |
972 | 4 | category.setLoRepository(loRepository); |
973 | 4 | loDao.create(category); |
974 | 4 | return LearningObjectiveServiceAssembler.toLoCategoryInfo(category); |
975 | |
} |
976 | |
|
977 | |
@Override |
978 | |
public LoCategoryTypeInfo getLoCategoryType(String loCategoryTypeKey) |
979 | |
throws DoesNotExistException, InvalidParameterException, |
980 | |
MissingParameterException, OperationFailedException { |
981 | 0 | checkForMissingParameter(loCategoryTypeKey, "loCategoryTypeKey"); |
982 | 0 | LoCategoryType loCatType = loDao.fetch(LoCategoryType.class, loCategoryTypeKey); |
983 | 0 | return LearningObjectiveServiceAssembler.toLoCategoryTypeInfo(loCatType); |
984 | |
} |
985 | |
|
986 | |
@Override |
987 | |
public List<LoCategoryTypeInfo> getLoCategoryTypes() |
988 | |
throws OperationFailedException { |
989 | 1 | List<LoCategoryType> categoryTypes = loDao.find(LoCategoryType.class); |
990 | 1 | return LearningObjectiveServiceAssembler.toLoCategoryTypeInfos(categoryTypes); |
991 | |
} |
992 | |
|
993 | |
@Override |
994 | |
public List<LoInfo> getLosByRepository(String loRepositoryKey, |
995 | |
String loTypeKey, String loStateKey) |
996 | |
throws InvalidParameterException, MissingParameterException, |
997 | |
OperationFailedException { |
998 | 0 | checkForMissingParameter(loRepositoryKey, "loRepositoryKey"); |
999 | 0 | List<Lo> los = loDao.getLosByRepository(loRepositoryKey); |
1000 | 0 | return LearningObjectiveServiceAssembler.toLoInfos(los); |
1001 | |
} |
1002 | |
|
1003 | |
@Override |
1004 | |
public SearchResult search(SearchRequest searchRequest) throws MissingParameterException { |
1005 | 10 | checkForMissingParameter(searchRequest, "searchRequest"); |
1006 | 10 | return searchManager.search(searchRequest, loDao); |
1007 | |
} |
1008 | |
|
1009 | |
} |