30545dba9946f5fe540a94dce564a07b2563a6bc
[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 com.att.eelf.configuration.EELFLogger;
24 import com.att.eelf.configuration.EELFManager;
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
42 public abstract class OneWaySSLRestClient extends RestClient {
43
44     private static EELFLogger logger = EELFManager.getInstance().getLogger(OneWaySSLRestClient.class);
45
46     private RestTemplate restTemplate;
47
48     @PostConstruct
49     public void init() throws Exception {
50
51         char[] trustStorePassword = getTruststorePassword();
52
53         String trustStore = getTruststorePath();
54
55         SSLContext sslContext = SSLContextBuilder.create()
56                 .loadTrustMaterial(ResourceUtils.getFile(trustStore), trustStorePassword).build();
57
58         HttpClient client =
59                 HttpClients.custom().setSSLContext(sslContext).setSSLHostnameVerifier((s, sslSession) -> true).build();
60
61         restTemplate =
62                 new RestTemplateBuilder().requestFactory(new HttpComponentsClientHttpRequestFactory(client)).build();
63
64         restTemplate.setErrorHandler(new RestClientResponseErrorHandler());
65
66     }
67
68     protected abstract String getTruststorePath();
69
70     protected abstract char[] getTruststorePassword();
71
72     @Override
73     public RestTemplate getRestTemplate() {
74         return restTemplate;
75     }
76
77 }