Convert project from AJSC to Spring Boot
[aai/model-loader.git] / src / main / java / org / onap / aai / modelloader / entity / model / ModelArtifactHandler.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.entity.model;
22
23 import java.util.List;
24 import org.onap.aai.cl.api.Logger;
25 import org.onap.aai.cl.eelf.LoggerFactory;
26 import org.onap.aai.modelloader.config.ModelLoaderConfig;
27 import org.onap.aai.modelloader.entity.Artifact;
28 import org.onap.aai.modelloader.entity.ArtifactHandler;
29 import org.onap.aai.modelloader.restclient.AaiRestClient;
30 import org.onap.aai.modelloader.service.ModelLoaderMsgs;
31
32 public class ModelArtifactHandler extends ArtifactHandler {
33
34     private static Logger logger = LoggerFactory.getInstance().getLogger(ModelArtifactHandler.class.getName());
35
36     public ModelArtifactHandler(ModelLoaderConfig config) {
37         super(config);
38     }
39
40     @Override
41     public boolean pushArtifacts(List<Artifact> artifacts, String distributionID, List<Artifact> completedArtifacts,
42             AaiRestClient aaiClient) {
43         ModelSorter modelSorter = new ModelSorter();
44         List<Artifact> sortedModelArtifacts;
45         try {
46             sortedModelArtifacts = modelSorter.sort(artifacts);
47         } catch (BabelArtifactParsingException ex) {
48             logger.error(ModelLoaderMsgs.DISTRIBUTION_EVENT_ERROR, "Unable to resolve models: " + ex.getMessage());
49             return false;
50         }
51
52         // Push the ordered list of model artifacts to A&AI. If one fails, we need to roll back the changes.
53         for (Artifact art : sortedModelArtifacts) {
54             AbstractModelArtifact model = (AbstractModelArtifact) art;
55             if (!model.push(aaiClient, config, distributionID, completedArtifacts)) {
56                 return false;
57             }
58         }
59
60         return true;
61     }
62
63     @Override
64     public void rollback(List<Artifact> completedArtifacts, String distributionId, AaiRestClient aaiClient) {
65         for (Artifact artifactToDelete : completedArtifacts) {
66             AbstractModelArtifact model = (AbstractModelArtifact) artifactToDelete;
67             model.rollbackModel(aaiClient, config, distributionId);
68         }
69     }
70 }