e2e5d64d1b18ff7ea4ed16346ffc1945d3e82900
[nonrtric.git] / policy-agent / src / main / java / org / oransc / policyagent / clients / AsyncRestClient.java
1 /*-
2  * ========================LICENSE_START=================================
3  * O-RAN-SC
4  * %%
5  * Copyright (C) 2019 Nordix Foundation
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.policyagent.clients;
21
22 import java.lang.invoke.MethodHandles;
23
24 import org.slf4j.Logger;
25 import org.slf4j.LoggerFactory;
26 import org.springframework.http.HttpStatus;
27 import org.springframework.http.MediaType;
28 import org.springframework.web.reactive.function.client.WebClient;
29 import reactor.core.publisher.Mono;
30
31 public class AsyncRestClient {
32     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
33     private final WebClient client;
34
35     private static class AsyncRestClientException extends Exception {
36
37         private static final long serialVersionUID = 1L;
38
39         public AsyncRestClientException(String message) {
40             super(message);
41         }
42     }
43
44     public AsyncRestClient(String baseUrl) {
45         this.client = WebClient.create(baseUrl);
46     }
47
48     public Mono<String> put(String uri, String body) {
49         logger.debug("PUT uri = '{}''", uri);
50         return client.put() //
51             .uri(uri) //
52             .contentType(MediaType.APPLICATION_JSON) //
53             .syncBody(body) //
54             .retrieve() //
55             .onStatus(HttpStatus::isError,
56                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
57             .bodyToMono(String.class);
58     }
59
60     public Mono<String> get(String uri) {
61         logger.debug("GET uri = '{}''", uri);
62         return client.get() //
63             .uri(uri) //
64             .retrieve() //
65             .onStatus(HttpStatus::isError,
66                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
67             .bodyToMono(String.class);
68     }
69
70     public Mono<String> delete(String uri) {
71         logger.debug("DELETE uri = '{}''", uri);
72         return client.delete() //
73             .uri(uri) //
74             .retrieve() //
75             .onStatus(HttpStatus::isError,
76                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
77             .bodyToMono(String.class);
78     }
79 }