mirror of
https://github.com/python/cpython.git
synced 2025-07-29 06:05:00 +00:00
#856047: respect the `no_proxy
` env var when checking for proxies
in urllib and using the other ``_proxy`` env vars. Original patch by Donovan Baarda.
This commit is contained in:
parent
9b0d46db11
commit
2235011d49
3 changed files with 56 additions and 8 deletions
|
@ -79,6 +79,11 @@ High-level interface
|
||||||
% python
|
% python
|
||||||
...
|
...
|
||||||
|
|
||||||
|
The :envvar:`no_proxy` environment variable can be used to specify hosts which
|
||||||
|
shouldn't be reached via proxy; if set, it should be a comma-separated list
|
||||||
|
of hostname suffixes, optionally with ``:port`` appended, for example
|
||||||
|
``cern.ch,ncsa.uiuc.edu,some.host:8080``.
|
||||||
|
|
||||||
In a Windows environment, if no proxy environment variables are set, proxy
|
In a Windows environment, if no proxy environment variables are set, proxy
|
||||||
settings are obtained from the registry's Internet Settings section.
|
settings are obtained from the registry's Internet Settings section.
|
||||||
|
|
||||||
|
@ -112,6 +117,10 @@ High-level interface
|
||||||
.. versionchanged:: 2.3
|
.. versionchanged:: 2.3
|
||||||
Added the *proxies* support.
|
Added the *proxies* support.
|
||||||
|
|
||||||
|
.. versionchanged:: 2.6
|
||||||
|
Added :meth:`getcode` to returned object and support for the
|
||||||
|
:envvar:`no_proxy` environment variable.
|
||||||
|
|
||||||
|
|
||||||
.. function:: urlretrieve(url[, filename[, reporthook[, data]]])
|
.. function:: urlretrieve(url[, filename[, reporthook[, data]]])
|
||||||
|
|
||||||
|
|
|
@ -1283,10 +1283,33 @@ def getproxies_environment():
|
||||||
proxies = {}
|
proxies = {}
|
||||||
for name, value in os.environ.items():
|
for name, value in os.environ.items():
|
||||||
name = name.lower()
|
name = name.lower()
|
||||||
|
if name == 'no_proxy':
|
||||||
|
# handled in proxy_bypass_environment
|
||||||
|
continue
|
||||||
if value and name[-6:] == '_proxy':
|
if value and name[-6:] == '_proxy':
|
||||||
proxies[name[:-6]] = value
|
proxies[name[:-6]] = value
|
||||||
return proxies
|
return proxies
|
||||||
|
|
||||||
|
def proxy_bypass_environment(host):
|
||||||
|
"""Test if proxies should not be used for a particular host.
|
||||||
|
|
||||||
|
Checks the environment for a variable named no_proxy, which should
|
||||||
|
be a list of DNS suffixes separated by commas, or '*' for all hosts.
|
||||||
|
"""
|
||||||
|
no_proxy = os.environ.get('no_proxy', '') or os.environ.get('NO_PROXY', '')
|
||||||
|
# '*' is special case for always bypass
|
||||||
|
if no_proxy == '*':
|
||||||
|
return 1
|
||||||
|
# strip port off host
|
||||||
|
hostonly, port = splitport(host)
|
||||||
|
# check if the host ends with any of the DNS suffixes
|
||||||
|
for name in no_proxy.split(','):
|
||||||
|
if name and (hostonly.endswith(name) or host.endswith(name)):
|
||||||
|
return 1
|
||||||
|
# otherwise, don't bypass
|
||||||
|
return 0
|
||||||
|
|
||||||
|
|
||||||
if sys.platform == 'darwin':
|
if sys.platform == 'darwin':
|
||||||
def getproxies_internetconfig():
|
def getproxies_internetconfig():
|
||||||
"""Return a dictionary of scheme -> proxy server URL mappings.
|
"""Return a dictionary of scheme -> proxy server URL mappings.
|
||||||
|
@ -1314,12 +1337,15 @@ if sys.platform == 'darwin':
|
||||||
pass
|
pass
|
||||||
else:
|
else:
|
||||||
proxies['http'] = 'http://%s' % value
|
proxies['http'] = 'http://%s' % value
|
||||||
# FTP: XXXX To be done.
|
# FTP: XXX To be done.
|
||||||
# Gopher: XXXX To be done.
|
# Gopher: XXX To be done.
|
||||||
return proxies
|
return proxies
|
||||||
|
|
||||||
def proxy_bypass(x):
|
def proxy_bypass(host):
|
||||||
return 0
|
if getproxies_environment():
|
||||||
|
return proxy_bypass_environment(host)
|
||||||
|
else:
|
||||||
|
return 0
|
||||||
|
|
||||||
def getproxies():
|
def getproxies():
|
||||||
return getproxies_environment() or getproxies_internetconfig()
|
return getproxies_environment() or getproxies_internetconfig()
|
||||||
|
@ -1379,7 +1405,7 @@ elif os.name == 'nt':
|
||||||
"""
|
"""
|
||||||
return getproxies_environment() or getproxies_registry()
|
return getproxies_environment() or getproxies_registry()
|
||||||
|
|
||||||
def proxy_bypass(host):
|
def proxy_bypass_registry(host):
|
||||||
try:
|
try:
|
||||||
import _winreg
|
import _winreg
|
||||||
import re
|
import re
|
||||||
|
@ -1438,12 +1464,22 @@ elif os.name == 'nt':
|
||||||
return 1
|
return 1
|
||||||
return 0
|
return 0
|
||||||
|
|
||||||
|
def proxy_bypass(host):
|
||||||
|
"""Return a dictionary of scheme -> proxy server URL mappings.
|
||||||
|
|
||||||
|
Returns settings gathered from the environment, if specified,
|
||||||
|
or the registry.
|
||||||
|
|
||||||
|
"""
|
||||||
|
if getproxies_environment():
|
||||||
|
return proxy_bypass_environment(host)
|
||||||
|
else:
|
||||||
|
return proxy_bypass_registry(host)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
# By default use environment variables
|
# By default use environment variables
|
||||||
getproxies = getproxies_environment
|
getproxies = getproxies_environment
|
||||||
|
proxy_bypass = proxy_bypass_environment
|
||||||
def proxy_bypass(host):
|
|
||||||
return 0
|
|
||||||
|
|
||||||
# Test and time quote() and unquote()
|
# Test and time quote() and unquote()
|
||||||
def test1():
|
def test1():
|
||||||
|
|
|
@ -369,6 +369,9 @@ Core and builtins
|
||||||
Library
|
Library
|
||||||
-------
|
-------
|
||||||
|
|
||||||
|
- #856047: respect the ``no_proxy`` environment variable when using the
|
||||||
|
``http_proxy`` etc. environment variables in urllib.
|
||||||
|
|
||||||
- #1178141: add a getcode() method to the addinfourls that urllib.open()
|
- #1178141: add a getcode() method to the addinfourls that urllib.open()
|
||||||
returns so that you can retrieve the HTTP status code.
|
returns so that you can retrieve the HTTP status code.
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue