Test Replace Jackson with GSON
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / aai / AaiQuery.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14 package org.onap.holmes.common.aai;
15
16 import java.util.HashMap;
17 import java.util.Map;
18 import javax.inject.Inject;
19 import lombok.extern.slf4j.Slf4j;
20 import org.jvnet.hk2.annotations.Service;
21 import org.onap.holmes.common.aai.config.AaiConfig;
22 import org.onap.holmes.common.aai.entity.VmEntity;
23 import org.onap.holmes.common.aai.entity.VnfEntity;
24 import org.onap.holmes.common.config.MicroServiceConfig;
25 import org.onap.holmes.common.exception.CorrelationException;
26 import org.onap.holmes.common.utils.HttpsUtils;
27
28 @Service
29 @Slf4j
30 public class AaiQuery {
31
32     @Inject
33     private AaiResponseUtil aaiResponseUtil;
34
35     public VnfEntity getAaiVnfData(String vnfId, String vnfName) throws CorrelationException {
36         String response = getVnfDataResponse(vnfId, vnfName);
37         try {
38             return aaiResponseUtil.convertJsonToVnfEntity(response);
39         } catch (Exception e) {
40             throw new CorrelationException("Failed to convert aai vnf response data to vnf entity", e);
41         }
42     }
43
44     public VmEntity getAaiVmData(String vserverId, String vserverName) throws CorrelationException {
45         String url = getVmUrl(vserverId, vserverName);
46         String response = getResponse(url);
47         try {
48             return aaiResponseUtil.convertJsonToVmEntity(response);
49         } catch (Exception e) {
50             throw new CorrelationException("Failed to convert aai vm response data to vm entity", e);
51         }
52     }
53
54     private String getVmUrl(String vserverId, String vserverName) throws CorrelationException {
55         String url = "";
56         String resourceLinkUrl = getVmResourceLinks(vserverId, vserverName);
57         String baseUrl = getBaseUrl("");
58         if (baseUrl.startsWith("http")) {
59             url = baseUrl + getMsbSuffixAddr(resourceLinkUrl);
60         } else {
61             url = baseUrl + resourceLinkUrl;
62         }
63         return url;
64     }
65
66     private String getVmResourceLinks(String vserverId, String vserverName) throws CorrelationException {
67         String response = getResourceLinksResponse(vserverId, vserverName);
68         return aaiResponseUtil.convertJsonToVmResourceLink(response).get(0).getResourceLink();
69     }
70
71     private String getResourceLinksResponse(String vserverId, String vserverName) throws CorrelationException {
72         String url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VM_ADDR) + "vserver-id:EQUALS:" + vserverId);
73         String response = getResponse(url);
74         if ("".equals(response) || "{}".equals(response)) {
75             url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VM_ADDR) + "vserver-name:EQUALS:" + vserverName);
76             response = getResponse(url);
77         }
78         return response;
79     }
80
81     private String getVnfDataResponse(String vnfId, String vnfName) throws CorrelationException {
82         String url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VNF_ADDR)+  "/" + vnfId);
83         String response = getResponse(url);
84         if ("".equals(response) || "{}".equals(response)) {
85             url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VNF_ADDR) + "vnf-name=" + vnfName);
86             response = getResponse(url);
87         }
88         return response;
89     }
90
91     private String getBaseUrl(String suffixUrl) {
92         String url = "";
93         try {
94             String[] msbUrl = MicroServiceConfig.getMsbServerAddrWithHttpPrefix().split(":");
95             url = msbUrl[0] + ":" + msbUrl[1] + suffixUrl;
96         } catch (Exception e) {
97             log.info("Failed to get msb address");
98         }
99         if ("".equals(url)) {
100             try {
101                 url = "https://" + MicroServiceConfig.getServiceConfigInfoFromCBS("aai_config").replace("http://", "")
102                         + suffixUrl;
103             } catch (Exception e) {
104                 log.info("Failed to get the address of A&AI.", e);
105             }
106         }
107         return url;
108     }
109
110     private String getMsbSuffixAddr(String suffixUrl) {
111         String[] addrSplits = suffixUrl.substring(1).split("/");
112         String[] conv = addrSplits[2].split("-");
113         addrSplits[2] = conv[0];
114         if (conv.length > 1) {
115             for(int i = 1; i < conv.length; i++) {
116                 addrSplits[2] = addrSplits[2] + conv[i].substring(0, 1).toUpperCase() + conv[i]
117                         .substring(1);
118             }
119         }
120         String ret = addrSplits[1];
121         addrSplits[1] = addrSplits[0] + "-" + addrSplits[2];
122         addrSplits[2] = ret;
123         addrSplits[0] = "api";
124         StringBuffer stringBuffer = new StringBuffer();
125         for (String split : addrSplits) {
126             stringBuffer.append("/" + split);
127         }
128         return stringBuffer.toString();
129     }
130
131     private String getResponse(String url) throws CorrelationException {
132         String response = "";
133         try {
134             response = HttpsUtils.get(url, getHeaders());
135         } catch (Exception e) {
136             throw new CorrelationException("Failed to get data from aai", e);
137         }
138         return response;
139     }
140
141     private Map getHeaders() {
142         Map<String, String> headers = new HashMap<>();
143         headers.put("X-TransactionId", AaiConfig.X_TRANSACTION_ID);
144         headers.put("X-FromAppId", AaiConfig.X_FROMAPP_ID);
145         headers.put("Authorization", AaiConfig.getAuthenticationCredentials());
146         headers.put("Accept", "application/json");
147         return headers;
148     }
149 }