15c5eda05431ce187d45eb44c89f291ad8bb5c47
[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.inventory.delete;
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.HeatBridgeImpl;
30 import org.onap.so.openstack.exceptions.MsoCloudSiteNotFound;
31 import org.slf4j.Logger;
32 import org.slf4j.LoggerFactory;
33 import org.springframework.beans.factory.annotation.Autowired;
34 import org.springframework.core.env.Environment;
35 import org.springframework.stereotype.Component;
36
37 @Component
38 public class DeleteAAIInventory {
39
40     private static final Logger logger = LoggerFactory.getLogger(DeleteAAIInventory.class);
41
42     private AAIResourcesClient aaiClient;
43
44     @Autowired
45     protected CloudConfig cloudConfig;
46
47     @Autowired
48     protected Environment env;
49
50     public void heatbridge(CloudInformation cloudInformation, boolean dryrun) {
51         try {
52             if (!dryrun) {
53                 logger.debug("Heatbridge delete executing");
54
55                 CloudSite cloudSite = cloudConfig.getCloudSite(cloudInformation.getRegionId())
56                         .orElseThrow(() -> new MsoCloudSiteNotFound(cloudInformation.getRegionId()));
57                 CloudIdentity cloudIdentity = cloudSite.getIdentityService();
58                 HeatBridgeApi heatBridgeClient = new HeatBridgeImpl(new AAIResourcesClient(), cloudIdentity,
59                         cloudInformation.getOwner(), cloudInformation.getRegionId(), cloudSite.getRegionId(),
60                         cloudInformation.getTenantId());
61                 heatBridgeClient.authenticate();
62                 heatBridgeClient.deleteVfModuleData(cloudInformation.getVnfId(), cloudInformation.getVfModuleId());
63             }
64         } catch (Exception ex) {
65             logger.debug("Heatbrige failed for stackId: " + cloudInformation.getTemplateInstanceId(), ex);
66         }
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 }