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