afc02f3aaf6f2c94f66dd3b94cd3e874574176bb
[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  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.LinkedHashMap;
44 import java.util.Map;
45 import java.util.TreeMap;
46
47 /**
48  * @author : Ravi Mantena
49  * @date 10/16/2020 Application: ONAP - Blueprint Generator Service to create ONAP Blueprint
50  */
51 @Service
52 public class OnapBlueprintCreatorService {
53
54     @Autowired
55     private NodeService nodeService;
56
57     @Autowired
58     private PolicyNodeService policyNodeService;
59
60     @Autowired
61     private PgaasNodeService pgaasNodeService;
62
63     @Autowired
64     private QuotationService quotationService;
65
66     @Autowired
67     protected ImportsService importsService;
68
69     /**
70      * Creates Onap Blueprint
71      *
72      * @param onapComponentSpec OnapComponentSpec
73      * @param input Inputs
74      * @return
75      */
76     public OnapBlueprint createBlueprint(OnapComponentSpec onapComponentSpec, Input input) {
77         try {
78             OnapBlueprint blueprint = new OnapBlueprint();
79             blueprint.setTosca_definitions_version(Constants.TOSCA_DEF_VERSION);
80
81             // if (!"".equals(input.getImportPath()))
82             if (!StringUtils.isEmpty(input.getImportPath())) {
83                 blueprint.setImports(importsService.createImportsFromFile(input.getImportPath()));
84             } else {
85                 blueprint.setImports(importsService.createImports(input.getBpType()));
86             }
87
88             Map<String, Node> nodeTemplate = new TreeMap<>();
89             String nodeName = onapComponentSpec.getSelf().getName();
90             Map<String, LinkedHashMap<String, Object>> inputs = new TreeMap<>();
91
92             Map<String, Object> onapNodeResponse =
93                 nodeService
94                     .createOnapNode(inputs, onapComponentSpec, input.getServiceNameOverride());
95             inputs = (Map<String, LinkedHashMap<String, Object>>) onapNodeResponse.get("inputs");
96             nodeTemplate.put(nodeName, (Node) onapNodeResponse.get("onapNode"));
97             blueprint.setNode_templates(nodeTemplate);
98
99             if (onapComponentSpec.getPolicyInfo() != null) {
100                 policyNodeService.addPolicyNodesAndInputs(onapComponentSpec, nodeTemplate, inputs);
101             }
102
103             if (onapComponentSpec.getAuxilary() != null
104                 && onapComponentSpec.getAuxilary().getDatabases() != null) {
105                 pgaasNodeService.addPgaasNodesAndInputs(onapComponentSpec, nodeTemplate, inputs);
106             }
107
108             blueprint.setInputs(inputs);
109
110             return quotationService.setQuotations(blueprint);
111         } catch (Exception ex) {
112             throw new BlueprintException(
113                 "Unable to create ONAP Blueprint Object from given input parameters", ex);
114         }
115     }
116 }