f904788de30ac2246446e357d76c229305183514
[so.git] /
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.onap.so.adapters.tasks.inventory;
22
23 import org.onap.aaiclient.client.aai.AAIResourcesClient;
24 import org.onap.so.cloud.CloudConfig;
25 import org.onap.so.cloud.resource.beans.CloudInformation;
26 import org.onap.so.db.catalog.beans.CloudIdentity;
27 import org.onap.so.db.catalog.beans.CloudSite;
28 import org.onap.so.heatbridge.HeatBridgeApi;
29 import org.onap.so.heatbridge.HeatBridgeException;
30 import org.onap.so.heatbridge.HeatBridgeImpl;
31 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.beans.factory.annotation.Autowired;
35 import org.springframework.core.env.Environment;
36 import org.springframework.stereotype.Component;
37
38 @Component
39 public class DeleteAAIInventory {
40
41     private static final Logger logger = LoggerFactory.getLogger(DeleteAAIInventory.class);
42
43     private AAIResourcesClient aaiClient;
44
45     @Autowired
46     protected CloudConfig cloudConfig;
47
48     @Autowired
49     protected Environment env;
50
51     private static final String MULTICLOUD_MODE = "MULTICLOUD";
52
53     public void heatbridge(CloudInformation cloudInformation) throws MsoCloudSiteNotFound, HeatBridgeException {
54         logger.debug("Heatbridge delete executing");
55         CloudSite cloudSite = cloudConfig.getCloudSite(cloudInformation.getRegionId())
56                 .orElseThrow(() -> new MsoCloudSiteNotFound(cloudInformation.getRegionId()));
57         if (cloudSite.getOrchestrator() != null && MULTICLOUD_MODE.equalsIgnoreCase(cloudSite.getOrchestrator())) {
58             logger.debug("Skipping Heatbridge as CloudSite orchestrator is: " + MULTICLOUD_MODE);
59             return;
60         }
61         CloudIdentity cloudIdentity = cloudSite.getIdentityService();
62         HeatBridgeApi heatBridgeClient = new HeatBridgeImpl(new AAIResourcesClient(), cloudIdentity,
63                 cloudInformation.getOwner(), cloudInformation.getRegionId(), cloudSite.getRegionId(),
64                 cloudInformation.getTenantId(), cloudInformation.getNodeType());
65         heatBridgeClient.authenticate();
66         heatBridgeClient.deleteVfModuleData(cloudInformation.getVnfId(), cloudInformation.getVfModuleId());
67     }
68
69     protected AAIResourcesClient getAaiClient() {
70         if (aaiClient == null)
71             return new AAIResourcesClient();
72         else
73             return aaiClient;
74     }
75
76     protected void setAaiClient(AAIResourcesClient aaiResource) {
77         aaiClient = aaiResource;
78     }
79 }