X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=src%2Fjalview%2Fgui%2FPreferences.java;h=827c9a0421ec80a49d5a938fb6f48320edf73a77;hb=245686954f67953e2dda80efc8c7a5c6d6b965e1;hp=f337898415aeae7010b9338a52fa35093039faed;hpb=e19524773e4547406d2ce5f9c91a536c3bc38f24;p=jalview.git diff --git a/src/jalview/gui/Preferences.java b/src/jalview/gui/Preferences.java index f337898..827c9a0 100755 --- a/src/jalview/gui/Preferences.java +++ b/src/jalview/gui/Preferences.java @@ -127,6 +127,8 @@ public class Preferences extends GPreferences private static final int MAX_FONT_SIZE = 30; + private String previousProxyType; + /** * Holds name and link separated with | character. Sequence ID must be * $SEQUENCE_ID$ or $SEQUENCE_ID=/.possible | chars ./=$ @@ -537,15 +539,16 @@ public class Preferences extends GPreferences } String proxyTypeString = Cache.getDefault("USE_PROXY", "false"); + previousProxyType = proxyTypeString; switch (proxyTypeString) { - case "none": + case Cache.PROXYTYPE_NONE: proxyType.setSelected(noProxy.getModel(), true); break; - case "false": + case Cache.PROXYTYPE_SYSTEM: proxyType.setSelected(systemProxy.getModel(), true); break; - case "true": + case Cache.PROXYTYPE_CUSTOM: proxyType.setSelected(customProxy.getModel(), true); break; default: @@ -557,6 +560,12 @@ public class Preferences extends GPreferences proxyPortHttpTB.setText(Cache.getDefault("PROXY_PORT", "")); proxyServerHttpsTB.setText(Cache.getDefault("PROXY_SERVER_HTTPS", "")); proxyPortHttpsTB.setText(Cache.getDefault("PROXY_PORT_HTTPS", "")); + proxyAuth.setSelected(Cache.getDefault("PROXY_AUTH", false)); + proxyAuthUsernameTB + .setText(Cache.getDefault("PROXY_AUTH_USERNAME", "")); + proxyAuthPasswordTB + .setText(Cache.getDefault("PROXY_AUTH_PASSWORD", "")); + setCustomProxyEnabled(); defaultBrowser.setText(Cache.getDefault("DEFAULT_BROWSER", "")); @@ -828,35 +837,20 @@ public class Preferences extends GPreferences Cache.applicationProperties.setProperty("DEFAULT_URL", sequenceUrlLinks.getPrimaryUrlId()); + // Proxy settings Cache.applicationProperties.setProperty("USE_PROXY", - customProxy.isSelected() ? "true" - : noProxy.isSelected() ? "none" : "false"); - + customProxy.isSelected() ? Cache.PROXYTYPE_CUSTOM + : noProxy.isSelected() ? Cache.PROXYTYPE_NONE + : Cache.PROXYTYPE_SYSTEM); Cache.setOrRemove("PROXY_SERVER", proxyServerHttpTB.getText()); - Cache.setOrRemove("PROXY_PORT", proxyPortHttpTB.getText()); - Cache.setOrRemove("PROXY_SERVER_HTTPS", proxyServerHttpsTB.getText()); - Cache.setOrRemove("PROXY_PORT_HTTPS", proxyPortHttpsTB.getText()); - - if (noProxy.isSelected()) - { - Cache.log.warn("Setting no proxy settings"); - Cache.setProxyProperties(null, null, null, null); - } - else if (customProxy.isSelected()) - { - Cache.log.warn("Setting custom proxy settings"); - Cache.setProxyProperties(proxyServerHttpTB.getText(), - proxyPortHttpTB.getText(), proxyServerHttpsTB.getText(), - proxyPortHttpsTB.getText()); - } - else // systemProxy should be selected and is sensible default - { - Cache.log.warn("Setting system proxy settings"); - Cache.resetProxyProperties(); - } + Cache.setOrRemove("PROXY_AUTH", + Boolean.toString(proxyAuth.isSelected())); + Cache.setOrRemove("PROXY_AUTH_USERNAME", proxyAuthUsernameTB.getText()); + Cache.setOrRemove("PROXY_AUTH_PASSWORD", proxyAuthPasswordTB.getText()); + setProxyFromSettings(); Cache.setProperty("VERSION_CHECK", Boolean.toString(versioncheck.isSelected())); @@ -954,6 +948,39 @@ public class Preferences extends GPreferences } } + public void setProxyFromSettings() + { + String proxyType = Cache.getDefault("USE_PROXY", + Cache.PROXYTYPE_SYSTEM); + if (proxyType.equals(Cache.PROXYTYPE_NONE)) + { + if (!previousProxyType.equals(proxyType)) + Cache.log.info("Setting no proxy settings"); + Cache.setProxyProperties(null, null, null, null, null, null, null, + null); + } + else if (proxyType.equals(Cache.PROXYTYPE_CUSTOM)) + { + if (!previousProxyType.equals(proxyType)) + Cache.log.info("Setting custom proxy settings"); + boolean proxyAuthSet = Cache.getDefault("PROXY_AUTH", false); + Cache.setProxyProperties(Cache.getDefault("PROXY_SERVER", null), + Cache.getDefault("PROXY_PORT", null), + Cache.getDefault("PROXY_SERVER_HTTPS", null), + Cache.getDefault("PROXY_PORT_HTTPS", null), + proxyAuthSet ? Cache.getDefault("PROXY_AUTH_USERNAME", "") + : null, + proxyAuthSet ? Cache.getDefault("PROXY_AUTH_PASSWORD", "") + : null); + } + else // systemProxy should be selected and is sensible default anyway + { + if (!previousProxyType.equals(proxyType)) + Cache.log.info("Setting system proxy settings"); + Cache.resetProxyProperties(); + } + } + /** * Do any necessary validation before saving settings. Return focus to the * first tab which fails validation.