/** * <a href="http://www.openolat.org"> * OpenOLAT - Online Learning and Training</a><br> * <p> * Licensed under the Apache License, Version 2.0 (the "License"); <br> * you may not use this file except in compliance with the License.<br> * You may obtain a copy of the License at the * <a href="http://www.apache.org/licenses/LICENSE-2.0">Apache homepage</a> * <p> * Unless required by applicable law or agreed to in writing,<br> * software distributed under the License is distributed on an "AS IS" BASIS, <br> * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. <br> * See the License for the specific language governing permissions and <br> * limitations under the License. * <p> * Initial code contributed and copyrighted by<br> * frentix GmbH, http://www.frentix.com * <p> */ package org.olat.core.util.httpclient; import org.apache.http.HttpRequest; import org.apache.http.HttpResponse; import org.apache.http.auth.AuthScope; import org.apache.http.auth.UsernamePasswordCredentials; import org.apache.http.client.CredentialsProvider; import org.apache.http.client.RedirectStrategy; import org.apache.http.client.methods.HttpUriRequest; import org.apache.http.config.Registry; import org.apache.http.config.RegistryBuilder; import org.apache.http.config.SocketConfig; import org.apache.http.conn.socket.ConnectionSocketFactory; import org.apache.http.conn.socket.PlainConnectionSocketFactory; import org.apache.http.impl.client.BasicCookieStore; import org.apache.http.impl.client.BasicCredentialsProvider; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClientBuilder; import org.apache.http.impl.client.LaxRedirectStrategy; import org.apache.http.impl.conn.PoolingHttpClientConnectionManager; import org.apache.http.protocol.HttpContext; /** * <h3>Description:</h3> * The HttpClientFactory creates multithreaded jakarta commons HttpClients that * feature SSL capability with support for unsigned SSL certificates. <br> * When using HttpClient in OLAT you must use this factory and never use new * HttpClient() directly since this would not be thread save. * <p> * Initial Date: 21.03.2007 <br> * * @author Florian Gnägi, frentix GmbH, http://www.frentix.com */ public class HttpClientFactory { private static final EasySSLSocketFactory sslFactory = new EasySSLSocketFactory(); private static final Registry<ConnectionSocketFactory> socketRegistry; static { socketRegistry = RegistryBuilder.<ConnectionSocketFactory>create() .register("http", PlainConnectionSocketFactory.getSocketFactory()) .register("https", sslFactory).build(); } /** * [used by Spring] */ public void destroy() { //nothing to do } /** * * @param redirect If redirect is allowed * @return CloseableHttpClient */ public static CloseableHttpClient getHttpClientInstance(boolean redirect) { return getHttpClientInstance(null, -1, null, null, redirect); } /** * * @param host For basic authentication * @param port For basic authentication * @param user For basic authentication * @param password For basic authentication * @param redirect If redirect is allowed * @return CloseableHttpClient */ public static CloseableHttpClient getHttpClientInstance(String host, int port, String user, String password, boolean redirect) { PoolingHttpClientConnectionManager cm = new PoolingHttpClientConnectionManager(socketRegistry); SocketConfig.Builder socketConfigBuilder = SocketConfig.copy(SocketConfig.DEFAULT); socketConfigBuilder.setSoTimeout(10000); cm.setDefaultSocketConfig(socketConfigBuilder.build()); HttpClientBuilder clientBuilder = HttpClientBuilder.create() .setConnectionManager(cm).setMaxConnTotal(10) .setDefaultCookieStore(new BasicCookieStore()); if(redirect) { clientBuilder.setRedirectStrategy(new LaxRedirectStrategy()); } else { clientBuilder.setRedirectStrategy(new NoRedirectStrategy()); } if (user != null && user.length() > 0) { CredentialsProvider provider = new BasicCredentialsProvider(); provider.setCredentials(new AuthScope(host, port), new UsernamePasswordCredentials(user, password)); clientBuilder.setDefaultCredentialsProvider(provider); } return clientBuilder.build(); } private static class NoRedirectStrategy implements RedirectStrategy { @Override public boolean isRedirected(HttpRequest request, HttpResponse response, HttpContext context) { return false; } @Override public HttpUriRequest getRedirect(HttpRequest request, HttpResponse response, HttpContext context) { return null; } } }