e74893f714bb04c990277bdbc0707ba5740bd47f
[sdc.git] / catalog-fe / src / main / java / org / openecomp / sdc / fe / servlets / SSLProxyServlet.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 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 package org.openecomp.sdc.fe.servlets;
21
22 import javax.servlet.ServletException;
23 import org.eclipse.jetty.client.HttpClient;
24 import org.eclipse.jetty.proxy.ProxyServlet;
25 import org.eclipse.jetty.util.ssl.SslContextFactory;
26 import org.openecomp.sdc.common.api.Constants;
27 import org.openecomp.sdc.fe.config.Configuration;
28 import org.openecomp.sdc.fe.config.ConfigurationManager;
29 import org.openecomp.sdc.fe.utils.BeProtocol;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public abstract class SSLProxyServlet extends ProxyServlet {
34
35     private static final long serialVersionUID = 1L;
36     private static final int TIMEOUT = 600000;
37     private static Logger log = LoggerFactory.getLogger(SSLProxyServlet.class.getName());
38
39     @Override
40     protected HttpClient createHttpClient() throws ServletException {
41         Configuration config = ((ConfigurationManager) getServletConfig().getServletContext().getAttribute(Constants.CONFIGURATION_MANAGER_ATTR))
42             .getConfiguration();
43         boolean isSecureClient = !config.getBeProtocol().equals(BeProtocol.HTTP.getProtocolName());
44         HttpClient client = (isSecureClient) ? getSecureHttpClient() : super.createHttpClient();
45         setTimeout(TIMEOUT);
46         client.setIdleTimeout(TIMEOUT);
47         client.setStopTimeout(TIMEOUT);
48         return client;
49     }
50
51     private HttpClient getSecureHttpClient() throws ServletException {
52         // Instantiate and configure the SslContextFactory
53         SslContextFactory sslContextFactory = new SslContextFactory(true);
54         // Instantiate HttpClient with the SslContextFactory
55         HttpClient httpClient = new HttpClient(sslContextFactory);
56         // Configure HttpClient, for example:
57         httpClient.setFollowRedirects(false);
58         // Start HttpClient
59         try {
60             httpClient.start();
61         } catch (Exception x) {
62             log.error("Exception thrown while starting httpClient", x);
63             throw new ServletException(x);
64         }
65         return httpClient;
66     }
67 }