fix oauth code
[ccsdk/features.git] / sdnr / wt / oauth-provider / oauth-core / src / main / java / org / onap / ccsdk / features / sdnr / wt / oauthprovider / http / client / MappingBaseHttpClient.java
1 /*
2  * ============LICENSE_START=======================================================
3  * ONAP : ccsdk features
4  * ================================================================================
5  * Copyright (C) 2021 highstreet technologies GmbH Intellectual Property.
6  * All rights reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  *
12  *     http://www.apache.org/licenses/LICENSE-2.0
13  *
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  *
21  */
22 package org.onap.ccsdk.features.sdnr.wt.oauthprovider.http.client;
23
24 import java.io.IOException;
25 import java.util.Map;
26 import java.util.Optional;
27 import org.onap.ccsdk.features.sdnr.wt.common.http.BaseHTTPClient;
28 import org.slf4j.Logger;
29 import org.slf4j.LoggerFactory;
30
31 public class MappingBaseHttpClient extends BaseHTTPClient {
32
33     private static Logger LOG = LoggerFactory.getLogger(MappingBaseHttpClient.class);
34
35     public MappingBaseHttpClient(String base, boolean trustAllCerts) {
36         super(base, trustAllCerts);
37     }
38
39     public MappingBaseHttpClient(String host) {
40         super(host);
41     }
42
43     public <T> Optional<MappedBaseHttpResponse<String>> sendMappedRequest(String uri, String method, String body,
44             Map<String, String> headers) {
45         return this.sendMappedRequest(uri, method, body != null ? body.getBytes(CHARSET) : null, headers, String.class);
46     }
47
48     public <T> Optional<MappedBaseHttpResponse<T>> sendMappedRequest(String uri, String method, String body,
49             Map<String, String> headers, Class<T> clazz) {
50         return this.sendMappedRequest(uri, method, body != null ? body.getBytes(CHARSET) : null, headers, clazz);
51     }
52
53     protected <T> Optional<MappedBaseHttpResponse<T>> sendMappedRequest(String uri, String method, byte[] body,
54             Map<String, String> headers, Class<T> clazz) {
55         try {
56             return Optional.of(new MappedBaseHttpResponse<T>(this.sendRequest(uri, method, body, headers), clazz));
57         } catch (IOException e) {
58             LOG.warn("problem during request for {}: ", uri, e);
59         }
60         return Optional.empty();
61     }
62
63 }