Merge "Commented out initialization of workflowResponse to prevent static analyzer...
[so.git] / bpmn / so-bpmn-tasks / src / main / java / org / onap / so / bpmn / infrastructure / aai / tasks / AAIFlagTasks.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Modifications Copyright (c) 2019 Samsung
8  * ================================================================================
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * 
13  *      http://www.apache.org/licenses/LICENSE-2.0
14  * 
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  * ============LICENSE_END=========================================================
21  */
22
23 package org.onap.so.bpmn.infrastructure.aai.tasks;
24
25 import org.onap.so.bpmn.common.BuildingBlockExecution;
26 import org.onap.so.bpmn.servicedecomposition.bbobjects.GenericVnf;
27 import org.onap.so.bpmn.servicedecomposition.entities.ResourceKey;
28 import org.onap.so.bpmn.servicedecomposition.tasks.ExtractPojosForBB;
29 import org.onap.so.client.exception.ExceptionBuilder;
30 import org.onap.so.client.orchestration.AAIVnfResources;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.stereotype.Component;
35
36 @Component
37 public class AAIFlagTasks {
38
39     @Autowired
40     private AAIVnfResources aaiVnfResources;
41     @Autowired
42     private ExceptionBuilder exceptionUtil;
43     @Autowired
44     private ExtractPojosForBB extractPojosForBB;
45
46     public void checkVnfInMaintFlag(BuildingBlockExecution execution) {
47         boolean inMaint = false;
48         try {
49             GenericVnf vnf = extractPojosForBB.extractByKey(execution, ResourceKey.GENERIC_VNF_ID);
50             String vnfId = vnf.getVnfId();
51             inMaint = aaiVnfResources.checkInMaintFlag(vnfId);
52         } catch (Exception ex) {
53             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
54         }
55         if (inMaint) {
56             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, "VNF is in maintenance in A&AI");
57         }
58     }
59
60     public void modifyVnfInMaintFlag(BuildingBlockExecution execution, boolean inMaint) {
61         try {
62             GenericVnf genericVnf = extractPojosForBB.extractByKey(execution, ResourceKey.GENERIC_VNF_ID);
63
64             GenericVnf copiedGenericVnf = genericVnf.shallowCopyId();
65
66             copiedGenericVnf.setInMaint(inMaint);
67             genericVnf.setInMaint(inMaint);
68
69             aaiVnfResources.updateObjectVnf(copiedGenericVnf);
70         } catch (Exception ex) {
71             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
72         }
73     }
74
75     public void checkVnfClosedLoopDisabledFlag(BuildingBlockExecution execution) {
76         boolean isClosedLoopDisabled = false;
77         try {
78             GenericVnf vnf = extractPojosForBB.extractByKey(execution, ResourceKey.GENERIC_VNF_ID);
79             String vnfId = vnf.getVnfId();
80             isClosedLoopDisabled = aaiVnfResources.checkVnfClosedLoopDisabledFlag(vnfId);
81         } catch (Exception ex) {
82             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
83         }
84         if (isClosedLoopDisabled) {
85             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, "VNF Close Loop Disabled in A&AI");
86         }
87     }
88
89     public void modifyVnfClosedLoopDisabledFlag(BuildingBlockExecution execution, boolean closedLoopDisabled) {
90         try {
91             GenericVnf genericVnf = extractPojosForBB.extractByKey(execution, ResourceKey.GENERIC_VNF_ID);
92
93             GenericVnf copiedGenericVnf = genericVnf.shallowCopyId();
94             copiedGenericVnf.setClosedLoopDisabled(closedLoopDisabled);
95             genericVnf.setClosedLoopDisabled(closedLoopDisabled);
96
97             aaiVnfResources.updateObjectVnf(copiedGenericVnf);
98         } catch (Exception ex) {
99             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
100         }
101     }
102
103     public void checkVnfPserversLockedFlag(BuildingBlockExecution execution) {
104         boolean inPserversLocked = false;
105         try {
106             GenericVnf vnf = extractPojosForBB.extractByKey(execution, ResourceKey.GENERIC_VNF_ID);
107             String vnfId = vnf.getVnfId();
108             inPserversLocked = aaiVnfResources.checkVnfPserversLockedFlag(vnfId);
109         } catch (Exception ex) {
110             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, ex);
111         }
112         if (inPserversLocked) {
113             exceptionUtil.buildAndThrowWorkflowException(execution, 7000, "VNF PServers in Locked in A&AI");
114         }
115     }
116 }