X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=holmes-actions%2Fsrc%2Fmain%2Fjava%2Forg%2Fonap%2Fholmes%2Fcommon%2Faai%2FAaiQuery.java;h=aa840ba48a5c3172291914831fc2ce69f2623776;hb=c9ed775685b01f5622618216748eeac3000285c4;hp=36479d704d89bea5531eeabd7f0a0082f9c8a863;hpb=4eaf0290dd2572f40526da9cfd09a1ccee4da76d;p=holmes%2Fcommon.git diff --git a/holmes-actions/src/main/java/org/onap/holmes/common/aai/AaiQuery.java b/holmes-actions/src/main/java/org/onap/holmes/common/aai/AaiQuery.java index 36479d7..aa840ba 100644 --- a/holmes-actions/src/main/java/org/onap/holmes/common/aai/AaiQuery.java +++ b/holmes-actions/src/main/java/org/onap/holmes/common/aai/AaiQuery.java @@ -15,6 +15,10 @@ package org.onap.holmes.common.aai; import java.util.HashMap; import java.util.Map; +import java.util.stream.Stream; +import javax.inject.Inject; +import lombok.extern.slf4j.Slf4j; +import org.jvnet.hk2.annotations.Service; import org.onap.holmes.common.aai.config.AaiConfig; import org.onap.holmes.common.aai.entity.VmEntity; import org.onap.holmes.common.aai.entity.VnfEntity; @@ -22,8 +26,11 @@ import org.onap.holmes.common.config.MicroServiceConfig; import org.onap.holmes.common.exception.CorrelationException; import org.onap.holmes.common.utils.HttpsUtils; +@Service +@Slf4j public class AaiQuery { + @Inject private AaiResponseUtil aaiResponseUtil; public VnfEntity getAaiVnfData(String vnfId, String vnfName) throws CorrelationException { @@ -36,7 +43,7 @@ public class AaiQuery { } public VmEntity getAaiVmData(String vserverId, String vserverName) throws CorrelationException { - String url = MicroServiceConfig.getMsbServerAddr() + getVmResourceLinks(vserverId, vserverName); + String url = getVmUrl(vserverId, vserverName); String response = getResponse(url); try { return aaiResponseUtil.convertJsonToVmEntity(response); @@ -45,6 +52,18 @@ public class AaiQuery { } } + private String getVmUrl(String vserverId, String vserverName) throws CorrelationException { + String url = ""; + String resourceLinkUrl = getVmResourceLinks(vserverId, vserverName); + String baseUrl = getBaseUrl(""); + if (baseUrl.startsWith("http")) { + url = baseUrl + getMsbSuffixAddr(resourceLinkUrl); + } else { + url = baseUrl + resourceLinkUrl; + } + return url; + } + private String getVmResourceLinks(String vserverId, String vserverName) throws CorrelationException { String response = getResourceLinksResponse(vserverId, vserverName); try { @@ -55,29 +74,55 @@ public class AaiQuery { } private String getResourceLinksResponse(String vserverId, String vserverName) throws CorrelationException { - String url = - MicroServiceConfig.getMsbServerAddr() + AaiConfig.VM_ADDR + "vserver-id:EQUALS:" - + vserverId; + String url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VNF_ADDR) + "vserver-id:EQUALS:" + vserverId); String response = getResponse(url); if (response.equals("")) { - url = MicroServiceConfig.getMsbServerAddr() + AaiConfig.VM_ADDR - + "vserver-name:EQUALS:" + vserverName; + url = getBaseUrl(AaiConfig.AAI_VM_ADDR + "vserver-name:EQUALS:" + vserverName); response = getResponse(url); } return response; } private String getVnfDataResponse(String vnfId, String vnfName) throws CorrelationException { - String url = MicroServiceConfig.getMsbServerAddr() + AaiConfig.VNF_ADDR + "vnf-id=" + vnfId; + String url = getBaseUrl(getMsbSuffixAddr(AaiConfig.AAI_VM_ADDR)+ "vnf-id=" + vnfId); String response = getResponse(url); if (response.equals("")) { - url = MicroServiceConfig.getMsbServerAddr() + AaiConfig.VNF_ADDR + "vnf-name=" - + vnfName; + url = getBaseUrl(AaiConfig.AAI_VNF_ADDR + "vnf-name=" + vnfName); response = getResponse(url); } return response; } + private String getBaseUrl(String suffixUrl) { + String url = ""; + try { + url = MicroServiceConfig.getMsbServerAddr() + suffixUrl; + } catch (Exception e) { + log.info("Failed to get msb address"); + } + if (url.equals("")) { + try { + url = "https:\\\\" + MicroServiceConfig.getServiceAddrInfoFromCBS("aai_config") + + suffixUrl; + } catch (Exception e) { + log.info("Failed to get aai address"); + } + } + return url; + } + + private String getMsbSuffixAddr(String suffixUrl) { + String[] addrSplits = suffixUrl.substring(1).split("/"); + String ret = addrSplits[1]; + addrSplits[1] = addrSplits[2]; + addrSplits[2] = ret; + StringBuffer stringBuffer = new StringBuffer(); + for (String split : addrSplits) { + stringBuffer.append("/" + split); + } + return stringBuffer.toString(); + } + private String getResponse(String url) throws CorrelationException { String response = ""; try {