Fix sonar issues
[vfc/nfvo/driver/vnfm/svnfm.git] / nokiav2 / driver / src / main / java / org / onap / vfc / nfvo / driver / vnfm / svnfm / nokia / onap / vfc / VfcRestApiProvider.java
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 org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.onap.core.MsbApiProvider;
19 import org.onap.vfc.nfvo.driver.vnfm.svnfm.nokia.spring.Conditions;
20 import org.onap.vfccatalog.api.VnfpackageApi;
21 import org.onap.vnfmdriver.api.NslcmApi;
22 import org.springframework.beans.factory.annotation.Autowired;
23 import org.springframework.context.annotation.Conditional;
24 import org.springframework.stereotype.Component;
25
26 /**
27  * Responsible for providing access to VF-C REST APIs
28  */
29 @Component
30 @Conditional(value = Conditions.UseForVfc.class)
31 public class VfcRestApiProvider {
32     static final String NSLCM_API_SERVICE_NAME = "nslcm";
33     static final String NSLCM_API_VERION = "v1";
34     static final String NSCATALOG_SERVICE_NAME = "catalog";
35     static final String NSCATALOG_API_VERSION = "v1";
36     private final MsbApiProvider msbApiProvider;
37
38     @Autowired
39     VfcRestApiProvider(MsbApiProvider msbApiProvider) {
40         this.msbApiProvider = msbApiProvider;
41     }
42
43     /**
44      * @return API to access VF-C for granting & LCN API
45      */
46     public NslcmApi getNsLcmApi() {
47         org.onap.vnfmdriver.ApiClient apiClient = new org.onap.vnfmdriver.ApiClient();
48         String correctedUrl = fixIncorrectUrl();
49         apiClient.setBasePath(correctedUrl);
50         return new NslcmApi(apiClient);
51     }
52
53     /**
54      * @return API to access VF-C catalog API
55      */
56     public VnfpackageApi getOnapCatalogApi() {
57         org.onap.vfccatalog.ApiClient vfcApiClient = new org.onap.vfccatalog.ApiClient();
58         vfcApiClient.setBasePath(msbApiProvider.getMicroServiceUrl(NSCATALOG_SERVICE_NAME, NSCATALOG_API_VERSION));
59         return new VnfpackageApi(vfcApiClient);
60     }
61
62     /**
63      * The swagger schema definition is not consistent with MSB info. The MSB reports
64      * the base path /restapi/nsclm/v1 (correct) and the paths defined in swagger is
65      * /nsclm/v1 making all API calls /restapi/nsclm/v1/nsclm/v1 (incorrect)
66      *
67      * @return
68      */
69     private String fixIncorrectUrl() {
70         String urlInMsb = msbApiProvider.getMicroServiceUrl(NSLCM_API_SERVICE_NAME, NSLCM_API_VERION);
71         //FIXME VF-C exposes multiple APIs in the single swagger definition, since the base path of different
72         //API is different the some API calls are incorrectly prefixed
73         //VF-C team refuses to fix this in Amsterdam https://jira.onap.org/browse/VFC-597?filter=-2
74         return urlInMsb.replaceFirst("/nslcm/v1", "");
75     }
76 }