c2473aae15deeccea2b645c58d38a8427eb28588
[vfc/nfvo/driver/vnfm/svnfm.git] /
1 /*
2  * Copyright 2016-2017, Nokia Corporation
3  *
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
7  *
8  *     http://www.apache.org/licenses/LICENSE-2.0
9  *
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.
15  */
16 package org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.vfc;
17
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;
27
28 /**
29  * Responsible for providing access to VF-C REST APIs
30  */
31 @Component
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;
39
40     @Autowired
41     VfcRestApiProvider(MsbApiProvider msbApiProvider) {
42         this.msbApiProvider = msbApiProvider;
43     }
44
45     /**
46      * @return API to access VF-C for granting & LCN API
47      */
48     public NslcmApi getNsLcmApi() {
49         return buildNslcmApiClient().createService(NslcmApi.class);
50     }
51
52     @VisibleForTesting
53     ApiClient buildNslcmApiClient() {
54         ApiClient apiClient = new ApiClient();
55         String correctedUrl = fixIncorrectUrl();
56         if (!correctedUrl.endsWith("/")) {
57             correctedUrl = correctedUrl + "/";
58         }
59         apiClient.setAdapterBuilder(apiClient.getAdapterBuilder().baseUrl(correctedUrl));
60         return apiClient;
61     }
62
63     /**
64      * @return API to access VF-C catalog API
65      */
66     public VnfpackageApi getVfcCatalogApi() {
67         return buildCatalogApiClient().createService(VnfpackageApi.class);
68     }
69
70     @VisibleForTesting
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 + "/";
76         }
77         vfcApiClient.setAdapterBuilder(vfcApiClient.getAdapterBuilder().baseUrl(microServiceUrl));
78         return vfcApiClient;
79     }
80
81     /**
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)
85      *
86      * @return
87      */
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", "");
94     }
95 }