Merge "[AAI] Fix doc config files"
[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 javax.annotation.PostConstruct;
24 import javax.net.ssl.SSLContext;
25
26 import org.apache.http.client.HttpClient;
27 import org.apache.http.impl.client.HttpClients;
28 import org.apache.http.ssl.SSLContextBuilder;
29 import org.onap.aai.aailog.filter.RestClientLoggingInterceptor;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
33 import org.springframework.util.ResourceUtils;
34 import org.springframework.web.client.RestTemplate;
35
36 public abstract class OneWaySSLRestClient extends RestClient {
37
38     private static Logger logger = LoggerFactory.getLogger(OneWaySSLRestClient.class);
39
40     private RestTemplate restTemplate;
41
42     @PostConstruct
43     public void init() throws Exception {
44         restTemplate = new RestTemplate();
45         restTemplate.setRequestFactory(this.getHttpRequestFactory());
46
47         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
48         RestClientLoggingInterceptor loggingInterceptor = new RestClientLoggingInterceptor();
49         restTemplate.getInterceptors().add(loggingInterceptor);
50
51     }
52
53     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
54         return new HttpComponentsClientHttpRequestFactory(this.getClient());
55     }
56
57     protected HttpClient getClient() throws Exception {
58
59         char[] trustStorePassword = getTruststorePassword();
60
61         String trustStore = getTruststorePath();
62
63         SSLContext sslContext = SSLContextBuilder.create()
64                 .loadTrustMaterial(ResourceUtils.getFile(trustStore), trustStorePassword).build();
65
66         HttpClient client =
67                 HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier((s, sslSession) -> true).build();
68
69         return client;
70     }
71
72     protected abstract String getTruststorePath();
73
74     protected abstract char[] getTruststorePassword();
75
76     @Override
77     public RestTemplate getRestTemplate() {
78         return restTemplate;
79     }
80
81 }