2 * Copyright 2016-2017, Nokia Corporation
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
8 * http://www.apache.org/licenses/LICENSE-2.0
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.vfc;
18 import com.google.common.annotations.VisibleForTesting;
19 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.MsbApiProvider;
20 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.Conditions;
21 import org.onap.vfccatalog.api.VnfpackageApi;
22 import org.onap.vnfmdriver.ApiClient;
23 import org.onap.vnfmdriver.api.NslcmApi;
24 import org.springframework.beans.factory.annotation.Autowired;
25 import org.springframework.context.annotation.Conditional;
26 import org.springframework.stereotype.Component;
29 * Responsible for providing access to VF-C REST APIs
32 @Conditional(value = Conditions.UseForVfc.class)
33 public class VfcRestApiProvider {
34 static final String NSLCM_API_SERVICE_NAME = "nslcm";
35 static final String NSLCM_API_VERION = "v1";
36 static final String NSCATALOG_SERVICE_NAME = "catalog";
37 static final String NSCATALOG_API_VERSION = "v1";
38 private final MsbApiProvider msbApiProvider;
41 VfcRestApiProvider(MsbApiProvider msbApiProvider) {
42 this.msbApiProvider = msbApiProvider;
46 * @return API to access VF-C for granting & LCN API
48 public NslcmApi getNsLcmApi() {
49 return buildNslcmApiClient().createService(NslcmApi.class);
53 ApiClient buildNslcmApiClient() {
54 ApiClient apiClient = new ApiClient();
55 String correctedUrl = fixIncorrectUrl();
56 if (!correctedUrl.endsWith("/")) {
57 correctedUrl = correctedUrl + "/";
59 apiClient.setAdapterBuilder(apiClient.getAdapterBuilder().baseUrl(correctedUrl));
64 * @return API to access VF-C catalog API
66 public VnfpackageApi getVfcCatalogApi() {
67 return buildCatalogApiClient().createService(VnfpackageApi.class);
71 org.onap.vfccatalog.ApiClient buildCatalogApiClient() {
72 org.onap.vfccatalog.ApiClient vfcApiClient = new org.onap.vfccatalog.ApiClient();
73 String microServiceUrl = msbApiProvider.getMicroServiceUrl(NSCATALOG_SERVICE_NAME, NSCATALOG_API_VERSION);
74 if (!microServiceUrl.endsWith("/")) {
75 microServiceUrl = microServiceUrl + "/";
77 vfcApiClient.setAdapterBuilder(vfcApiClient.getAdapterBuilder().baseUrl(microServiceUrl));
82 * The swagger schema definition is not consistent with MSB info. The MSB reports
83 * the base path /restapi/nsclm/v1 (correct) and the paths defined in swagger is
84 * /nsclm/v1 making all API calls /restapi/nsclm/v1/nsclm/v1 (incorrect)
88 private String fixIncorrectUrl() {
89 String urlInMsb = msbApiProvider.getMicroServiceUrl(NSLCM_API_SERVICE_NAME, NSLCM_API_VERION);
90 //FIXME VF-C exposes multiple APIs in the single swagger definition, since the base path of different
91 //API is different the some API calls are incorrectly prefixed
92 //VF-C team refuses to fix this in Amsterdam https://jira.onap.org/browse/VFC-597?filter=-2
93 return urlInMsb.replaceFirst("/nslcm/v1", "");