Bugfix, no response sent to Dmaap for PUT
[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
21 package org.oransc.policyagent.clients;
22
23 import java.lang.invoke.MethodHandles;
24
25 import org.slf4j.Logger;
26 import org.slf4j.LoggerFactory;
27 import org.springframework.http.HttpStatus;
28 import org.springframework.http.MediaType;
29 import org.springframework.web.reactive.function.client.WebClient;
30 import reactor.core.publisher.Mono;
31
32 public class AsyncRestClient {
33     private static final Logger logger = LoggerFactory.getLogger(MethodHandles.lookup().lookupClass());
34     private final WebClient client;
35     private final String baseUrl;
36
37     public class AsyncRestClientException extends Exception {
38
39         private static final long serialVersionUID = 1L;
40
41         public AsyncRestClientException(String message) {
42             super(message);
43         }
44     }
45
46     public AsyncRestClient(String baseUrl) {
47         this.client = WebClient.create(baseUrl);
48         this.baseUrl = baseUrl;
49     }
50
51     public Mono<String> post(String uri, String body) {
52         logger.debug("POST uri = '{}{}''", baseUrl, uri);
53         return client.post() //
54             .uri(uri) //
55             .contentType(MediaType.APPLICATION_JSON) //
56             .bodyValue(body) //
57             .retrieve() //
58             .onStatus(HttpStatus::isError,
59                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
60             .bodyToMono(String.class) //
61             .defaultIfEmpty("");
62     }
63
64     public Mono<String> postWithAuthHeader(String uri, String body, String username, String password) {
65         logger.debug("POST (auth) uri = '{}{}''", baseUrl, uri);
66         return client.post() //
67             .uri(uri) //
68             .headers(headers -> headers.setBasicAuth(username, password)) //
69             .contentType(MediaType.APPLICATION_JSON) //
70             .bodyValue(body) //
71             .retrieve() //
72             .onStatus(HttpStatus::isError,
73                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
74             .bodyToMono(String.class) //
75             .defaultIfEmpty("");
76     }
77
78     public Mono<String> put(String uri, String body) {
79         logger.debug("PUT uri = '{}{}''", baseUrl, uri);
80         return client.put() //
81             .uri(uri) //
82             .contentType(MediaType.APPLICATION_JSON) //
83             .bodyValue(body) //
84             .retrieve() //
85             .onStatus(HttpStatus::isError,
86                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
87             .bodyToMono(String.class) //
88             .defaultIfEmpty("");
89     }
90
91     public Mono<String> get(String uri) {
92         logger.debug("GET uri = '{}{}''", baseUrl, uri);
93         return client.get() //
94             .uri(uri) //
95             .retrieve() //
96             .onStatus(HttpStatus::isError,
97                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
98             .bodyToMono(String.class) //
99             .defaultIfEmpty("");
100     }
101
102     public Mono<String> delete(String uri) {
103         logger.debug("DELETE uri = '{}{}''", baseUrl, uri);
104         return client.delete() //
105             .uri(uri) //
106             .retrieve() //
107             .onStatus(HttpStatus::isError,
108                 response -> Mono.error(new AsyncRestClientException(response.statusCode().toString()))) //
109             .bodyToMono(String.class) //
110             .defaultIfEmpty("");
111     }
112 }