org.gradle.internal.resource.transport.http.DefaultHttpSettings Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-api Show documentation
Show all versions of gradle-api Show documentation
Gradle 6.9.1 API redistribution.
/*
* Copyright 2011 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.gradle.internal.resource.transport.http;
import com.google.common.base.Supplier;
import com.google.common.base.Suppliers;
import org.apache.http.conn.ssl.DefaultHostnameVerifier;
import org.gradle.authentication.Authentication;
import org.gradle.internal.UncheckedException;
import javax.net.ssl.HostnameVerifier;
import javax.net.ssl.SSLContext;
import javax.net.ssl.SSLSession;
import javax.net.ssl.TrustManager;
import javax.net.ssl.X509TrustManager;
import java.security.GeneralSecurityException;
import java.security.cert.X509Certificate;
import java.util.Collection;
public class DefaultHttpSettings implements HttpSettings {
private final Collection authenticationSettings;
private final SslContextFactory sslContextFactory;
private final HostnameVerifier hostnameVerifier;
private HttpProxySettings proxySettings;
private HttpProxySettings secureProxySettings;
private HttpTimeoutSettings timeoutSettings;
public static DefaultHttpSettings allowUntrustedSslConnections(Collection authenticationSettings) {
return new DefaultHttpSettings(authenticationSettings, ALL_TRUSTING_SSL_CONTEXT_FACTORY, ALL_TRUSTING_HOSTNAME_VERIFIER);
}
public DefaultHttpSettings(Collection authenticationSettings, SslContextFactory sslContextFactory) {
this(authenticationSettings, sslContextFactory, new DefaultHostnameVerifier(null));
}
private DefaultHttpSettings(Collection authenticationSettings, SslContextFactory sslContextFactory, HostnameVerifier hostnameVerifier) {
if (authenticationSettings == null) {
throw new IllegalArgumentException("Authentication settings cannot be null.");
}
this.authenticationSettings = authenticationSettings;
this.sslContextFactory = sslContextFactory;
this.hostnameVerifier = hostnameVerifier;
}
@Override
public HttpProxySettings getProxySettings() {
if (proxySettings == null) {
proxySettings = new JavaSystemPropertiesHttpProxySettings();
}
return proxySettings;
}
@Override
public HttpProxySettings getSecureProxySettings() {
if (secureProxySettings == null) {
secureProxySettings = new JavaSystemPropertiesSecureHttpProxySettings();
}
return secureProxySettings;
}
@Override
public HttpTimeoutSettings getTimeoutSettings() {
if (timeoutSettings == null) {
timeoutSettings = new JavaSystemPropertiesHttpTimeoutSettings();
}
return timeoutSettings;
}
@Override
public Collection getAuthenticationSettings() {
return authenticationSettings;
}
@Override
public SslContextFactory getSslContextFactory() {
return sslContextFactory;
}
@Override
public HostnameVerifier getHostnameVerifier() {
return hostnameVerifier;
}
private static final HostnameVerifier ALL_TRUSTING_HOSTNAME_VERIFIER = new HostnameVerifier() {
@Override
public boolean verify(String hostname, SSLSession session) {
return true;
}
};
private static final SslContextFactory ALL_TRUSTING_SSL_CONTEXT_FACTORY = new SslContextFactory() {
private final Supplier sslContextSupplier = Suppliers.memoize(new Supplier() {
@Override
public SSLContext get() {
try {
SSLContext sslcontext = SSLContext.getInstance("TLS");
sslcontext.init(null, allTrustingTrustManager, null);
return sslcontext;
} catch (GeneralSecurityException e) {
throw new UncheckedException(e);
}
}
});
@Override
public SSLContext createSslContext() {
return sslContextSupplier.get();
}
private final TrustManager[] allTrustingTrustManager = new TrustManager[]{
new X509TrustManager() {
@Override
public X509Certificate[] getAcceptedIssuers() {
return null;
}
@Override
public void checkClientTrusted(X509Certificate[] certs, String authType) {
}
@Override
public void checkServerTrusted(X509Certificate[] certs, String authType) {
}
}
};
};
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy