modify push policy message
[holmes/common.git] / holmes-actions / src / main / java / org / onap / holmes / common / utils / HttpsUtils.java
1 /**
2  * Copyright 2017 ZTE Corporation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except
5  * in compliance with the License. You may obtain a copy of the License at
6  *
7  * http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software distributed under the License
10  * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
11  * or implied. See the License for the specific language governing permissions and limitations under
12  * the License.
13  */
14
15 package org.onap.holmes.common.utils;
16
17 import java.io.IOException;
18 import java.security.cert.CertificateException;
19 import java.security.cert.X509Certificate;
20 import java.util.ArrayList;
21 import java.util.HashMap;
22 import java.util.List;
23 import java.util.Map;
24 import lombok.extern.slf4j.Slf4j;
25 import org.apache.http.Consts;
26 import org.apache.http.HeaderIterator;
27 import org.apache.http.HttpEntity;
28 import org.apache.http.HttpResponse;
29 import org.apache.http.HttpStatus;
30 import org.apache.http.NameValuePair;
31 import org.apache.http.ParseException;
32 import org.apache.http.client.entity.UrlEncodedFormEntity;
33 import org.apache.http.client.methods.HttpGet;
34 import org.apache.http.client.methods.HttpPost;
35 import org.apache.http.client.methods.HttpRequestBase;
36 import org.apache.http.config.Registry;
37 import org.apache.http.config.RegistryBuilder;
38 import org.apache.http.conn.socket.ConnectionSocketFactory;
39 import org.apache.http.conn.socket.PlainConnectionSocketFactory;
40 import org.apache.http.conn.ssl.NoopHostnameVerifier;
41 import org.apache.http.conn.ssl.SSLConnectionSocketFactory;
42 import org.apache.http.conn.ssl.TrustStrategy;
43 import org.apache.http.impl.client.CloseableHttpClient;
44 import org.apache.http.impl.client.HttpClients;
45 import org.apache.http.impl.conn.PoolingHttpClientConnectionManager;
46 import org.apache.http.message.BasicNameValuePair;
47 import org.apache.http.ssl.SSLContextBuilder;
48 import org.apache.http.util.EntityUtils;
49 import org.onap.holmes.common.exception.CorrelationException;
50
51 @Slf4j
52 public class HttpsUtils {
53     private static final String HTTP = "http";
54     private static final String HTTPS = "https";
55     private static SSLConnectionSocketFactory sslConnectionSocketFactory = null;
56     private static PoolingHttpClientConnectionManager connectionManager = null;
57     private static SSLContextBuilder sslContextBuilder = null;
58     static {
59         try {
60             sslContextBuilder = new SSLContextBuilder();
61             sslContextBuilder.loadTrustMaterial(null, new TrustStrategy() {
62                 public boolean isTrusted(X509Certificate[] x509Certificates, String s)
63                         throws CertificateException {
64                     return true;
65                 }
66             });
67             sslConnectionSocketFactory = new SSLConnectionSocketFactory(sslContextBuilder.build(),
68                     new String[]{"SSLv2Hello", "SSLv3", "TLSv1", "TLSv1.2"}, null,
69                     NoopHostnameVerifier.INSTANCE);
70             Registry<ConnectionSocketFactory> registry = RegistryBuilder.<ConnectionSocketFactory>create()
71                     .register(HTTP, new PlainConnectionSocketFactory())
72                     .register(HTTPS, sslConnectionSocketFactory)
73                     .build();
74             connectionManager = new PoolingHttpClientConnectionManager(registry);
75             connectionManager.setMaxTotal(200);
76         } catch (Exception e) {
77             log.error("Failed to init ssl builder" + e.getMessage());
78         }
79     }
80
81     public static String post(String url, Map<String, String> header, Map<String, String> param,
82             HttpEntity entity) throws Exception {
83         HttpResponse httpResponse = null;
84         try {
85             CloseableHttpClient httpClient = getHttpClient();
86             HttpPost httpPost = getHttpPost(url, header, param, entity);
87             httpResponse = getHttpResponse(httpClient, httpPost);
88         } catch (Exception e) {
89             throw new CorrelationException("Failed to use post method query data from server");
90         }
91         return getResponseEntity(httpResponse);
92     }
93
94     public static String get(String url, Map<String, String> header) throws Exception {
95         HttpResponse httpResponse = null;
96         try {
97             CloseableHttpClient httpClient = getHttpClient();
98             HttpGet httpGet = getHttpGet(url, header);
99             httpResponse = getHttpResponse(httpClient, httpGet);
100         } catch (Exception e) {
101             throw new CorrelationException("Failed to use get method query data from server");
102         }
103         return getResponseEntity(httpResponse);
104     }
105
106     private static HttpPost getHttpPost(String url, Map<String, String> header,
107             Map<String, String> param, HttpEntity entity) {
108         HttpPost httpPost = new HttpPost(url);
109         if (!header.isEmpty()) {
110             for (Map.Entry<String, String> entry : header.entrySet()) {
111                 httpPost.addHeader(entry.getKey(), entry.getValue());
112             }
113         }
114         if (!param.isEmpty()) {
115             List<NameValuePair> formparams = new ArrayList<>();
116             for (Map.Entry<String, String> entry : param.entrySet()) {
117                 formparams.add(new BasicNameValuePair(entry.getKey(), entry.getValue()));
118             }
119             UrlEncodedFormEntity urlEncodedFormEntity = new UrlEncodedFormEntity(formparams,
120                     Consts.UTF_8);
121             httpPost.setEntity(urlEncodedFormEntity);
122         }
123         if (entity != null) {
124             httpPost.setEntity(entity);
125         }
126         return httpPost;
127     }
128
129     private static HttpGet getHttpGet(String url, Map<String, String> header) {
130         HttpGet httpGet = new HttpGet(url);
131         if (!header.isEmpty()) {
132             for (Map.Entry<String, String> entry : header.entrySet()) {
133                 httpGet.addHeader(entry.getKey(), entry.getValue());
134             }
135         }
136         return httpGet;
137     }
138
139     private static String getResponseEntity(HttpResponse httpResponse) throws IOException {
140         String result = "";
141         if (httpResponse != null) {
142             int statusCode = httpResponse.getStatusLine().getStatusCode();
143             if (statusCode == HttpStatus.SC_OK) {
144                 HttpEntity resEntity = httpResponse.getEntity();
145                 result = EntityUtils.toString(resEntity);
146             }
147         }
148         return result;
149     }
150
151     private static HttpResponse getHttpResponse(CloseableHttpClient httpClient, HttpRequestBase httpRequest)
152             throws Exception {
153         HttpResponse httpResponse = null;
154         try {
155             httpResponse = httpClient.execute(httpRequest);
156         } catch (Exception e) {
157             throw new CorrelationException("Failed to get data from server");
158         } finally {
159             if (httpClient != null) {
160                 httpClient.close();
161             }
162         }
163         return httpResponse;
164     }
165
166     private static CloseableHttpClient getHttpClient() throws Exception {
167         CloseableHttpClient httpClient = HttpClients.custom()
168                 .setSSLSocketFactory(sslConnectionSocketFactory)
169                 .setConnectionManager(connectionManager)
170                 .setConnectionManagerShared(true)
171                 .build();
172         return httpClient;
173     }
174 }