Move back to spring-boot 1.5 for bugfix
[aai/aai-common.git] / aai-rest / src / main / java / org / onap / aai / restclient / OneWaySSLRestClient.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2019 AT&T Intellectual Property. All rights reserved.
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.onap.aai.restclient;
22
23 import org.slf4j.Logger;
24 import org.slf4j.LoggerFactory;
25 import org.apache.http.client.HttpClient;
26 import org.apache.http.impl.client.HttpClients;
27 import org.apache.http.ssl.SSLContextBuilder;
28 import org.onap.aai.aailog.filter.RestClientLoggingInterceptor;
29 import org.springframework.boot.web.client.RestTemplateBuilder;
30 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
31 import org.springframework.util.ResourceUtils;
32 import org.springframework.web.client.RestTemplate;
33
34 import javax.annotation.PostConstruct;
35 import javax.net.ssl.SSLContext;
36
37 public abstract class OneWaySSLRestClient extends RestClient {
38
39     private static Logger logger = LoggerFactory.getLogger(OneWaySSLRestClient.class);
40
41     private RestTemplate restTemplate;
42
43     @PostConstruct
44     public void init() throws Exception {
45         restTemplate =
46             new RestTemplateBuilder().requestFactory(this.getHttpRequestFactory()).build();
47
48         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
49         RestClientLoggingInterceptor loggingInterceptor = new RestClientLoggingInterceptor();
50         restTemplate.getInterceptors().add(loggingInterceptor);
51
52     }
53
54     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
55         return new HttpComponentsClientHttpRequestFactory(this.getClient());
56     }
57
58     protected HttpClient getClient() throws Exception {
59
60         char[] trustStorePassword = getTruststorePassword();
61
62         String trustStore = getTruststorePath();
63
64         SSLContext sslContext =
65             SSLContextBuilder.create()
66                 .loadTrustMaterial(ResourceUtils.getFile(trustStore), trustStorePassword).build();
67
68         HttpClient client =
69             HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier((s, sslSession) -> true).build();
70
71         return client;
72     }
73
74     protected abstract String getTruststorePath();
75
76     protected abstract char[] getTruststorePassword();
77
78     @Override
79     public RestTemplate getRestTemplate() {
80         return restTemplate;
81     }
82
83 }