aboutsummaryrefslogtreecommitdiffstats
path: root/netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java
diff options
context:
space:
mode:
Diffstat (limited to 'netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java')
-rw-r--r--netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java360
1 files changed, 360 insertions, 0 deletions
diff --git a/netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java b/netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java
new file mode 100644
index 0000000..4a55145
--- /dev/null
+++ b/netx/net/sourceforge/jnlp/runtime/JNLPProxySelector.java
@@ -0,0 +1,360 @@
+// Copyright (C) 2010 Red Hat, Inc.
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+
+package net.sourceforge.jnlp.runtime;
+
+import java.io.IOException;
+import java.net.InetAddress;
+import java.net.InetSocketAddress;
+import java.net.MalformedURLException;
+import java.net.Proxy;
+import java.net.ProxySelector;
+import java.net.SocketAddress;
+import java.net.URI;
+import java.net.URL;
+import java.net.UnknownHostException;
+import java.net.Proxy.Type;
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+import java.util.StringTokenizer;
+
+/**
+ * A ProxySelector specific to JNLPs. This proxy uses the deployment
+ * configuration to determine what to do.
+ *
+ * @see java.net.ProxySelector
+ */
+public class JNLPProxySelector extends ProxySelector {
+
+ public static final int PROXY_TYPE_UNKNOWN = -1;
+ public static final int PROXY_TYPE_NONE = 0;
+ public static final int PROXY_TYPE_MANUAL = 1;
+ public static final int PROXY_TYPE_AUTO = 2;
+ public static final int PROXY_TYPE_BROWSER = 3;
+
+ /** The default port to use as a fallback. Currently squid's default port */
+ public static final int FALLBACK_PROXY_PORT = 3128;
+
+ /** The proxy type. See PROXY_TYPE_* constants */
+ private int proxyType = PROXY_TYPE_UNKNOWN;
+
+ /** the URL to the PAC file */
+ private URL autoConfigUrl = null;
+
+ /** a list of URLs that should be bypassed for proxy purposes */
+ private List<String> bypassList = null;
+
+ /** whether localhost should be bypassed for proxy purposes */
+ private boolean bypassLocal = false;
+
+ /**
+ * whether the http proxy should be used for https and ftp protocols as well
+ */
+ private boolean sameProxy = false;
+
+ private String proxyHttpHost;
+ private int proxyHttpPort;
+ private String proxyHttpsHost;
+ private int proxyHttpsPort;
+ private String proxyFtpHost;
+ private int proxyFtpPort;
+ private String proxySocks4Host;
+ private int proxySocks4Port;
+
+ // FIXME what is this? where should it be used?
+ private String overrideHosts = null;
+
+ /**
+ * Creates a new JNLPProxySelector.
+ */
+ public JNLPProxySelector() {
+ parseConfiguration();
+ }
+
+ /**
+ * Initialize this ProxySelector by reading the configuration
+ */
+ private void parseConfiguration() {
+ DeploymentConfiguration config = JNLPRuntime.getConfiguration();
+
+ proxyType = Integer.valueOf(config.getProperty(DeploymentConfiguration.KEY_PROXY_TYPE));
+
+ String autoConfigString = config
+ .getProperty(DeploymentConfiguration.KEY_PROXY_AUTO_CONFIG_URL);
+ if (autoConfigString != null) {
+ try {
+ autoConfigUrl = new URL(autoConfigString);
+ } catch (MalformedURLException e) {
+ e.printStackTrace();
+ }
+ }
+
+ bypassList = new ArrayList<String>();
+ String proxyBypass = config.getProperty(DeploymentConfiguration.KEY_PROXY_BYPASS_LIST);
+ if (proxyBypass != null) {
+ StringTokenizer tokenizer = new StringTokenizer(proxyBypass, ",");
+ while (tokenizer.hasMoreTokens()) {
+ String host = tokenizer.nextToken();
+ if (host != null && host.trim().length() != 0) {
+ bypassList.add(host);
+ }
+ }
+ }
+
+ bypassLocal = Boolean.valueOf(config
+ .getProperty(DeploymentConfiguration.KEY_PROXY_BYPASS_LOCAL));
+
+ sameProxy = Boolean.valueOf(config.getProperty(DeploymentConfiguration.KEY_PROXY_SAME));
+
+ proxyHttpHost = getHost(config, DeploymentConfiguration.KEY_PROXY_HTTP_HOST);
+ proxyHttpPort = getPort(config, DeploymentConfiguration.KEY_PROXY_HTTP_PORT);
+
+ proxyHttpsHost = getHost(config, DeploymentConfiguration.KEY_PROXY_HTTPS_HOST);
+ proxyHttpsPort = getPort(config, DeploymentConfiguration.KEY_PROXY_HTTPS_PORT);
+
+ proxyFtpHost = getHost(config, DeploymentConfiguration.KEY_PROXY_FTP_HOST);
+ proxyFtpPort = getPort(config, DeploymentConfiguration.KEY_PROXY_FTP_PORT);
+
+ proxySocks4Host = getHost(config, DeploymentConfiguration.KEY_PROXY_SOCKS4_HOST);
+ proxySocks4Port = getPort(config, DeploymentConfiguration.KEY_PROXY_SOCKS4_PORT);
+
+ overrideHosts = config.getProperty(DeploymentConfiguration.KEY_PROXY_OVERRIDE_HOSTS);
+ }
+
+ /**
+ * Uses the given key to get a host from the configuraion
+ */
+ private String getHost(DeploymentConfiguration config, String key) {
+ String proxyHost = config.getProperty(key);
+ if (proxyHost != null) {
+ proxyHost = proxyHost.trim();
+ }
+ return proxyHost;
+ }
+
+ /**
+ * Uses the given key to get a port from the configuration
+ */
+ private int getPort(DeploymentConfiguration config, String key) {
+ int proxyPort = FALLBACK_PROXY_PORT;
+ String port;
+ port = config.getProperty(key);
+ if (port != null && port.trim().length() != 0) {
+ try {
+ proxyPort = Integer.valueOf(port);
+ } catch (NumberFormatException e) {
+ e.printStackTrace();
+ }
+ }
+ return proxyPort;
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public void connectFailed(URI uri, SocketAddress sa, IOException ioe) {
+ ioe.printStackTrace();
+ }
+
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public List<Proxy> select(URI uri) {
+ if (JNLPRuntime.isDebug()) {
+ System.out.println("Selecting proxy for: " + uri);
+ }
+
+ if (inBypassList(uri)) {
+ List<Proxy> proxies = Arrays.asList(new Proxy[] { Proxy.NO_PROXY });
+ if (JNLPRuntime.isDebug()) {
+ System.out.println("Selected proxies: " + Arrays.toString(proxies.toArray()));
+ }
+ return proxies;
+ }
+
+ List<Proxy> proxies = new ArrayList<Proxy>();
+
+ switch (proxyType) {
+ case PROXY_TYPE_MANUAL:
+ proxies.addAll(getFromConfiguration(uri));
+ break;
+ case PROXY_TYPE_AUTO:
+ proxies.addAll(getFromPAC(uri));
+ break;
+ case PROXY_TYPE_BROWSER:
+ proxies.addAll(getFromBrowser(uri));
+ break;
+ case PROXY_TYPE_UNKNOWN:
+ // fall through
+ case PROXY_TYPE_NONE:
+ // fall through
+ default:
+ proxies.add(Proxy.NO_PROXY);
+ break;
+ }
+
+ if (JNLPRuntime.isDebug()) {
+ System.out.println("Selected proxies: " + Arrays.toString(proxies.toArray()));
+ }
+ return proxies;
+ }
+
+ /**
+ * Returns true if the uri should be bypassed for proxy purposes
+ */
+ private boolean inBypassList(URI uri) {
+ try {
+ String scheme = uri.getScheme();
+ /* scheme can be http/https/ftp/socket */
+
+ if (scheme.equals("http") || scheme.equals("https") || scheme.equals("ftp")) {
+ URL url = uri.toURL();
+ if (bypassLocal && isLocalHost(url.getHost())) {
+ return true;
+ }
+
+ if (bypassList.contains(url.getHost())) {
+ return true;
+ }
+ } else if (scheme.equals("socket")) {
+ String host = uri.getSchemeSpecificPart().split(":")[0];
+
+ if (bypassLocal && isLocalHost(host)) {
+ return true;
+ }
+
+ if (bypassList.contains(host)) {
+ return true;
+ }
+ }
+ } catch (MalformedURLException e) {
+ return false;
+ }
+
+ return false;
+ }
+
+ /**
+ * Returns true if the host is the hostname or the IP address of the
+ * localhost
+ */
+ private boolean isLocalHost(String host) {
+
+ try {
+ if (InetAddress.getByName(host).isLoopbackAddress()) {
+ return true;
+ }
+ } catch (UnknownHostException e1) {
+ // continue
+ }
+
+ try {
+ if (host.equals(InetAddress.getLocalHost().getHostName())) {
+ return true;
+ }
+ } catch (UnknownHostException e) {
+ // continue
+ }
+
+ try {
+ if (host.equals(InetAddress.getLocalHost().getHostAddress())) {
+ return true;
+ }
+ } catch (UnknownHostException e) {
+ // continue
+ }
+
+ return false;
+ }
+
+ /**
+ * Returns a list of proxies by using the information in the deployment
+ * configuration
+ *
+ * @param uri
+ * @return a List of Proxy objects
+ */
+ private List<Proxy> getFromConfiguration(URI uri) {
+ List<Proxy> proxies = new ArrayList<Proxy>();
+
+ String scheme = uri.getScheme();
+
+ if (sameProxy) {
+ SocketAddress sa = new InetSocketAddress(proxyHttpHost, proxyHttpPort);
+ Proxy proxy;
+ if (scheme.equals("socket")) {
+ proxy = new Proxy(Type.SOCKS, sa);
+ } else {
+ proxy = new Proxy(Type.HTTP, sa);
+ }
+ proxies.add(proxy);
+ } else if (scheme.equals("http")) {
+ SocketAddress sa = new InetSocketAddress(proxyHttpHost, proxyHttpPort);
+ proxies.add(new Proxy(Type.HTTP, sa));
+ } else if (scheme.equals("https")) {
+ SocketAddress sa = new InetSocketAddress(proxyHttpsHost, proxyHttpsPort);
+ proxies.add(new Proxy(Type.HTTP, sa));
+ } else if (scheme.equals("ftp")) {
+ SocketAddress sa = new InetSocketAddress(proxyFtpHost, proxyFtpPort);
+ proxies.add(new Proxy(Type.HTTP, sa));
+ } else if (scheme.equals("socket")) {
+ SocketAddress sa = new InetSocketAddress(proxySocks4Host, proxySocks4Port);
+ proxies.add(new Proxy(Type.SOCKS, sa));
+ } else {
+ proxies.add(Proxy.NO_PROXY);
+ }
+
+ return proxies;
+ }
+
+ /**
+ * Returns a list of proxies by using the Proxy Auto Config (PAC) file. See
+ * http://en.wikipedia.org/wiki/Proxy_auto-config#The_PAC_file for more
+ * information.
+ *
+ * @return a List of valid Proxy objects
+ */
+ private List<Proxy> getFromPAC(URI uri) {
+ if (autoConfigUrl == null) {
+ return Arrays.asList(new Proxy[] { Proxy.NO_PROXY });
+ }
+ // TODO implement this by reading and using the PAC file
+ if (JNLPRuntime.isDebug()) {
+ System.err.println("WARNING: Using a Proxy Auto Config file is not implemented yet");
+ }
+
+ return Arrays.asList(new Proxy[] { Proxy.NO_PROXY });
+ }
+
+ /**
+ * Returns a list of proxies by querying the browser
+ *
+ * @param uri the uri to get proxies for
+ * @return a list of proxies
+ */
+ protected List<Proxy> getFromBrowser(URI uri) {
+ // TODO implement this by parsing mozilla config
+ if (JNLPRuntime.isDebug()) {
+ System.err.println("WARNING: Using proxy settings from the browser is not implemented yet");
+ }
+
+ return Arrays.asList(new Proxy[] { Proxy.NO_PROXY });
+ }
+
+}