0fbbcb354f6ff293cb5b7ab94cf46e53c8953c8a
[portal/ric-dashboard.git] / webapp-backend / src / main / java / org / oransc / ric / portal / dashboard / config / A1MediatorApiBuilder.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 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.ric.a1med.client.api.A1MediatorApi;
25 import org.oransc.ric.a1med.client.invoker.ApiClient;
26 import org.oransc.ric.portal.dashboard.model.RicInstanceList;
27 import org.oransc.ric.portal.dashboard.model.RicInstance;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30 import org.springframework.web.client.RestTemplate;
31 import org.springframework.web.util.DefaultUriBuilderFactory;
32
33 /**
34  * The OpenAPI generated API client code using Spring RestTemplate is not thread
35  * safe according to https://github.com/swagger-api/swagger-codegen/issues/9222
36  *
37  * As a workaround this builder creates a new client at every request. If this
38  * proves to be too slow then clients could be cached for each thread.
39  */
40 public class A1MediatorApiBuilder {
41
42         private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
43
44         private final String urlSuffix;
45         private final RicInstanceList instanceConfig;
46
47         public A1MediatorApiBuilder(final RicInstanceList instanceConfig, final String urlSuffix) {
48                 logger.debug("ctor: suffix {}", urlSuffix);
49                 this.instanceConfig = instanceConfig;
50                 this.urlSuffix = urlSuffix;
51         }
52
53         private ApiClient apiClient(String instanceKey) {
54                 RicInstance instance = instanceConfig.getInstance(instanceKey);
55                 String url = new DefaultUriBuilderFactory(instance.getPltUrlPrefix().trim()).builder()
56                                 .path(this.urlSuffix.trim()).build().normalize().toString();
57                 logger.debug("apiClient URL {}", url);
58                 return new ApiClient(new RestTemplate()).setBasePath(url);
59         }
60
61         public A1MediatorApi getA1MediatorApi(String instanceKey) {
62                 return new A1MediatorApi(apiClient(instanceKey));
63         }
64
65 }