Add Xapp Onboarder client to backend
[portal/ric-dashboard.git] / dashboard / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / config / XappOnboarderApiBuilder.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2020 AT&T Intellectual Property
6  * %%
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ========================LICENSE_END===================================
19  */
20 package org.oransc.ric.portal.dashboard.config;
21
22 import java.lang.invoke.MethodHandles;
23
24 import org.oransc.itdev.xapponboarder.client.api.ChartsApi;
25 import org.oransc.itdev.xapponboarder.client.api.HealthApi;
26 import org.oransc.itdev.xapponboarder.client.api.OnboardApi;
27 import org.oransc.itdev.xapponboarder.client.invoker.ApiClient;
28 import org.oransc.ric.portal.dashboard.model.RicInstance;
29 import org.oransc.ric.portal.dashboard.model.RicRegionList;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.web.client.RestTemplate;
33 import org.springframework.web.util.DefaultUriBuilderFactory;
34
35 /**
36  * The OpenAPI generated API client code using Spring RestTemplate is not thread
37  * safe according to https://github.com/swagger-api/swagger-codegen/issues/9222
38  *
39  * As a workaround this builder creates a new client at every request. If this
40  * proves to be too slow then clients could be cached for each thread.
41  */
42 public class XappOnboarderApiBuilder {
43
44         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
45
46         private final String urlSuffix;
47         private final RicRegionList instanceConfig;
48
49         public XappOnboarderApiBuilder(final RicRegionList instanceConfig, final String urlSuffix) {
50                 logger.debug("ctor: suffix {}", urlSuffix);
51                 this.instanceConfig = instanceConfig;
52                 this.urlSuffix = urlSuffix;
53         }
54
55         private ApiClient apiClient(String instanceKey) {
56                 RicInstance instance = instanceConfig.getInstance(instanceKey);
57                 String url = new DefaultUriBuilderFactory(instance.getPltUrlPrefix().trim()).builder()
58                                 .path(this.urlSuffix.trim()).build().normalize().toString();
59                 logger.debug("apiClient URL {}", url);
60                 return new ApiClient(new RestTemplate()).setBasePath(url);
61         }
62
63         public HealthApi getHealthApi(String instanceKey) {
64                 return new HealthApi(apiClient(instanceKey));
65         }
66
67         public ChartsApi getChartsApi(String instanceKey) {
68                 return new ChartsApi(apiClient(instanceKey));
69         }
70
71         public OnboardApi getOnboardApi(String instanceKey) {
72                 return new OnboardApi(apiClient(instanceKey));
73         }
74
75 }