f5a63555295c53f9bd778ebd2e80e0f8ce74737f
[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     public void heatbridge(CloudInformation cloudInformation) throws MsoCloudSiteNotFound, HeatBridgeException {
52         logger.debug("Heatbridge delete executing");
53         CloudSite cloudSite = cloudConfig.getCloudSite(cloudInformation.getRegionId())
54                 .orElseThrow(() -> new MsoCloudSiteNotFound(cloudInformation.getRegionId()));
55         CloudIdentity cloudIdentity = cloudSite.getIdentityService();
56         HeatBridgeApi heatBridgeClient = new HeatBridgeImpl(new AAIResourcesClient(), cloudIdentity,
57                 cloudInformation.getOwner(), cloudInformation.getRegionId(), cloudSite.getRegionId(),
58                 cloudInformation.getTenantId(), cloudInformation.getNodeType());
59         heatBridgeClient.authenticate();
60         heatBridgeClient.deleteVfModuleData(cloudInformation.getVnfId(), cloudInformation.getVfModuleId());
61     }
62
63     protected AAIResourcesClient getAaiClient() {
64         if (aaiClient == null)
65             return new AAIResourcesClient();
66         else
67             return aaiClient;
68     }
69
70     protected void setAaiClient(AAIResourcesClient aaiResource) {
71         aaiClient = aaiResource;
72     }
73 }