Enhancements for the aai-common library
[aai/aai-common.git] / aai-rest / src / main / java / org / onap / aai / restclient / TwoWaySSLRestClient.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
26 import java.io.File;
27 import java.io.FileInputStream;
28 import java.io.InputStream;
29 import java.security.KeyStore;
30
31 import javax.annotation.PostConstruct;
32 import javax.net.ssl.SSLContext;
33
34 import org.apache.http.client.HttpClient;
35 import org.apache.http.impl.client.HttpClients;
36 import org.apache.http.ssl.SSLContextBuilder;
37 import org.springframework.boot.web.client.RestTemplateBuilder;
38 import org.springframework.http.client.HttpComponentsClientHttpRequestFactory;
39 import org.springframework.util.ResourceUtils;
40 import org.springframework.web.client.RestTemplate;
41 import org.onap.aai.aailog.filter.RestClientLoggingInterceptor;
42
43 public abstract class TwoWaySSLRestClient extends RestClient {
44
45     private static Logger logger = LoggerFactory.getLogger(TwoWaySSLRestClient.class);
46
47     private RestTemplate restTemplate;
48
49     @PostConstruct
50     public void init() throws Exception {
51         restTemplate =
52                 new RestTemplateBuilder().requestFactory(this.getHttpRequestFactory()).build();
53
54         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
55         RestClientLoggingInterceptor loggingInterceptor = new RestClientLoggingInterceptor();
56         restTemplate.getInterceptors().add(loggingInterceptor);
57
58     }
59
60     protected HttpComponentsClientHttpRequestFactory getHttpRequestFactory() throws Exception {
61         return new HttpComponentsClientHttpRequestFactory(this.getClient());
62     }
63
64     protected HttpClient getClient() throws Exception {
65
66         char[] keyStorePassword = getKeystorePassword();
67         char[] trustStorePassword = getTruststorePassword();
68
69         String keyStore = getKeystorePath();
70         String trustStore = getTruststorePath();
71
72         SSLContext sslContext =
73             SSLContextBuilder.create().loadKeyMaterial(loadPfx(keyStore, keyStorePassword), keyStorePassword)
74                 .loadTrustMaterial(ResourceUtils.getFile(trustStore), trustStorePassword).build();
75
76         HttpClient client =
77             HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier((s, sslSession) -> true).build();
78
79         return client;
80     }
81
82     private KeyStore loadPfx(String file, char[] password) throws Exception {
83         KeyStore keyStore = KeyStore.getInstance("PKCS12");
84         File key = ResourceUtils.getFile(file);
85         try (InputStream in = new FileInputStream(key)) {
86             keyStore.load(in, password);
87         }
88         return keyStore;
89     }
90
91     protected abstract String getKeystorePath();
92
93     protected abstract String getTruststorePath();
94
95     protected abstract char[] getTruststorePassword();
96
97     protected abstract char[] getKeystorePassword();
98
99     @Override
100     public RestTemplate getRestTemplate() {
101         return restTemplate;
102     }
103
104 }