1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.lum.program.service.assembler; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.HashMap; |
20 | |
import java.util.Iterator; |
21 | |
import java.util.List; |
22 | |
import java.util.Map; |
23 | |
|
24 | |
import org.kuali.student.common.assembly.BaseDTOAssemblyNode; |
25 | |
import org.kuali.student.common.assembly.BaseDTOAssemblyNode.NodeOperation; |
26 | |
import org.kuali.student.common.assembly.data.AssemblyException; |
27 | |
import org.kuali.student.common.dto.DtoConstants; |
28 | |
import org.kuali.student.common.dto.RichTextInfo; |
29 | |
import org.kuali.student.common.exceptions.DoesNotExistException; |
30 | |
import org.kuali.student.common.exceptions.InvalidParameterException; |
31 | |
import org.kuali.student.common.exceptions.MissingParameterException; |
32 | |
import org.kuali.student.common.exceptions.OperationFailedException; |
33 | |
import org.kuali.student.common.util.UUIDHelper; |
34 | |
import org.kuali.student.lum.lu.dto.AdminOrgInfo; |
35 | |
import org.kuali.student.lum.lu.dto.CluCluRelationInfo; |
36 | |
import org.kuali.student.lum.lu.dto.CluIdentifierInfo; |
37 | |
import org.kuali.student.lum.lu.dto.CluInfo; |
38 | |
import org.kuali.student.lum.lu.dto.CluPublicationInfo; |
39 | |
import org.kuali.student.lum.lu.dto.CluResultInfo; |
40 | |
import org.kuali.student.lum.lu.dto.FieldInfo; |
41 | |
import org.kuali.student.lum.lu.dto.LuCodeInfo; |
42 | |
import org.kuali.student.lum.lu.service.LuService; |
43 | |
import org.kuali.student.lum.program.dto.CredentialProgramInfo; |
44 | |
import org.kuali.student.lum.program.dto.assembly.ProgramAtpAssembly; |
45 | |
import org.kuali.student.lum.program.dto.assembly.ProgramBasicOrgAssembly; |
46 | |
import org.kuali.student.lum.program.dto.assembly.ProgramCodeAssembly; |
47 | |
import org.kuali.student.lum.program.dto.assembly.ProgramCommonAssembly; |
48 | |
import org.kuali.student.lum.program.dto.assembly.ProgramCredentialAssembly; |
49 | |
import org.kuali.student.lum.program.dto.assembly.ProgramFullOrgAssembly; |
50 | |
import org.kuali.student.lum.program.dto.assembly.ProgramIdentifierAssembly; |
51 | |
import org.kuali.student.lum.program.dto.assembly.ProgramPublicationAssembly; |
52 | |
import org.kuali.student.lum.program.dto.assembly.ProgramRequirementAssembly; |
53 | |
import org.kuali.student.lum.service.assembler.CluAssemblerUtils; |
54 | |
|
55 | 0 | public class ProgramAssemblerUtils { |
56 | |
|
57 | |
private LuService luService; |
58 | |
private CluAssemblerUtils cluAssemblerUtils; |
59 | |
|
60 | |
|
61 | |
|
62 | |
|
63 | |
|
64 | |
|
65 | |
|
66 | |
|
67 | |
|
68 | |
public ProgramCommonAssembly assembleBasics(CluInfo clu, ProgramCommonAssembly program) throws AssemblyException { |
69 | |
|
70 | 0 | if (program instanceof CredentialProgramInfo) { |
71 | 0 | ((CredentialProgramInfo)program).setCredentialProgramType(clu.getType()); |
72 | |
} |
73 | |
else { |
74 | 0 | program.setType(clu.getType()); |
75 | |
} |
76 | 0 | program.setState(clu.getState()); |
77 | 0 | program.setMetaInfo(clu.getMetaInfo()); |
78 | 0 | program.setAttributes(clu.getAttributes()); |
79 | 0 | program.setId(clu.getId()); |
80 | |
|
81 | 0 | return program; |
82 | |
} |
83 | |
|
84 | |
|
85 | |
|
86 | |
|
87 | |
|
88 | |
|
89 | |
|
90 | |
|
91 | |
|
92 | |
|
93 | |
public CluInfo disassembleBasics(CluInfo clu, ProgramCommonAssembly program) throws AssemblyException { |
94 | |
|
95 | 0 | if (program instanceof CredentialProgramInfo) { |
96 | 0 | clu.setType (((CredentialProgramInfo)program).getCredentialProgramType()); |
97 | |
} |
98 | |
else { |
99 | 0 | clu.setType(program.getType()); |
100 | |
} |
101 | 0 | clu.setId(UUIDHelper.genStringUUID(program.getId())); |
102 | 0 | clu.setState(program.getState()); |
103 | 0 | clu.setMetaInfo(program.getMetaInfo()); |
104 | 0 | clu.setAttributes(program.getAttributes()); |
105 | 0 | return clu; |
106 | |
|
107 | |
} |
108 | |
|
109 | |
|
110 | |
public ProgramRequirementAssembly assembleRequirements(CluInfo clu, ProgramRequirementAssembly program) throws AssemblyException { |
111 | |
|
112 | |
try { |
113 | 0 | List<String> requirements = luService.getRelatedCluIdsByCluId(clu.getId(), ProgramAssemblerConstants.HAS_PROGRAM_REQUIREMENT); |
114 | 0 | if (requirements != null && requirements.size() > 0) { |
115 | 0 | program.setProgramRequirements(requirements); |
116 | |
} |
117 | |
} |
118 | 0 | catch (Exception e) |
119 | |
{ |
120 | 0 | throw new AssemblyException("Error assembling program requirements", e); |
121 | 0 | } |
122 | |
|
123 | 0 | return program; |
124 | |
} |
125 | |
|
126 | |
|
127 | |
public CluInfo disassembleRequirements(CluInfo clu, ProgramRequirementAssembly program, NodeOperation operation, BaseDTOAssemblyNode<?, ?> result, boolean stateChanged) throws AssemblyException { |
128 | |
try { |
129 | 0 | List<String> requirements = program.getProgramRequirements (); |
130 | |
|
131 | 0 | if (requirements != null && !requirements.isEmpty()) { |
132 | 0 | if (stateChanged){ |
133 | 0 | addUpdateRequirementStateNodes(requirements, clu.getState(), result); |
134 | |
} |
135 | |
|
136 | 0 | Map<String, String> currentRelations = null; |
137 | |
|
138 | 0 | if (!NodeOperation.CREATE.equals(operation)) { |
139 | 0 | currentRelations = getCluCluRelations(clu.getId(), ProgramAssemblerConstants.HAS_PROGRAM_REQUIREMENT); |
140 | |
} |
141 | |
|
142 | 0 | for (String requirementId : requirements){ |
143 | 0 | List<BaseDTOAssemblyNode<?, ?>> reqResults = addAllRelationNodes(clu.getId(), requirementId, ProgramAssemblerConstants.HAS_PROGRAM_REQUIREMENT, operation, currentRelations); |
144 | 0 | if (reqResults != null && reqResults.size()> 0) { |
145 | 0 | result.getChildNodes().addAll(reqResults); |
146 | |
} |
147 | 0 | } |
148 | |
|
149 | 0 | if(currentRelations != null && currentRelations.size() > 0){ |
150 | 0 | for (Map.Entry<String, String> entry : currentRelations.entrySet()) { |
151 | |
|
152 | |
|
153 | 0 | CluCluRelationInfo relationToDelete = new CluCluRelationInfo(); |
154 | 0 | relationToDelete.setId( entry.getValue() ); |
155 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
156 | |
null); |
157 | 0 | relationToDeleteNode.setNodeData(relationToDelete); |
158 | 0 | relationToDeleteNode.setOperation(NodeOperation.DELETE); |
159 | 0 | result.getChildNodes().add(relationToDeleteNode); |
160 | 0 | } |
161 | |
} |
162 | |
} |
163 | 0 | } catch (Exception e) { |
164 | 0 | throw new AssemblyException("Error while disassembling program requirements", e); |
165 | 0 | } |
166 | |
|
167 | 0 | return clu; |
168 | |
|
169 | |
} |
170 | |
|
171 | |
|
172 | |
|
173 | |
|
174 | |
|
175 | |
|
176 | |
|
177 | |
|
178 | |
|
179 | |
|
180 | |
private void addUpdateRequirementStateNodes(List<String> requirements, String state, BaseDTOAssemblyNode<?, ?> result) throws InvalidParameterException, MissingParameterException, OperationFailedException { |
181 | 0 | for (String requirementId:requirements){ |
182 | |
try { |
183 | 0 | CluInfo requirementClu = luService.getClu(requirementId); |
184 | 0 | requirementClu.setState(state); |
185 | 0 | BaseDTOAssemblyNode<Object, CluInfo> reqCluNode = new BaseDTOAssemblyNode<Object, CluInfo>(null); |
186 | 0 | reqCluNode.setNodeData(requirementClu); |
187 | 0 | reqCluNode.setOperation(NodeOperation.UPDATE); |
188 | 0 | result.getChildNodes().add(reqCluNode); |
189 | 0 | } catch (DoesNotExistException e){ |
190 | |
|
191 | 0 | } |
192 | |
} |
193 | 0 | } |
194 | |
|
195 | |
|
196 | |
|
197 | |
|
198 | |
|
199 | |
|
200 | |
|
201 | |
|
202 | |
|
203 | |
public ProgramIdentifierAssembly assembleIdentifiers(CluInfo clu, ProgramIdentifierAssembly program) throws AssemblyException { |
204 | |
|
205 | 0 | if (clu.getOfficialIdentifier() != null) { |
206 | 0 | if (clu.getOfficialIdentifier().getShortName() != null) { |
207 | 0 | program.setShortTitle(clu.getOfficialIdentifier().getShortName()); |
208 | |
} |
209 | 0 | if (clu.getOfficialIdentifier().getLongName() != null) { |
210 | 0 | program.setLongTitle(clu.getOfficialIdentifier().getLongName()); |
211 | |
} |
212 | 0 | if (clu.getOfficialIdentifier().getCode() != null) { |
213 | 0 | program.setCode(clu.getOfficialIdentifier().getCode()); |
214 | |
} |
215 | |
} |
216 | 0 | if (clu.getAlternateIdentifiers() != null) { |
217 | 0 | for (CluIdentifierInfo cluIdInfo : clu.getAlternateIdentifiers()) { |
218 | 0 | String idInfoType = cluIdInfo.getType(); |
219 | 0 | if (ProgramAssemblerConstants.TRANSCRIPT.equals(idInfoType)) { |
220 | 0 | program.setTranscriptTitle(cluIdInfo.getShortName()); |
221 | 0 | } else if (ProgramAssemblerConstants.DIPLOMA.equals(idInfoType)) { |
222 | 0 | program.setDiplomaTitle(cluIdInfo.getShortName()); |
223 | |
} |
224 | 0 | } |
225 | |
} |
226 | 0 | return program; |
227 | |
} |
228 | |
|
229 | |
|
230 | |
|
231 | |
|
232 | |
|
233 | |
|
234 | |
|
235 | |
|
236 | |
|
237 | |
|
238 | |
|
239 | |
public CluInfo disassembleIdentifiers(CluInfo clu, ProgramIdentifierAssembly program, NodeOperation operation) throws AssemblyException { |
240 | |
|
241 | 0 | CluIdentifierInfo official = null != clu.getOfficialIdentifier() ? clu.getOfficialIdentifier() : new CluIdentifierInfo(); |
242 | |
|
243 | 0 | official.setCode(program.getCode()); |
244 | 0 | official.setLongName(program.getLongTitle()); |
245 | 0 | official.setShortName(program.getShortTitle()); |
246 | 0 | String existingState = program.getState(); |
247 | 0 | official.setState((null != existingState && existingState.length() > 0) ? existingState : DtoConstants.STATE_ACTIVE); |
248 | |
|
249 | 0 | official.setType(ProgramAssemblerConstants.OFFICIAL); |
250 | |
|
251 | 0 | if (program instanceof CredentialProgramInfo) { |
252 | 0 | CredentialProgramInfo cred = (CredentialProgramInfo)program; |
253 | 0 | official.setLevel(cred.getProgramLevel()); |
254 | |
} |
255 | |
|
256 | 0 | clu.setOfficialIdentifier(official); |
257 | |
|
258 | |
|
259 | 0 | CluIdentifierInfo diplomaInfo = null; |
260 | 0 | CluIdentifierInfo transcriptInfo = null; |
261 | 0 | for(Iterator<CluIdentifierInfo> iter = clu.getAlternateIdentifiers().iterator();iter.hasNext();){ |
262 | 0 | CluIdentifierInfo cluIdentifier = iter.next(); |
263 | 0 | if (ProgramAssemblerConstants.DIPLOMA.equals(cluIdentifier.getType())) { |
264 | 0 | diplomaInfo = cluIdentifier; |
265 | 0 | } else if (ProgramAssemblerConstants.TRANSCRIPT.equals(cluIdentifier.getType())) { |
266 | 0 | transcriptInfo = cluIdentifier; |
267 | |
} |
268 | 0 | } |
269 | |
|
270 | 0 | if (program.getDiplomaTitle() != null) { |
271 | 0 | if (diplomaInfo == null) { |
272 | 0 | diplomaInfo = new CluIdentifierInfo(); |
273 | 0 | diplomaInfo.setState(DtoConstants.STATE_ACTIVE); |
274 | 0 | clu.getAlternateIdentifiers().add(diplomaInfo); |
275 | |
} |
276 | 0 | diplomaInfo.setCode(official.getCode()); |
277 | 0 | diplomaInfo.setShortName(program.getDiplomaTitle()); |
278 | 0 | diplomaInfo.setType(ProgramAssemblerConstants.DIPLOMA); |
279 | |
} |
280 | |
|
281 | 0 | if (program.getTranscriptTitle() != null) { |
282 | 0 | if (transcriptInfo == null) { |
283 | 0 | transcriptInfo = new CluIdentifierInfo(); |
284 | 0 | transcriptInfo.setState(DtoConstants.STATE_ACTIVE); |
285 | 0 | clu.getAlternateIdentifiers().add(transcriptInfo); |
286 | |
} |
287 | 0 | transcriptInfo.setCode(official.getCode()); |
288 | 0 | transcriptInfo.setShortName(program.getTranscriptTitle()); |
289 | 0 | transcriptInfo.setType(ProgramAssemblerConstants.TRANSCRIPT); |
290 | |
} |
291 | 0 | return clu; |
292 | |
} |
293 | |
|
294 | |
|
295 | |
|
296 | |
|
297 | |
|
298 | |
|
299 | |
|
300 | |
|
301 | |
|
302 | |
public ProgramCodeAssembly assembleLuCodes(CluInfo clu, ProgramCodeAssembly program) throws AssemblyException { |
303 | |
|
304 | 0 | if (clu.getLuCodes() != null) { |
305 | 0 | for (LuCodeInfo codeInfo : clu.getLuCodes()) { |
306 | 0 | if (ProgramAssemblerConstants.CIP_2000.equals(codeInfo.getType())) { |
307 | 0 | program.setCip2000Code(codeInfo.getValue()); |
308 | 0 | } else if (ProgramAssemblerConstants.CIP_2010.equals(codeInfo.getType())) { |
309 | 0 | program.setCip2010Code(codeInfo.getValue()); |
310 | 0 | } else if (ProgramAssemblerConstants.HEGIS.equals(codeInfo.getType())) { |
311 | 0 | program.setHegisCode(codeInfo.getValue()); |
312 | 0 | } else if (ProgramAssemblerConstants.UNIVERSITY_CLASSIFICATION.equals(codeInfo.getType())) { |
313 | 0 | program.setUniversityClassification(codeInfo.getValue()); |
314 | 0 | } else if (ProgramAssemblerConstants.SELECTIVE_ENROLLMENT.equals(codeInfo.getType())) { |
315 | 0 | program.setSelectiveEnrollmentCode(codeInfo.getValue()); |
316 | |
} |
317 | |
} |
318 | |
} |
319 | |
|
320 | 0 | return program; |
321 | |
} |
322 | |
|
323 | |
|
324 | |
|
325 | |
|
326 | |
|
327 | |
|
328 | |
|
329 | |
|
330 | |
|
331 | |
|
332 | |
public CluInfo disassembleLuCodes(CluInfo clu, ProgramCodeAssembly program, NodeOperation operation) throws AssemblyException { |
333 | |
|
334 | 0 | clu.setLuCodes(new ArrayList<LuCodeInfo>()); |
335 | |
|
336 | 0 | addLuCodeFromProgram(ProgramAssemblerConstants.CIP_2000, program.getCip2000Code(), clu.getLuCodes()); |
337 | 0 | addLuCodeFromProgram(ProgramAssemblerConstants.CIP_2010, program.getCip2010Code(), clu.getLuCodes()); |
338 | 0 | addLuCodeFromProgram(ProgramAssemblerConstants.HEGIS, program.getHegisCode(), clu.getLuCodes()); |
339 | 0 | addLuCodeFromProgram(ProgramAssemblerConstants.UNIVERSITY_CLASSIFICATION, program.getUniversityClassification(), clu.getLuCodes()); |
340 | 0 | addLuCodeFromProgram(ProgramAssemblerConstants.SELECTIVE_ENROLLMENT, program.getSelectiveEnrollmentCode(), clu.getLuCodes()); |
341 | |
|
342 | 0 | return clu; |
343 | |
|
344 | |
} |
345 | |
|
346 | |
|
347 | |
|
348 | |
|
349 | |
|
350 | |
|
351 | |
|
352 | |
|
353 | |
|
354 | |
public ProgramBasicOrgAssembly assembleBasicAdminOrgs(CluInfo clu, ProgramBasicOrgAssembly program) throws AssemblyException { |
355 | |
|
356 | 0 | if (clu.getAdminOrgs() != null) { |
357 | 0 | clearProgramAdminOrgs(program); |
358 | 0 | for (AdminOrgInfo cluOrg : clu.getAdminOrgs()) { |
359 | 0 | if (cluOrg.getType().equals(ProgramAssemblerConstants.CURRICULUM_OVERSIGHT_DIVISION)) { |
360 | 0 | program.getDivisionsContentOwner().add(cluOrg.getOrgId()); |
361 | |
} |
362 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.STUDENT_OVERSIGHT_DIVISION)) { |
363 | 0 | program.getDivisionsStudentOversight().add(cluOrg.getOrgId()) ; |
364 | |
} |
365 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.CURRICULUM_OVERSIGHT_UNIT)) { |
366 | 0 | program.getUnitsContentOwner().add(cluOrg.getOrgId()) ; |
367 | |
} |
368 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.STUDENT_OVERSIGHT_UNIT)) { |
369 | 0 | program.getUnitsStudentOversight().add(cluOrg.getOrgId()) ; |
370 | |
} |
371 | |
} |
372 | |
} |
373 | 0 | return program; |
374 | |
} |
375 | |
|
376 | |
public ProgramFullOrgAssembly assembleFullOrgs(CluInfo clu, ProgramFullOrgAssembly program) throws AssemblyException { |
377 | |
|
378 | 0 | clearFullAdminOrgs(program); |
379 | 0 | for (AdminOrgInfo cluOrg : clu.getAdminOrgs()) { |
380 | 0 | if (cluOrg.getType().equals(ProgramAssemblerConstants.DEPLOYMENT_DIVISION)) { |
381 | 0 | program.getDivisionsDeployment().add(cluOrg.getOrgId()) ; |
382 | |
} |
383 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.FINANCIAL_RESOURCES_DIVISION)) { |
384 | 0 | program.getDivisionsFinancialResources().add(cluOrg.getOrgId()) ; |
385 | |
} |
386 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.FINANCIAL_CONTROL_DIVISION)) { |
387 | 0 | program.getDivisionsFinancialControl().add(cluOrg.getOrgId()) ; |
388 | |
} |
389 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.DEPLOYMENT_UNIT)) { |
390 | 0 | program.getUnitsDeployment().add(cluOrg.getOrgId()) ; |
391 | |
} |
392 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.FINANCIAL_RESOURCES_UNIT)) { |
393 | 0 | program.getUnitsFinancialResources().add(cluOrg.getOrgId()) ; |
394 | |
} |
395 | 0 | else if (cluOrg.getType().equals(ProgramAssemblerConstants.FINANCIAL_CONTROL_UNIT)) { |
396 | 0 | program.getUnitsFinancialControl().add(cluOrg.getOrgId()) ; |
397 | |
} |
398 | |
} |
399 | 0 | return program; |
400 | |
} |
401 | |
|
402 | |
private void clearProgramAdminOrgs(ProgramBasicOrgAssembly program) { |
403 | 0 | program.setDivisionsContentOwner(new ArrayList<String>()); |
404 | 0 | program.setDivisionsStudentOversight(new ArrayList<String>()); |
405 | 0 | program.setUnitsContentOwner(new ArrayList<String>()); |
406 | 0 | program.setUnitsStudentOversight(new ArrayList<String>()); |
407 | 0 | } |
408 | |
|
409 | |
private void clearFullAdminOrgs(ProgramFullOrgAssembly program) { |
410 | 0 | program.setDivisionsDeployment(new ArrayList<String>()); |
411 | 0 | program.setDivisionsFinancialResources(new ArrayList<String>()); |
412 | 0 | program.setDivisionsFinancialControl(new ArrayList<String>()); |
413 | 0 | program.setUnitsDeployment(new ArrayList<String>()); |
414 | 0 | program.setUnitsFinancialResources(new ArrayList<String>()); |
415 | 0 | program.setUnitsFinancialControl(new ArrayList<String>()); |
416 | 0 | } |
417 | |
|
418 | |
|
419 | |
|
420 | |
|
421 | |
|
422 | |
|
423 | |
|
424 | |
|
425 | |
public CluInfo disassembleAdminOrgs(CluInfo clu, ProgramBasicOrgAssembly program, NodeOperation operation){ |
426 | |
|
427 | |
|
428 | 0 | clu.setAdminOrgs(new ArrayList<AdminOrgInfo>()); |
429 | |
|
430 | 0 | newBuildAdminOrgs(clu, program.getDivisionsContentOwner(), ProgramAssemblerConstants.CURRICULUM_OVERSIGHT_DIVISION); |
431 | 0 | newBuildAdminOrgs(clu, program.getDivisionsStudentOversight(), ProgramAssemblerConstants.STUDENT_OVERSIGHT_DIVISION ); |
432 | 0 | newBuildAdminOrgs(clu, program.getUnitsContentOwner(), ProgramAssemblerConstants.CURRICULUM_OVERSIGHT_UNIT); |
433 | 0 | newBuildAdminOrgs(clu, program.getUnitsStudentOversight(), ProgramAssemblerConstants.STUDENT_OVERSIGHT_UNIT ); |
434 | 0 | if (program instanceof CredentialProgramInfo) { |
435 | 0 | List<String> institutionOrgs = new ArrayList<String>(); |
436 | 0 | institutionOrgs.add(((CredentialProgramInfo)program).getInstitution().getOrgId()); |
437 | 0 | newBuildAdminOrgs(clu, institutionOrgs , ProgramAssemblerConstants.INSTITUTION) ; |
438 | |
} |
439 | 0 | if (program instanceof ProgramFullOrgAssembly) { |
440 | 0 | ProgramFullOrgAssembly fullOrg = (ProgramFullOrgAssembly) program; |
441 | 0 | newBuildAdminOrgs(clu, fullOrg.getDivisionsDeployment(), ProgramAssemblerConstants.DEPLOYMENT_DIVISION); |
442 | 0 | newBuildAdminOrgs(clu, fullOrg.getDivisionsFinancialResources(), ProgramAssemblerConstants.FINANCIAL_RESOURCES_DIVISION); |
443 | 0 | newBuildAdminOrgs(clu, fullOrg.getDivisionsFinancialControl(), ProgramAssemblerConstants.FINANCIAL_CONTROL_DIVISION); |
444 | 0 | newBuildAdminOrgs(clu, fullOrg.getUnitsDeployment(), ProgramAssemblerConstants.DEPLOYMENT_UNIT); |
445 | 0 | newBuildAdminOrgs(clu, fullOrg.getUnitsFinancialResources(), ProgramAssemblerConstants.FINANCIAL_RESOURCES_UNIT); |
446 | 0 | newBuildAdminOrgs(clu, fullOrg.getUnitsFinancialControl(), ProgramAssemblerConstants.FINANCIAL_CONTROL_UNIT); |
447 | |
|
448 | |
} |
449 | 0 | return clu; |
450 | |
|
451 | |
} |
452 | |
|
453 | |
private CluInfo newBuildAdminOrgs(CluInfo clu, List<String> orgIds, String type) { |
454 | |
|
455 | 0 | if (null != orgIds) { |
456 | 0 | for (String orgId : orgIds) { |
457 | 0 | AdminOrgInfo subjectOrg = new AdminOrgInfo(); |
458 | 0 | subjectOrg.setType(type); |
459 | 0 | subjectOrg.setOrgId(orgId); |
460 | 0 | clu.getAdminOrgs().add(subjectOrg); |
461 | 0 | } |
462 | |
} |
463 | 0 | return clu; |
464 | |
} |
465 | |
|
466 | |
|
467 | |
|
468 | |
|
469 | |
|
470 | |
|
471 | |
|
472 | |
|
473 | |
|
474 | |
public List<String> assembleResultOptions(String cluId) throws AssemblyException { |
475 | 0 | List<String> resultOptions = null; |
476 | |
try{ |
477 | 0 | List<CluResultInfo> cluResults = luService.getCluResultByClu(cluId); |
478 | |
|
479 | 0 | List<String> resultTypes = new ArrayList<String>(); |
480 | 0 | resultTypes.add(ProgramAssemblerConstants.DEGREE_RESULTS); |
481 | 0 | resultTypes.add(ProgramAssemblerConstants.CERTIFICATE_RESULTS); |
482 | |
|
483 | 0 | resultOptions = cluAssemblerUtils.assembleCluResults(resultTypes, cluResults); |
484 | |
|
485 | 0 | } catch (DoesNotExistException e){ |
486 | 0 | } catch (Exception e) { |
487 | 0 | throw new AssemblyException("Error getting major results", e); |
488 | 0 | } |
489 | 0 | return resultOptions; |
490 | |
} |
491 | |
|
492 | |
|
493 | |
|
494 | |
|
495 | |
|
496 | |
|
497 | |
|
498 | |
|
499 | |
|
500 | |
public ProgramAtpAssembly assembleAtps(CluInfo clu, ProgramAtpAssembly program) throws AssemblyException { |
501 | |
|
502 | 0 | if (clu.getExpectedFirstAtp() != null) { |
503 | 0 | program.setStartTerm(clu.getExpectedFirstAtp()); |
504 | |
} |
505 | 0 | if (clu.getLastAtp() != null) { |
506 | 0 | program.setEndTerm(clu.getLastAtp()); |
507 | |
} |
508 | 0 | if (clu.getLastAdmitAtp() != null) { |
509 | 0 | program.setEndProgramEntryTerm(clu.getLastAdmitAtp()); |
510 | |
} |
511 | 0 | return program; |
512 | |
} |
513 | |
|
514 | |
|
515 | |
|
516 | |
|
517 | |
|
518 | |
|
519 | |
|
520 | |
|
521 | |
|
522 | |
|
523 | |
public CluInfo disassembleAtps(CluInfo clu, ProgramAtpAssembly program, NodeOperation operation) throws AssemblyException { |
524 | |
|
525 | 0 | clu.setExpectedFirstAtp(program.getStartTerm()); |
526 | 0 | clu.setLastAtp(program.getEndTerm()); |
527 | 0 | clu.setLastAdmitAtp(program.getEndProgramEntryTerm()); |
528 | |
|
529 | 0 | return clu; |
530 | |
|
531 | |
} |
532 | |
|
533 | |
|
534 | |
|
535 | |
|
536 | |
|
537 | |
|
538 | |
|
539 | |
|
540 | |
|
541 | |
public ProgramPublicationAssembly assemblePublications(CluInfo clu, ProgramPublicationAssembly program) throws AssemblyException { |
542 | |
|
543 | |
|
544 | 0 | if (clu.getReferenceURL() != null) { |
545 | 0 | program.setReferenceURL(clu.getReferenceURL()); |
546 | |
} |
547 | |
|
548 | |
try { |
549 | 0 | List<CluPublicationInfo> cluPublications = luService.getCluPublicationsByCluId(clu.getId()); |
550 | |
|
551 | 0 | List<String> targets = new ArrayList<String>(); |
552 | |
|
553 | 0 | for (CluPublicationInfo cluPublication : cluPublications) { |
554 | 0 | if (cluPublication.getType().equals(ProgramAssemblerConstants.CATALOG)) { |
555 | 0 | assembleCatalogDescr(program, cluPublication); |
556 | |
} |
557 | |
else { |
558 | 0 | targets.add(cluPublication.getType()); |
559 | |
} |
560 | |
} |
561 | |
|
562 | 0 | if (targets != null && !targets.isEmpty()) { |
563 | 0 | program.setCatalogPublicationTargets(targets); |
564 | |
} |
565 | 0 | } catch (DoesNotExistException e) { |
566 | 0 | } catch (InvalidParameterException e) { |
567 | 0 | } catch (MissingParameterException e) { |
568 | 0 | } catch (OperationFailedException e) { |
569 | 0 | throw new AssemblyException("Error getting publication targets", e); |
570 | 0 | } |
571 | 0 | return program; |
572 | |
} |
573 | |
|
574 | |
private void assembleCatalogDescr(ProgramPublicationAssembly program, CluPublicationInfo cluPublication) { |
575 | |
|
576 | 0 | for (FieldInfo fieldInfo : cluPublication.getVariants()) { |
577 | 0 | if (fieldInfo.getId().equals(ProgramAssemblerConstants.CATALOG_DESCR)) { |
578 | 0 | RichTextInfo desc = new RichTextInfo(); |
579 | 0 | desc.setPlain(fieldInfo.getValue()); |
580 | 0 | desc.setFormatted(fieldInfo.getValue()); |
581 | 0 | program.setCatalogDescr(desc); |
582 | 0 | break; |
583 | |
} |
584 | |
} |
585 | 0 | } |
586 | |
|
587 | |
private List<BaseDTOAssemblyNode<?, ?>> disassembleCatalogDescr(ProgramPublicationAssembly program, NodeOperation operation) throws AssemblyException { |
588 | |
|
589 | 0 | List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>(); |
590 | |
|
591 | 0 | CluPublicationInfo currentPubInfo = null; |
592 | |
|
593 | |
try { |
594 | |
|
595 | |
|
596 | 0 | if (!NodeOperation.CREATE.equals(operation)) { |
597 | 0 | List<CluPublicationInfo> pubs = luService.getCluPublicationsByCluId(program.getId()); |
598 | 0 | for (CluPublicationInfo pubInfo : pubs) { |
599 | 0 | if (pubInfo.getType().equals(ProgramAssemblerConstants.CATALOG)) { |
600 | 0 | currentPubInfo = pubInfo; |
601 | |
} |
602 | |
} |
603 | |
} |
604 | |
|
605 | 0 | if (program.getCatalogDescr() != null) { |
606 | |
|
607 | 0 | if (NodeOperation.CREATE == operation |
608 | |
|| (NodeOperation.UPDATE == operation && currentPubInfo == null )) { |
609 | |
|
610 | 0 | CluPublicationInfo pubInfo = buildCluPublicationInfo(program.getId(), ProgramAssemblerConstants.CATALOG); |
611 | |
|
612 | 0 | FieldInfo variant = new FieldInfo(); |
613 | 0 | variant.setId(ProgramAssemblerConstants.CATALOG_DESCR); |
614 | 0 | variant.setValue(program.getCatalogDescr() .getPlain()); |
615 | 0 | pubInfo.getVariants().add(variant); |
616 | |
|
617 | 0 | BaseDTOAssemblyNode<Object, CluPublicationInfo> pubNode = new BaseDTOAssemblyNode<Object, CluPublicationInfo>( |
618 | |
null); |
619 | 0 | pubNode.setNodeData(pubInfo); |
620 | 0 | pubNode.setOperation(NodeOperation.CREATE); |
621 | |
|
622 | 0 | results.add(pubNode); |
623 | 0 | } else if (NodeOperation.UPDATE == operation |
624 | |
&& currentPubInfo != null) { |
625 | |
|
626 | 0 | CluPublicationInfo pubInfo = currentPubInfo; |
627 | |
|
628 | 0 | for (FieldInfo fieldInfo : pubInfo.getVariants()) { |
629 | 0 | if (fieldInfo.getId().equals(ProgramAssemblerConstants.CATALOG_DESCR)) { |
630 | 0 | fieldInfo.setValue(program.getCatalogDescr() .getPlain()); |
631 | 0 | break; |
632 | |
} |
633 | |
} |
634 | |
|
635 | 0 | BaseDTOAssemblyNode<Object, CluPublicationInfo> pubNode = new BaseDTOAssemblyNode<Object, CluPublicationInfo>( |
636 | |
null); |
637 | 0 | pubNode.setNodeData(pubInfo); |
638 | 0 | pubNode.setOperation(NodeOperation.UPDATE); |
639 | |
|
640 | 0 | results.add(pubNode); |
641 | |
|
642 | 0 | } |
643 | 0 | else if (NodeOperation.DELETE == operation ) { |
644 | |
|
645 | 0 | deletePublicationInfo(results, currentPubInfo); |
646 | |
} |
647 | |
} |
648 | 0 | } catch (Exception e) { |
649 | 0 | throw new AssemblyException(e); |
650 | 0 | } |
651 | 0 | return results; |
652 | |
} |
653 | |
|
654 | |
private void deletePublicationInfo(List<BaseDTOAssemblyNode<?, ?>> results, CluPublicationInfo currentPubInfo) { |
655 | 0 | CluPublicationInfo descrToDelete = new CluPublicationInfo(); |
656 | 0 | descrToDelete.setId(currentPubInfo.getId()); |
657 | 0 | BaseDTOAssemblyNode<Object, CluPublicationInfo> pubToDeleteNode = new BaseDTOAssemblyNode<Object, CluPublicationInfo>( |
658 | |
null); |
659 | 0 | pubToDeleteNode.setNodeData(descrToDelete); |
660 | 0 | pubToDeleteNode.setOperation(NodeOperation.DELETE); |
661 | 0 | results.add(pubToDeleteNode); |
662 | 0 | } |
663 | |
|
664 | |
|
665 | |
|
666 | |
|
667 | |
|
668 | |
|
669 | |
|
670 | |
|
671 | |
|
672 | |
|
673 | |
public CluInfo disassemblePublications(CluInfo clu, ProgramPublicationAssembly program, NodeOperation operation, BaseDTOAssemblyNode<?, ?> result) throws AssemblyException { |
674 | |
|
675 | 0 | clu.setReferenceURL(program.getReferenceURL()); |
676 | |
|
677 | 0 | List<BaseDTOAssemblyNode<?, ?>> targetResults = disassemblePublicationTargets(program, operation); |
678 | 0 | if (targetResults != null && targetResults.size()> 0) { |
679 | 0 | result.getChildNodes().addAll(targetResults); |
680 | |
} |
681 | |
|
682 | 0 | List<BaseDTOAssemblyNode<?, ?>> descrResults = disassembleCatalogDescr(program, operation) ; |
683 | 0 | if (descrResults != null && descrResults.size()> 0) { |
684 | 0 | result.getChildNodes().addAll(descrResults); |
685 | |
} |
686 | |
|
687 | 0 | return clu; |
688 | |
|
689 | |
} |
690 | |
|
691 | |
|
692 | |
|
693 | |
|
694 | |
|
695 | |
|
696 | |
|
697 | |
|
698 | |
|
699 | |
|
700 | |
public List<BaseDTOAssemblyNode<?,?>> disassembleCredentialProgram(ProgramCredentialAssembly program, NodeOperation operation, String relationType) throws AssemblyException { |
701 | |
|
702 | 0 | List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>(); |
703 | |
|
704 | |
try { |
705 | 0 | CluInfo credentialClu = luService.getClu(program.getCredentialProgramId()); |
706 | 0 | } catch (DoesNotExistException e) { |
707 | 0 | } catch (Exception e) { |
708 | 0 | throw new AssemblyException("Credential Clu does not exist for " + program.getCredentialProgramId()); |
709 | 0 | } |
710 | |
|
711 | 0 | Map<String, String> currentRelations = new HashMap<String, String>(); |
712 | |
|
713 | 0 | if (!NodeOperation.CREATE.equals(operation)) { |
714 | |
try { |
715 | 0 | List<CluCluRelationInfo> cluRelations = luService.getCluCluRelationsByClu(program.getId()); |
716 | 0 | for (CluCluRelationInfo cluRelation : cluRelations) { |
717 | 0 | if (relationType.equals(cluRelation.getType()) ) { |
718 | 0 | currentRelations.put(cluRelation.getRelatedCluId(), cluRelation.getId()); |
719 | |
} |
720 | |
} |
721 | 0 | } catch (DoesNotExistException e) { |
722 | 0 | } catch (InvalidParameterException e) { |
723 | 0 | } catch (MissingParameterException e) { |
724 | 0 | } catch (OperationFailedException e) { |
725 | 0 | throw new AssemblyException("Error getting related clus", e); |
726 | 0 | } |
727 | |
} |
728 | |
|
729 | |
|
730 | |
|
731 | 0 | if (NodeOperation.CREATE == operation |
732 | |
|| (NodeOperation.UPDATE == operation && !currentRelations.containsKey(program.getCredentialProgramId()) )) { |
733 | |
|
734 | 0 | CluCluRelationInfo relation = new CluCluRelationInfo(); |
735 | 0 | relation.setCluId(program.getCredentialProgramId()); |
736 | 0 | relation.setRelatedCluId(program.getId()); |
737 | 0 | relation.setType(relationType); |
738 | 0 | relation.setState(DtoConstants.STATE_ACTIVE); |
739 | |
|
740 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
741 | |
null); |
742 | 0 | relationNode.setNodeData(relation); |
743 | 0 | relationNode.setOperation(NodeOperation.CREATE); |
744 | |
|
745 | 0 | results.add(relationNode); |
746 | 0 | } else if (NodeOperation.UPDATE == operation |
747 | |
&& currentRelations.containsKey(program.getCredentialProgramId())) { |
748 | |
|
749 | |
|
750 | |
|
751 | |
|
752 | 0 | currentRelations.remove(program.getCredentialProgramId()); |
753 | 0 | } else if (NodeOperation.DELETE == operation |
754 | |
&& currentRelations.containsKey(program.getId())) { |
755 | |
|
756 | 0 | CluCluRelationInfo relationToDelete = new CluCluRelationInfo(); |
757 | 0 | relationToDelete.setId( currentRelations.get(program.getId()) ); |
758 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
759 | |
null); |
760 | 0 | relationToDeleteNode.setNodeData(relationToDelete); |
761 | 0 | relationToDeleteNode.setOperation(NodeOperation.DELETE); |
762 | 0 | results.add(relationToDeleteNode); |
763 | |
|
764 | |
|
765 | |
|
766 | 0 | currentRelations.remove(program.getId()); |
767 | |
} |
768 | |
|
769 | 0 | if(currentRelations != null && currentRelations.size() > 0){ |
770 | 0 | for (Map.Entry<String, String> entry : currentRelations.entrySet()) { |
771 | |
|
772 | |
|
773 | 0 | CluCluRelationInfo relationToDelete = new CluCluRelationInfo(); |
774 | 0 | relationToDelete.setId( entry.getValue() ); |
775 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
776 | |
null); |
777 | 0 | relationToDeleteNode.setNodeData(relationToDelete); |
778 | 0 | relationToDeleteNode.setOperation(NodeOperation.DELETE); |
779 | 0 | results.add(relationToDeleteNode); |
780 | 0 | } |
781 | |
} |
782 | 0 | return results; |
783 | |
} |
784 | |
|
785 | |
public List<BaseDTOAssemblyNode<?, ?>> addRelationNodes(String cluId, String relatedCluId, String relationType, NodeOperation operation)throws AssemblyException{ |
786 | 0 | Map<String, String> currentRelations = null; |
787 | 0 | List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>(); |
788 | |
|
789 | 0 | if (!NodeOperation.CREATE.equals(operation)) { |
790 | 0 | currentRelations = getCluCluRelations(cluId, relationType); |
791 | |
} |
792 | |
|
793 | |
|
794 | 0 | if (NodeOperation.CREATE == operation |
795 | |
|| (NodeOperation.UPDATE == operation && !currentRelations.containsKey(relatedCluId) )) { |
796 | |
|
797 | 0 | addCreateRelationNode(cluId, relatedCluId, relationType, results); |
798 | 0 | } else if (NodeOperation.UPDATE == operation |
799 | |
&& currentRelations.containsKey(relatedCluId)) { |
800 | |
|
801 | |
|
802 | |
|
803 | |
|
804 | 0 | currentRelations.remove(relatedCluId); |
805 | 0 | } else if (NodeOperation.DELETE == operation |
806 | |
&& currentRelations.containsKey(relatedCluId)) { |
807 | |
|
808 | 0 | addDeleteRelationNodes(currentRelations, results); |
809 | |
|
810 | |
|
811 | |
|
812 | 0 | currentRelations.remove(relatedCluId); |
813 | |
} |
814 | |
|
815 | 0 | if(currentRelations != null && currentRelations.size() > 0){ |
816 | 0 | for (Map.Entry<String, String> entry : currentRelations.entrySet()) { |
817 | |
|
818 | |
|
819 | 0 | CluCluRelationInfo relationToDelete = new CluCluRelationInfo(); |
820 | 0 | relationToDelete.setId( entry.getValue() ); |
821 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
822 | |
null); |
823 | 0 | relationToDeleteNode.setNodeData(relationToDelete); |
824 | 0 | relationToDeleteNode.setOperation(NodeOperation.DELETE); |
825 | 0 | results.add(relationToDeleteNode); |
826 | 0 | } |
827 | |
} |
828 | 0 | return results; |
829 | |
} |
830 | |
public List<BaseDTOAssemblyNode<?, ?>> addAllRelationNodes(String cluId, String relatedCluId, String relationType, NodeOperation operation, Map<String, String> currentRelations)throws AssemblyException{ |
831 | 0 | List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>(); |
832 | |
|
833 | 0 | if (NodeOperation.CREATE == operation |
834 | |
|| (NodeOperation.UPDATE == operation && !currentRelations.containsKey(relatedCluId) )) { |
835 | |
|
836 | 0 | addCreateRelationNode(cluId, relatedCluId, relationType, results); |
837 | 0 | } else if (NodeOperation.UPDATE == operation |
838 | |
&& currentRelations.containsKey(relatedCluId)) { |
839 | |
|
840 | |
|
841 | |
|
842 | |
|
843 | 0 | currentRelations.remove(relatedCluId); |
844 | 0 | } else if (NodeOperation.DELETE == operation |
845 | |
&& currentRelations.containsKey(relatedCluId)) { |
846 | |
|
847 | 0 | addDeleteRelationNodes(currentRelations, results); |
848 | |
|
849 | |
|
850 | |
|
851 | 0 | currentRelations.remove(relatedCluId); |
852 | |
} |
853 | |
|
854 | 0 | return results; |
855 | |
} |
856 | |
public Map<String, String> getCluCluRelations(String cluId, String relationType) throws AssemblyException{ |
857 | 0 | Map<String, String> currentRelations = new HashMap<String, String>(); |
858 | |
|
859 | |
try { |
860 | 0 | List<CluCluRelationInfo> cluRelations = luService.getCluCluRelationsByClu(cluId); |
861 | |
|
862 | 0 | for (CluCluRelationInfo cluRelation : cluRelations) { |
863 | 0 | if (relationType.equals(cluRelation.getType())) { |
864 | 0 | currentRelations.put(cluRelation.getRelatedCluId(), cluRelation.getId()); |
865 | |
} |
866 | |
} |
867 | 0 | } catch (DoesNotExistException e) { |
868 | 0 | } catch (InvalidParameterException e) { |
869 | 0 | } catch (MissingParameterException e) { |
870 | 0 | } catch (OperationFailedException e) { |
871 | 0 | throw new AssemblyException("Error getting related clus", e); |
872 | 0 | } |
873 | |
|
874 | 0 | return currentRelations; |
875 | |
} |
876 | |
|
877 | |
public Map<String, CluCluRelationInfo> getCluCluActiveRelations(String cluId, String relationType) throws AssemblyException{ |
878 | 0 | Map<String, CluCluRelationInfo> currentRelations = new HashMap<String, CluCluRelationInfo>(); |
879 | |
|
880 | |
try { |
881 | 0 | List<CluCluRelationInfo> cluRelations = luService.getCluCluRelationsByClu(cluId); |
882 | |
|
883 | 0 | for (CluCluRelationInfo cluRelation : cluRelations) { |
884 | 0 | if (relationType.equals(cluRelation.getType()) && (!cluRelation.getState().isEmpty() && cluRelation.getState().equalsIgnoreCase(DtoConstants.STATE_ACTIVE))) { |
885 | 0 | currentRelations.put(cluRelation.getRelatedCluId(), cluRelation); |
886 | |
} |
887 | |
} |
888 | 0 | } catch (DoesNotExistException e) { |
889 | 0 | } catch (InvalidParameterException e) { |
890 | 0 | } catch (MissingParameterException e) { |
891 | 0 | } catch (OperationFailedException e) { |
892 | 0 | throw new AssemblyException("Error getting related clus", e); |
893 | 0 | } |
894 | |
|
895 | 0 | return currentRelations; |
896 | |
} |
897 | |
|
898 | |
public void addCreateRelationNode(String cluId, String relatedCluId, String relationType, List<BaseDTOAssemblyNode<?, ?>> results){ |
899 | 0 | CluCluRelationInfo relation = new CluCluRelationInfo(); |
900 | 0 | relation.setCluId(cluId); |
901 | 0 | relation.setRelatedCluId(relatedCluId); |
902 | 0 | relation.setType(relationType); |
903 | 0 | relation.setState(DtoConstants.STATE_ACTIVE); |
904 | |
|
905 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
906 | |
null); |
907 | 0 | relationNode.setNodeData(relation); |
908 | 0 | relationNode.setOperation(NodeOperation.CREATE); |
909 | |
|
910 | 0 | results.add(relationNode); |
911 | |
|
912 | 0 | } |
913 | |
|
914 | |
public void addDeleteRelationNodes(Map<String, String> currentRelations, List<BaseDTOAssemblyNode<?, ?>> results){ |
915 | 0 | for (Map.Entry<String, String> entry : currentRelations.entrySet()) { |
916 | |
|
917 | |
|
918 | 0 | CluCluRelationInfo relationToDelete = new CluCluRelationInfo(); |
919 | 0 | relationToDelete.setId( entry.getValue() ); |
920 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> relationToDeleteNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
921 | |
null); |
922 | 0 | relationToDeleteNode.setNodeData(relationToDelete); |
923 | 0 | relationToDeleteNode.setOperation(NodeOperation.DELETE); |
924 | 0 | results.add(relationToDeleteNode); |
925 | 0 | } |
926 | 0 | } |
927 | |
|
928 | |
public void addInactiveRelationNodes(Map<String, CluCluRelationInfo> currentRelations, List<BaseDTOAssemblyNode<?, ?>> results){ |
929 | 0 | for (Map.Entry<String, CluCluRelationInfo> entry : currentRelations.entrySet()) { |
930 | 0 | CluCluRelationInfo inactiveRelation = new CluCluRelationInfo(); |
931 | 0 | inactiveRelation = entry.getValue(); |
932 | 0 | inactiveRelation.setState(DtoConstants.STATE_INACTIVE); |
933 | 0 | BaseDTOAssemblyNode<Object, CluCluRelationInfo> inactiveRelationNode = new BaseDTOAssemblyNode<Object, CluCluRelationInfo>( |
934 | |
null); |
935 | 0 | inactiveRelationNode.setNodeData(inactiveRelation); |
936 | 0 | inactiveRelationNode.setOperation(NodeOperation.UPDATE); |
937 | 0 | results.add(inactiveRelationNode); |
938 | 0 | } |
939 | 0 | } |
940 | |
|
941 | |
private void addLuCodeFromProgram(String type, String value, List<LuCodeInfo> list) throws AssemblyException { |
942 | |
|
943 | 0 | if (value != null && !value.isEmpty()) { |
944 | 0 | LuCodeInfo code = new LuCodeInfo(); |
945 | 0 | code.setType(type); |
946 | 0 | code.setValue(value); |
947 | 0 | code.setAttributes(new HashMap<String, String>()); |
948 | 0 | list.add(code); |
949 | |
} |
950 | 0 | } |
951 | |
|
952 | |
|
953 | |
|
954 | |
|
955 | |
|
956 | |
|
957 | |
|
958 | |
|
959 | |
|
960 | |
|
961 | |
private List<BaseDTOAssemblyNode<?, ?>> disassemblePublicationTargets(ProgramPublicationAssembly program, NodeOperation operation) throws AssemblyException { |
962 | |
|
963 | 0 | List<BaseDTOAssemblyNode<?, ?>> results = new ArrayList<BaseDTOAssemblyNode<?, ?>>(); |
964 | |
|
965 | 0 | Map<String, CluPublicationInfo> currentPubs = new HashMap<String, CluPublicationInfo>(); |
966 | 0 | if (!NodeOperation.CREATE.equals(operation)) { |
967 | |
|
968 | |
|
969 | |
try { |
970 | 0 | List<CluPublicationInfo> cluPubs = luService.getCluPublicationsByCluId(program.getId()); |
971 | 0 | for(CluPublicationInfo cluPub : cluPubs){ |
972 | 0 | if (!cluPub.getType().equals(ProgramAssemblerConstants.CATALOG)) { |
973 | 0 | currentPubs.put(cluPub.getType(), cluPub); |
974 | |
} |
975 | |
} |
976 | 0 | } catch (DoesNotExistException e) { |
977 | 0 | } catch (Exception e) { |
978 | 0 | throw new AssemblyException("Error finding publications"); |
979 | 0 | } |
980 | |
} |
981 | |
|
982 | 0 | if (program.getCatalogPublicationTargets() != null && !program.getCatalogPublicationTargets().isEmpty()) { |
983 | 0 | for (String publicationType : program.getCatalogPublicationTargets()) { |
984 | |
|
985 | 0 | if (NodeOperation.CREATE == operation |
986 | |
|| (NodeOperation.UPDATE == operation && !currentPubs.containsKey(publicationType) )) { |
987 | |
|
988 | 0 | CluPublicationInfo pubInfo = buildCluPublicationInfo(program.getId(), publicationType); |
989 | |
|
990 | 0 | BaseDTOAssemblyNode<Object, CluPublicationInfo> pubNode = new BaseDTOAssemblyNode<Object, CluPublicationInfo>( |
991 | |
null); |
992 | 0 | pubNode.setNodeData(pubInfo); |
993 | 0 | pubNode.setOperation(NodeOperation.CREATE); |
994 | |
|
995 | 0 | results.add(pubNode); |
996 | 0 | } else if (NodeOperation.UPDATE == operation |
997 | |
&& currentPubs.containsKey(publicationType)) { |
998 | |
|
999 | |
|
1000 | 0 | currentPubs.remove(publicationType); |
1001 | 0 | } else if (NodeOperation.DELETE == operation |
1002 | |
&& currentPubs.containsKey(publicationType)) { |
1003 | |
|
1004 | 0 | CluPublicationInfo pubToDelete = new CluPublicationInfo(); |
1005 | 0 | pubToDelete.setId(publicationType); |
1006 | 0 | BaseDTOAssemblyNode<Object, CluPublicationInfo> pubToDeleteNode = new BaseDTOAssemblyNode<Object, CluPublicationInfo>( |
1007 | |
null); |
1008 | 0 | pubToDeleteNode.setNodeData(pubToDelete); |
1009 | 0 | pubToDeleteNode.setOperation(NodeOperation.DELETE); |
1010 | 0 | results.add(pubToDeleteNode); |
1011 | |
|
1012 | 0 | currentPubs.remove(publicationType); |
1013 | 0 | } |
1014 | |
} |
1015 | |
} |
1016 | |
|
1017 | |
|
1018 | 0 | for (Map.Entry<String, CluPublicationInfo> entry : currentPubs.entrySet()) { |
1019 | |
|
1020 | |
|
1021 | 0 | deletePublicationInfo(results, entry.getValue()); |
1022 | |
} |
1023 | |
|
1024 | 0 | return results; |
1025 | |
} |
1026 | |
|
1027 | |
private CluPublicationInfo buildCluPublicationInfo(String programId, String publicationType) throws AssemblyException { |
1028 | |
|
1029 | 0 | CluPublicationInfo pubInfo = new CluPublicationInfo(); |
1030 | 0 | pubInfo.setType(publicationType); |
1031 | 0 | pubInfo.setCluId(programId); |
1032 | 0 | pubInfo.setState(DtoConstants.STATE_ACTIVE); |
1033 | |
|
1034 | 0 | return pubInfo; |
1035 | |
} |
1036 | |
|
1037 | |
|
1038 | |
public void setLuService(LuService luService) { |
1039 | 0 | this.luService = luService; |
1040 | 0 | } |
1041 | |
|
1042 | |
public void setCluAssemblerUtils(CluAssemblerUtils cluAssemblerUtils) { |
1043 | 0 | this.cluAssemblerUtils = cluAssemblerUtils; |
1044 | 0 | } |
1045 | |
|
1046 | |
public String getCredentialProgramID(String cluId) throws AssemblyException { |
1047 | |
|
1048 | 0 | List<String> credentialProgramIDs = null; |
1049 | |
try { |
1050 | 0 | credentialProgramIDs = luService.getCluIdsByRelation(cluId, ProgramAssemblerConstants.HAS_MAJOR_PROGRAM); |
1051 | 0 | } catch (Exception e) { |
1052 | 0 | throw new AssemblyException(e); |
1053 | 0 | } |
1054 | |
|
1055 | |
|
1056 | 0 | if (null == credentialProgramIDs || credentialProgramIDs.isEmpty()) { |
1057 | 0 | throw new AssemblyException("Program with ID == " + cluId + " has no Credential Program associated with it."); |
1058 | 0 | } else if (credentialProgramIDs.size() > 1) { |
1059 | 0 | throw new AssemblyException("Program with ID == " + cluId + " has more than one Credential Program associated with it."); |
1060 | |
} |
1061 | 0 | return credentialProgramIDs.get(0); |
1062 | |
} |
1063 | |
} |