com.amazonaws.http.apache.SdkProxyRoutePlanner Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aws-java-sdk-core Show documentation
Show all versions of aws-java-sdk-core Show documentation
The AWS SDK for Java - Core module holds the classes that are used by the individual service clients to interact with Amazon Web Services. Users need to depend on aws-java-sdk artifact for accessing individual client classes.
/*
* Copyright 2016-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file 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 com.amazonaws.http.apache;
import com.amazonaws.Protocol;
import org.apache.http.HttpException;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;
import org.apache.http.impl.conn.DefaultRoutePlanner;
import org.apache.http.impl.conn.DefaultSchemePortResolver;
import org.apache.http.protocol.HttpContext;
import com.amazonaws.annotation.SdkInternalApi;
import com.amazonaws.http.apache.client.impl.ApacheHttpClientFactory;
import com.amazonaws.util.StringUtils;
/**
* SdkProxyRoutePlanner delegates a Proxy Route Planner from the settings instead of the
* system properties. It will use the proxy created from proxyHost, proxyPort, and proxyProtocol and
* filter the hosts who matches nonProxyHosts pattern.
*
* @see ApacheHttpClientFactory#create(com.amazonaws.http.settings.HttpClientSettings)
*/
@SdkInternalApi
public class SdkProxyRoutePlanner extends DefaultRoutePlanner {
private HttpHost proxy;
private String[] hostPatterns;
public SdkProxyRoutePlanner(String proxyHost, int proxyPort, Protocol proxyProtocol, String nonProxyHosts) {
super(DefaultSchemePortResolver.INSTANCE);
proxy = new HttpHost(proxyHost, proxyPort, proxyProtocol.toString());
parseNonProxyHosts(nonProxyHosts);
}
private void parseNonProxyHosts(String nonProxyHosts) {
if (!StringUtils.isNullOrEmpty(nonProxyHosts)) {
String[] hosts = nonProxyHosts.split("\\|");
hostPatterns = new String[hosts.length];
for (int i = 0; i < hosts.length; ++i) {
hostPatterns[i] = hosts[i].toLowerCase().replace("*", ".*?");
}
}
}
boolean doesTargetMatchNonProxyHosts(HttpHost target) {
if (hostPatterns == null) {
return false;
}
String targetHost = target.getHostName().toLowerCase();
for (String pattern : hostPatterns) {
if (targetHost.matches(pattern)) return true;
}
return false;
}
@Override
protected HttpHost determineProxy(
final HttpHost target,
final HttpRequest request,
final HttpContext context) throws HttpException {
return doesTargetMatchNonProxyHosts(target) ? null : proxy;
}
}