3461876d1de3b8a78a200c7c9b3e8901e2668e9a
[ccsdk/oran.git] /
1 /*-
2  * ========================LICENSE_START=================================
3  * ONAP : ccsdk oran
4  * ======================================================================
5  * Copyright (C) 2019-2020 Nordix Foundation. All rights reserved.
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
21 package org.onap.ccsdk.oran.a1policymanagementservice.clients;
22
23 import io.netty.channel.ChannelOption;
24 import io.netty.handler.ssl.SslContext;
25 import io.netty.handler.timeout.ReadTimeoutHandler;
26 import io.netty.handler.timeout.WriteTimeoutHandler;
27
28 import java.lang.invoke.MethodHandles;
29 import java.util.concurrent.atomic.AtomicInteger;
30
31 import org.onap.ccsdk.oran.a1policymanagementservice.configuration.WebClientConfig.HttpProxyConfig;
32 import org.slf4j.Logger;
33 import org.slf4j.LoggerFactory;
34 import org.springframework.http.MediaType;
35 import org.springframework.http.ResponseEntity;
36 import org.springframework.http.client.reactive.ReactorClientHttpConnector;
37 import org.springframework.lang.Nullable;
38 import org.springframework.web.reactive.function.client.ExchangeStrategies;
39 import org.springframework.web.reactive.function.client.WebClient;
40 import org.springframework.web.reactive.function.client.WebClient.RequestHeadersSpec;
41 import org.springframework.web.reactive.function.client.WebClientResponseException;
42
43 import reactor.core.publisher.Mono;
44 import reactor.netty.http.client.HttpClient;
45
46 /**
47  * Generic reactive REST client.
48  */
49 public class AsyncRestClient {
50
51     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
52     private WebClient webClient = null;
53     private final String baseUrl;
54     private static final AtomicInteger sequenceNumber = new AtomicInteger();
55     private final SslContext sslContext;
56     private final HttpProxyConfig httpProxyConfig;
57
58     public AsyncRestClient(String baseUrl, @Nullable SslContext sslContext, @Nullable HttpProxyConfig httpProxyConfig) {
59         this.baseUrl = baseUrl;
60         this.sslContext = sslContext;
61         this.httpProxyConfig = httpProxyConfig;
62     }
63
64     public Mono<ResponseEntity<String>> postForEntity(String uri, @Nullable String body) {
65         Object traceTag = createTraceTag();
66         logger.debug("{} POST uri = '{}{}'", traceTag, baseUrl, uri);
67         logger.trace("{} POST body: {}", traceTag, body);
68         Mono<String> bodyProducer = body != null ? Mono.just(body) : Mono.empty();
69
70         RequestHeadersSpec<?> request = getWebClient() //
71                 .post() //
72                 .uri(uri) //
73                 .contentType(MediaType.APPLICATION_JSON) //
74                 .body(bodyProducer, String.class);
75         return retrieve(traceTag, request);
76     }
77
78     public Mono<String> post(String uri, @Nullable String body) {
79         return postForEntity(uri, body) //
80                 .map(this::toBody);
81     }
82
83     public Mono<String> postWithAuthHeader(String uri, String body, String username, String password) {
84         Object traceTag = createTraceTag();
85         logger.debug("{} POST (auth) uri = '{}{}'", traceTag, baseUrl, uri);
86         logger.trace("{} POST body: {}", traceTag, body);
87
88         RequestHeadersSpec<?> request = getWebClient() //
89                 .post() //
90                 .uri(uri) //
91                 .headers(headers -> headers.setBasicAuth(username, password)) //
92                 .contentType(MediaType.APPLICATION_JSON) //
93                 .bodyValue(body);
94         return retrieve(traceTag, request) //
95                 .map(this::toBody);
96     }
97
98     public Mono<ResponseEntity<String>> putForEntity(String uri, String body) {
99         Object traceTag = createTraceTag();
100         logger.debug("{} PUT uri = '{}{}'", traceTag, baseUrl, uri);
101         logger.trace("{} PUT body: {}", traceTag, body);
102
103         RequestHeadersSpec<?> request = getWebClient() //
104                 .put() //
105                 .uri(uri) //
106                 .contentType(MediaType.APPLICATION_JSON) //
107                 .bodyValue(body);
108         return retrieve(traceTag, request);
109     }
110
111     public Mono<ResponseEntity<String>> putForEntity(String uri) {
112         Object traceTag = createTraceTag();
113         logger.debug("{} PUT uri = '{}{}'", traceTag, baseUrl, uri);
114         logger.trace("{} PUT body: <empty>", traceTag);
115         RequestHeadersSpec<?> request = getWebClient() //
116                 .put() //
117                 .uri(uri);
118         return retrieve(traceTag, request);
119     }
120
121     public Mono<String> put(String uri, String body) {
122         return putForEntity(uri, body) //
123                 .map(this::toBody);
124     }
125
126     public Mono<ResponseEntity<String>> getForEntity(String uri) {
127         Object traceTag = createTraceTag();
128         logger.debug("{} GET uri = '{}{}'", traceTag, baseUrl, uri);
129         RequestHeadersSpec<?> request = getWebClient() //
130                 .get() //
131                 .uri(uri);
132         return retrieve(traceTag, request);
133     }
134
135     public Mono<String> get(String uri) {
136         return getForEntity(uri) //
137                 .map(this::toBody);
138     }
139
140     public Mono<ResponseEntity<String>> deleteForEntity(String uri) {
141         Object traceTag = createTraceTag();
142         logger.debug("{} DELETE uri = '{}{}'", traceTag, baseUrl, uri);
143         RequestHeadersSpec<?> request = getWebClient() //
144                 .delete() //
145                 .uri(uri);
146         return retrieve(traceTag, request);
147     }
148
149     public Mono<String> delete(String uri) {
150         return deleteForEntity(uri) //
151                 .map(this::toBody);
152     }
153
154     private Mono<ResponseEntity<String>> retrieve(Object traceTag, RequestHeadersSpec<?> request) {
155         final Class<String> clazz = String.class;
156         return request.retrieve() //
157                 .toEntity(clazz) //
158                 .doOnNext(entity -> logReceivedData(traceTag, entity)) //
159                 .doOnError(throwable -> onHttpError(traceTag, throwable));
160     }
161
162     private void logReceivedData(Object traceTag, ResponseEntity<String> entity) {
163         logger.trace("{} Received: {} {}", traceTag, entity.getBody(), entity.getHeaders().getContentType());
164     }
165
166     private static Object createTraceTag() {
167         return sequenceNumber.incrementAndGet();
168     }
169
170     private void onHttpError(Object traceTag, Throwable t) {
171         if (t instanceof WebClientResponseException) {
172             WebClientResponseException exception = (WebClientResponseException) t;
173             logger.debug("{} HTTP error status = '{}', body '{}'", traceTag, exception.getStatusCode(),
174                     exception.getResponseBodyAsString());
175         } else {
176             logger.debug("{} HTTP error {}", traceTag, t.getMessage());
177         }
178     }
179
180     private String toBody(ResponseEntity<String> entity) {
181         if (entity.getBody() == null) {
182             return "";
183         } else {
184             return entity.getBody();
185         }
186     }
187
188     private boolean isHttpProxyConfigured() {
189         return httpProxyConfig != null && httpProxyConfig.httpProxyPort() > 0
190                 && !httpProxyConfig.httpProxyHost().isEmpty();
191     }
192
193     private HttpClient buildHttpClient() {
194         HttpClient httpClient = HttpClient.create() //
195                 .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 10_000) //
196                 .doOnConnected(connection -> {
197                     connection.addHandlerLast(new ReadTimeoutHandler(30));
198                     connection.addHandlerLast(new WriteTimeoutHandler(30));
199                 });
200
201         if (this.sslContext != null) {
202             httpClient = httpClient.secure(ssl -> ssl.sslContext(sslContext));
203         }
204
205         if (isHttpProxyConfigured()) {
206             httpClient = httpClient.proxy(proxy -> proxy.type(httpProxyConfig.httpProxyType()) //
207                     .host(httpProxyConfig.httpProxyHost()) //
208                     .port(httpProxyConfig.httpProxyPort()));
209         }
210         return httpClient;
211     }
212
213     private WebClient buildWebClient(String baseUrl) {
214         final HttpClient httpClient = buildHttpClient();
215         ExchangeStrategies exchangeStrategies = ExchangeStrategies.builder() //
216                 .codecs(configurer -> configurer.defaultCodecs().maxInMemorySize(-1)) //
217                 .build();
218         return WebClient.builder() //
219                 .clientConnector(new ReactorClientHttpConnector(httpClient)) //
220                 .baseUrl(baseUrl) //
221                 .exchangeStrategies(exchangeStrategies) //
222                 .build();
223     }
224
225     private WebClient getWebClient() {
226         if (this.webClient == null) {
227             this.webClient = buildWebClient(baseUrl);
228         }
229         return this.webClient;
230     }
231 }