X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=policy-agent%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fpolicyagent%2Fclients%2FAsyncRestClient.java;h=83592ecf9bbbb51bb231eb36623abf2ca88baee4;hb=776c8156aae66f505ab234063923e66e7e610a01;hp=45c7afa20033dafd8ee2c8c3995664cb8942f1dd;hpb=581b06ef3c0536416575de7fb7315ba95b849c92;p=nonrtric.git diff --git a/policy-agent/src/main/java/org/oransc/policyagent/clients/AsyncRestClient.java b/policy-agent/src/main/java/org/oransc/policyagent/clients/AsyncRestClient.java index 45c7afa2..83592ecf 100644 --- a/policy-agent/src/main/java/org/oransc/policyagent/clients/AsyncRestClient.java +++ b/policy-agent/src/main/java/org/oransc/policyagent/clients/AsyncRestClient.java @@ -17,55 +17,128 @@ * limitations under the License. * ========================LICENSE_END=================================== */ + package org.oransc.policyagent.clients; -import org.springframework.http.HttpStatus; +import io.netty.channel.ChannelOption; +import io.netty.handler.timeout.ReadTimeoutHandler; +import io.netty.handler.timeout.WriteTimeoutHandler; + +import java.lang.invoke.MethodHandles; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; import org.springframework.http.MediaType; +import org.springframework.http.ResponseEntity; +import org.springframework.http.client.reactive.ReactorClientHttpConnector; +import org.springframework.lang.Nullable; import org.springframework.web.reactive.function.client.WebClient; +import org.springframework.web.reactive.function.client.WebClient.RequestHeadersSpec; + import reactor.core.publisher.Mono; +import reactor.netty.http.client.HttpClient; +import reactor.netty.tcp.TcpClient; +/** + * Generic reactive REST client. + */ public class AsyncRestClient { + private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass()); private final WebClient client; + private final String baseUrl; - private static class AsyncRestClientException extends Exception { + public AsyncRestClient(String baseUrl) { - private static final long serialVersionUID = 1L; + TcpClient tcpClient = TcpClient.create() // + .option(ChannelOption.CONNECT_TIMEOUT_MILLIS, 10_000) // + .doOnConnected(connection -> { + connection.addHandler(new ReadTimeoutHandler(10)); + connection.addHandler(new WriteTimeoutHandler(30)); + }); + HttpClient httpClient = HttpClient.from(tcpClient); + ReactorClientHttpConnector connector = new ReactorClientHttpConnector(httpClient); - public AsyncRestClientException(String message) { - super(message); - } + this.client = WebClient.builder() // + .clientConnector(connector) // + .baseUrl(baseUrl) // + .build(); + + this.baseUrl = baseUrl; } - public AsyncRestClient(String baseUrl) { - this.client = WebClient.create(baseUrl); + public Mono> postForEntity(String uri, @Nullable String body) { + logger.debug("POST uri = '{}{}''", baseUrl, uri); + Mono bodyProducer = body != null ? Mono.just(body) : Mono.empty(); + RequestHeadersSpec request = client.post() // + .uri(uri) // + .contentType(MediaType.APPLICATION_JSON) // + .body(bodyProducer, String.class); + return retrieve(request); } - public Mono put(String uri, String body) { - return client.put() // + public Mono post(String uri, @Nullable String body) { + return postForEntity(uri, body) // + .flatMap(this::toBody); + } + + public Mono postWithAuthHeader(String uri, String body, String username, String password) { + logger.debug("POST (auth) uri = '{}{}''", baseUrl, uri); + RequestHeadersSpec request = client.post() // .uri(uri) // + .headers(headers -> headers.setBasicAuth(username, password)) // .contentType(MediaType.APPLICATION_JSON) // - .syncBody(body) // - .retrieve() // - .onStatus(HttpStatus::isError, - response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) // - .bodyToMono(String.class); + .bodyValue(body); + return retrieve(request) // + .flatMap(this::toBody); } - public Mono get(String uri) { - return client.get() // + public Mono> putForEntity(String uri, String body) { + logger.debug("PUT uri = '{}{}''", baseUrl, uri); + RequestHeadersSpec request = client.put() // .uri(uri) // - .retrieve() // - .onStatus(HttpStatus::isError, - response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) // - .bodyToMono(String.class); + .contentType(MediaType.APPLICATION_JSON) // + .bodyValue(body); + return retrieve(request); + } + + public Mono put(String uri, String body) { + return putForEntity(uri, body) // + .flatMap(this::toBody); + } + + public Mono> getForEntity(String uri) { + logger.debug("GET uri = '{}{}''", baseUrl, uri); + RequestHeadersSpec request = client.get().uri(uri); + return retrieve(request); + } + + public Mono get(String uri) { + return getForEntity(uri) // + .flatMap(this::toBody); + } + + public Mono> deleteForEntity(String uri) { + logger.debug("DELETE uri = '{}{}''", baseUrl, uri); + RequestHeadersSpec request = client.delete().uri(uri); + return retrieve(request); } public Mono delete(String uri) { - return client.delete() // - .uri(uri) // - .retrieve() // - .onStatus(HttpStatus::isError, - response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) // - .bodyToMono(String.class); + return deleteForEntity(uri) // + .flatMap(this::toBody); + } + + private Mono> retrieve(RequestHeadersSpec request) { + return request.retrieve() // + .toEntity(String.class); } + + Mono toBody(ResponseEntity entity) { + if (entity.getBody() == null) { + return Mono.just(""); + } else { + return Mono.just(entity.getBody()); + } + } + }