Fix sonar issues
[dcaegen2/platform.git] / mod / bpgenerator / onap / src / main / java / org / onap / blueprintgenerator / service / onap / OnapBlueprintCreatorService.java
1 /*
2  *
3  *  * ============LICENSE_START=======================================================
4  *  *  org.onap.dcae
5  *  *  ================================================================================
6  *  *  Copyright (c) 2020  AT&T Intellectual Property. All rights reserved.
7  *  *  Copyright (c) 2020-2021  Nokia. All rights reserved.
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  */
24
25 package org.onap.blueprintgenerator.service.onap;
26
27 import org.onap.blueprintgenerator.constants.Constants;
28 import org.onap.blueprintgenerator.exception.BlueprintException;
29 import org.onap.blueprintgenerator.model.common.Input;
30 import org.onap.blueprintgenerator.model.common.Node;
31 import org.onap.blueprintgenerator.model.common.OnapBlueprint;
32 import org.onap.blueprintgenerator.model.componentspec.OnapComponentSpec;
33 import org.onap.blueprintgenerator.service.base.BlueprintService;
34 import org.onap.blueprintgenerator.service.common.ImportsService;
35 import org.onap.blueprintgenerator.service.common.NodeService;
36 import org.onap.blueprintgenerator.service.common.PgaasNodeService;
37 import org.onap.blueprintgenerator.service.common.PolicyNodeService;
38 import org.onap.blueprintgenerator.service.common.QuotationService;
39 import org.springframework.beans.factory.annotation.Autowired;
40 import org.springframework.stereotype.Service;
41 import org.springframework.util.StringUtils;
42
43 import java.util.Map;
44 import java.util.TreeMap;
45
46 /**
47  * @author : Ravi Mantena
48  * @date 10/16/2020 Application: ONAP - Blueprint Generator Service to create ONAP Blueprint
49  */
50 @Service
51 public class OnapBlueprintCreatorService {
52
53     @Autowired
54     private NodeService nodeService;
55
56     @Autowired
57     private PolicyNodeService policyNodeService;
58
59     @Autowired
60     private PgaasNodeService pgaasNodeService;
61
62     @Autowired
63     private QuotationService quotationService;
64
65     @Autowired
66     protected ImportsService importsService;
67
68     /**
69      * Creates Onap Blueprint
70      *
71      * @param onapComponentSpec OnapComponentSpec
72      * @param input Inputs
73      * @return
74      */
75     public OnapBlueprint createBlueprint(OnapComponentSpec onapComponentSpec, Input input) {
76         try {
77             OnapBlueprint blueprint = new OnapBlueprint();
78             blueprint.setTosca_definitions_version(Constants.TOSCA_DEF_VERSION);
79
80             if (!StringUtils.isEmpty(input.getImportPath())) {
81                 blueprint.setImports(importsService.createImportsFromFile(input.getImportPath()));
82             } else {
83                 blueprint.setImports(importsService.createImports(input.getBpType()));
84             }
85
86             Map<String, Node> nodeTemplate = new TreeMap<>();
87             String nodeName = onapComponentSpec.getSelf().getName();
88             Map<String, Map<String, Object>> inputs = new TreeMap<>();
89
90             Map<String, Object> onapNodeResponse =
91                 nodeService
92                     .createOnapNode(inputs, onapComponentSpec, input.getServiceNameOverride());
93             inputs = (Map<String, Map<String, Object>>) onapNodeResponse.get("inputs");
94             nodeTemplate.put(nodeName, (Node) onapNodeResponse.get("onapNode"));
95             blueprint.setNode_templates(nodeTemplate);
96
97             if (onapComponentSpec.getPolicyInfo() != null) {
98                 policyNodeService.addPolicyNodesAndInputs(onapComponentSpec, nodeTemplate, inputs);
99             }
100
101             if (onapComponentSpec.getAuxilary() != null
102                 && onapComponentSpec.getAuxilary().getDatabases() != null) {
103                 pgaasNodeService.addPgaasNodesAndInputs(onapComponentSpec, nodeTemplate, inputs);
104             }
105
106             blueprint.setInputs(inputs);
107
108             return quotationService.setQuotations(blueprint);
109         } catch (Exception ex) {
110             throw new BlueprintException(
111                 "Unable to create ONAP Blueprint Object from given input parameters", ex);
112         }
113     }
114 }