Add SDNR A1 client in policy-agent
[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> post(String uri, String body) {
49         return client.post() //
50             .uri(uri) //
51             .contentType(MediaType.APPLICATION_JSON) //
52             .bodyValue(body) //
53             .retrieve() //
54             .onStatus(HttpStatus::isError,
55                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
56             .bodyToMono(String.class);
57     }
58
59     public Mono<String> postWithAuthHeader(String uri, String body, String username, String password) {
60         return client.post() //
61             .uri(uri) //
62             .headers(headers -> headers.setBasicAuth(username, password)) //
63             .contentType(MediaType.APPLICATION_JSON) //
64             .bodyValue(body) //
65             .retrieve() //
66             .onStatus(HttpStatus::isError,
67                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
68             .bodyToMono(String.class);
69     }
70
71     public Mono<String> put(String uri, String body) {
72         logger.debug("PUT uri = '{}''", uri);
73         return client.put() //
74             .uri(uri) //
75             .contentType(MediaType.APPLICATION_JSON) //
76             .bodyValue(body) //
77             .retrieve() //
78             .onStatus(HttpStatus::isError,
79                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
80             .bodyToMono(String.class);
81     }
82
83     public Mono<String> get(String uri) {
84         logger.debug("GET uri = '{}''", uri);
85         return client.get() //
86             .uri(uri) //
87             .retrieve() //
88             .onStatus(HttpStatus::isError,
89                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
90             .bodyToMono(String.class);
91     }
92
93     public Mono<String> delete(String uri) {
94         logger.debug("DELETE uri = '{}''", uri);
95         return client.delete() //
96             .uri(uri) //
97             .retrieve() //
98             .onStatus(HttpStatus::isError,
99                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
100             .bodyToMono(String.class);
101     }
102 }