0ca2c0299e5b66673d8c973d2b57f16807510e4d
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / service / ModelController.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 AT&T Intellectual Property. All rights reserved.
6  * Copyright © 2017-2018 European Software Marketing Ltd.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *       http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21 package org.onap.aai.modelloader.service;
22
23 import java.io.IOException;
24 import java.util.ArrayList;
25 import java.util.Base64;
26 import java.util.Date;
27 import java.util.List;
28 import java.util.Timer;
29 import java.util.TimerTask;
30
31 import javax.ws.rs.core.MediaType;
32 import javax.ws.rs.core.Response;
33
34 import org.onap.aai.cl.api.Logger;
35 import org.onap.aai.cl.eelf.LoggerFactory;
36 import org.onap.aai.modelloader.config.ModelLoaderConfig;
37 import org.onap.aai.modelloader.entity.Artifact;
38 import org.onap.aai.modelloader.notification.ArtifactDownloadManager;
39 import org.onap.aai.modelloader.notification.EventCallback;
40 import org.onap.aai.modelloader.notification.NotificationDataImpl;
41 import org.onap.aai.modelloader.notification.NotificationPublisher;
42 import org.onap.sdc.api.IDistributionClient;
43 import org.onap.sdc.api.notification.IArtifactInfo;
44 import org.onap.sdc.api.results.IDistributionClientResult;
45 import org.onap.sdc.utils.DistributionActionResultEnum;
46 import org.springframework.web.bind.annotation.PathVariable;
47 import org.springframework.web.bind.annotation.RequestBody;
48 import org.springframework.web.bind.annotation.RequestMapping;
49 import org.springframework.web.bind.annotation.RestController;
50
51 /**
52  * Service class in charge of managing the negotiating model loading capabilities between AAI and an ASDC.
53  */
54 @RestController
55 @RequestMapping("/services/model-loader/v1/model-service")
56 public class ModelController implements ModelLoaderInterface {
57
58     private static final Logger logger = LoggerFactory.getInstance().getLogger(ModelController.class.getName());
59
60     private final IDistributionClient client;
61     private final ModelLoaderConfig config;
62     private final EventCallback eventCallback;
63     private final BabelServiceClientFactory babelClientFactory;
64
65     public ModelController(IDistributionClient client, ModelLoaderConfig config, EventCallback eventCallback,
66             BabelServiceClientFactory babelClientFactory) {
67         this.client = client;
68         this.config = config;
69         this.eventCallback = eventCallback;
70         this.babelClientFactory = babelClientFactory;
71     }
72
73     /**
74      * Responsible for stopping the connection to the distribution client before the resource is destroyed.
75      */
76     public void preShutdownOperations() {
77         logger.info(ModelLoaderMsgs.STOPPING_CLIENT);
78         if (client != null) {
79             client.stop();
80         }
81     }
82
83     /**
84      * Responsible for loading configuration files, initializing model distribution clients, and starting them.
85      */
86     protected void initSdcClient() {
87         // Initialize distribution client
88         logger.debug(ModelLoaderMsgs.INITIALIZING, "Initializing distribution client...");
89         IDistributionClientResult initResult = client.init(config, eventCallback);
90
91         if (initResult.getDistributionActionResult() == DistributionActionResultEnum.SUCCESS) {
92             // Start distribution client
93             logger.debug(ModelLoaderMsgs.INITIALIZING, "Starting distribution client...");
94             IDistributionClientResult startResult = client.start();
95             if (startResult.getDistributionActionResult() == DistributionActionResultEnum.SUCCESS) {
96                 logger.info(ModelLoaderMsgs.INITIALIZING, "Connection to SDC established");
97             } else {
98                 String errorMsg = "Failed to start distribution client: " + startResult.getDistributionMessageResult();
99                 logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
100
101                 // Kick off a timer to retry the SDC connection
102                 Timer timer = new Timer();
103                 TimerTask task = new SdcConnectionJob(client, config, eventCallback, timer);
104                 timer.schedule(task, new Date(), 60000);
105             }
106         } else {
107             String errorMsg = "Failed to initialize distribution client: " + initResult.getDistributionMessageResult();
108             logger.error(ModelLoaderMsgs.ASDC_CONNECTION_ERROR, errorMsg);
109
110             // Kick off a timer to retry the SDC connection
111             Timer timer = new Timer();
112             TimerTask task = new SdcConnectionJob(client, config, eventCallback, timer);
113             timer.schedule(task, new Date(), 60000);
114         }
115
116         Runtime.getRuntime().addShutdownHook(new Thread(this::preShutdownOperations));
117     }
118
119     /**
120      * (non-Javadoc)
121      *
122      * @see org.onap.aai.modelloader.service.ModelLoaderInterface#loadModel(java.lang.String)
123      */
124     @Override
125     public Response loadModel(@PathVariable String modelid) {
126         return Response.ok("{\"model_loaded\":\"" + modelid + "\"}").build();
127     }
128
129     /**
130      * (non-Javadoc)
131      *
132      * @see org.onap.aai.modelloader.service.ModelLoaderInterface#saveModel(java.lang.String, java.lang.String)
133      */
134     @Override
135     public Response saveModel(@PathVariable String modelid, @PathVariable String modelname) {
136         return Response.ok("{\"model_saved\":\"" + modelid + "-" + modelname + "\"}").build();
137     }
138
139     @Override
140     public Response ingestModel(@PathVariable String modelName, @PathVariable String modelVersion,
141             @RequestBody String payload) throws IOException {
142         Response response;
143
144         if (config.getIngestSimulatorEnabled()) {
145             response = processTestArtifact(modelName, modelVersion, payload);
146         } else {
147             logger.debug("Simulation interface disabled");
148             response = Response.serverError().build();
149         }
150
151         return response;
152     }
153
154     private Response processTestArtifact(String modelName, String modelVersion, String payload) {
155         IArtifactInfo artifactInfo = new ArtifactInfoImpl();
156         ((ArtifactInfoImpl) artifactInfo).setArtifactName(modelName);
157         ((ArtifactInfoImpl) artifactInfo).setArtifactVersion(modelVersion);
158
159         Response response;
160         try {
161             logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Received test artifact " + modelName + " " + modelVersion);
162
163             byte[] csarFile = Base64.getDecoder().decode(payload);
164
165             logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Generating XML models from test artifact");
166
167             List<Artifact> modelArtifacts = new ArrayList<>();
168             List<Artifact> catalogArtifacts = new ArrayList<>();
169
170             new ArtifactDownloadManager(client, config, babelClientFactory).processToscaArtifacts(modelArtifacts,
171                     catalogArtifacts, csarFile, artifactInfo, "test-transaction-id", modelVersion);
172
173             logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Loading xml models from test artifacts: "
174                     + modelArtifacts.size() + " model(s) and " + catalogArtifacts.size() + " catalog(s)");
175
176             NotificationDataImpl notificationData = new NotificationDataImpl();
177             notificationData.setDistributionID("TestDistributionID");
178             boolean success =
179                     new ArtifactDeploymentManager(config).deploy(notificationData, modelArtifacts, catalogArtifacts);
180             logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Deployment success was " + success);
181             response = success ? Response.ok().build() : Response.serverError().build();
182         } catch (Exception e) {
183             String responseMessage = e.getMessage();
184             logger.info(ModelLoaderMsgs.DISTRIBUTION_EVENT, "Exception handled: " + responseMessage);
185             if (config.getASDCConnectionDisabled()) {
186                 // Make sure the NotificationPublisher logger is invoked as per the standard processing flow.
187                 new NotificationPublisher().publishDeployFailure(client, new NotificationDataImpl(), artifactInfo);
188             } else {
189                 responseMessage += "\nSDC publishing is enabled but has been bypassed";
190             }
191             response = Response.serverError().entity(responseMessage).type(MediaType.APPLICATION_XML).build();
192         }
193         return response;
194     }
195 }