blob: bceb3297c8ea89f0c30d8dd5527b4114cb422ad5 [file] [log] [blame]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001"""An extensible library for opening URLs using a variety of protocols
2
3The simplest way to use this module is to call the urlopen function,
4which accepts a string containing a URL or a Request object (described
5below). It opens the URL and returns the results as file-like
6object; the returned object has some extra methods described below.
7
8The OpenerDirector manages a collection of Handler objects that do
9all the actual work. Each Handler implements a particular protocol or
10option. The OpenerDirector is a composite object that invokes the
11Handlers needed to open the requested URL. For example, the
12HTTPHandler performs HTTP GET and POST requests and deals with
13non-error returns. The HTTPRedirectHandler automatically deals with
14HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
15deals with digest authentication.
16
17urlopen(url, data=None) -- Basic usage is the same as original
18urllib. pass the url and optionally data to post to an HTTP URL, and
19get a file-like object back. One difference is that you can also pass
20a Request instance instead of URL. Raises a URLError (subclass of
Andrew Svetlovf7a17b42012-12-25 16:47:37 +020021OSError); for HTTP errors, raises an HTTPError, which can also be
Jeremy Hylton1afc1692008-06-18 20:49:58 +000022treated as a valid response.
23
24build_opener -- Function that creates a new OpenerDirector instance.
25Will install the default handlers. Accepts one or more Handlers as
26arguments, either instances or Handler classes that it will
27instantiate. If one of the argument is a subclass of the default
28handler, the argument will be installed instead of the default.
29
30install_opener -- Installs a new opener as the default opener.
31
32objects of interest:
Senthil Kumaran1107c5d2009-11-15 06:20:55 +000033
Senthil Kumaran47fff872009-12-20 07:10:31 +000034OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
35the Handler classes, while dealing with requests and responses.
Jeremy Hylton1afc1692008-06-18 20:49:58 +000036
37Request -- An object that encapsulates the state of a request. The
38state can be as simple as the URL. It can also include extra HTTP
39headers, e.g. a User-Agent.
40
41BaseHandler --
42
43internals:
44BaseHandler and parent
45_call_chain conventions
46
47Example usage:
48
Georg Brandl029986a2008-06-23 11:44:14 +000049import urllib.request
Jeremy Hylton1afc1692008-06-18 20:49:58 +000050
51# set up authentication info
Georg Brandl029986a2008-06-23 11:44:14 +000052authinfo = urllib.request.HTTPBasicAuthHandler()
Jeremy Hylton1afc1692008-06-18 20:49:58 +000053authinfo.add_password(realm='PDQ Application',
54 uri='https://mahler:8092/site-updates.py',
55 user='klem',
56 passwd='geheim$parole')
57
Georg Brandl029986a2008-06-23 11:44:14 +000058proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})
Jeremy Hylton1afc1692008-06-18 20:49:58 +000059
60# build a new opener that adds authentication and caching FTP handlers
Georg Brandl029986a2008-06-23 11:44:14 +000061opener = urllib.request.build_opener(proxy_support, authinfo,
62 urllib.request.CacheFTPHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000063
64# install it
Georg Brandl029986a2008-06-23 11:44:14 +000065urllib.request.install_opener(opener)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000066
Georg Brandl029986a2008-06-23 11:44:14 +000067f = urllib.request.urlopen('http://www.python.org/')
Jeremy Hylton1afc1692008-06-18 20:49:58 +000068"""
69
70# XXX issues:
71# If an authentication error handler that tries to perform
72# authentication for some reason but fails, how should the error be
73# signalled? The client needs to know the HTTP error code. But if
74# the handler knows that the problem was, e.g., that it didn't know
75# that hash algo that requested in the challenge, it would be good to
76# pass that information along to the client, too.
77# ftp errors aren't handled cleanly
78# check digest against correct (i.e. non-apache) implementation
79
80# Possible extensions:
81# complex proxies XXX not sure what exactly was meant by this
82# abstract factory for opener
83
84import base64
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +000085import bisect
Jeremy Hylton1afc1692008-06-18 20:49:58 +000086import email
87import hashlib
88import http.client
89import io
90import os
91import posixpath
Jeremy Hylton1afc1692008-06-18 20:49:58 +000092import re
93import socket
94import sys
95import time
Senthil Kumaran7bc0d872010-12-19 10:49:52 +000096import collections
Senthil Kumarane24f96a2012-03-13 19:29:33 -070097import tempfile
98import contextlib
Senthil Kumaran38b968b92012-03-14 13:43:53 -070099import warnings
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700100
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000101
Georg Brandl13e89462008-07-01 19:56:00 +0000102from urllib.error import URLError, HTTPError, ContentTooShortError
103from urllib.parse import (
104 urlparse, urlsplit, urljoin, unwrap, quote, unquote,
105 splittype, splithost, splitport, splituser, splitpasswd,
Antoine Pitroudf204be2012-11-24 17:59:08 +0100106 splitattr, splitquery, splitvalue, splittag, to_bytes,
107 unquote_to_bytes, urlunparse)
Georg Brandl13e89462008-07-01 19:56:00 +0000108from urllib.response import addinfourl, addclosehook
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000109
110# check for SSL
111try:
112 import ssl
Brett Cannoncd171c82013-07-04 17:43:24 -0400113except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000114 _have_ssl = False
115else:
116 _have_ssl = True
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000117
Senthil Kumaran6c5bd402011-11-01 23:20:31 +0800118__all__ = [
119 # Classes
120 'Request', 'OpenerDirector', 'BaseHandler', 'HTTPDefaultErrorHandler',
121 'HTTPRedirectHandler', 'HTTPCookieProcessor', 'ProxyHandler',
122 'HTTPPasswordMgr', 'HTTPPasswordMgrWithDefaultRealm',
123 'AbstractBasicAuthHandler', 'HTTPBasicAuthHandler', 'ProxyBasicAuthHandler',
124 'AbstractDigestAuthHandler', 'HTTPDigestAuthHandler', 'ProxyDigestAuthHandler',
Antoine Pitroudf204be2012-11-24 17:59:08 +0100125 'HTTPHandler', 'FileHandler', 'FTPHandler', 'CacheFTPHandler', 'DataHandler',
Senthil Kumaran6c5bd402011-11-01 23:20:31 +0800126 'UnknownHandler', 'HTTPErrorProcessor',
127 # Functions
128 'urlopen', 'install_opener', 'build_opener',
129 'pathname2url', 'url2pathname', 'getproxies',
130 # Legacy interface
131 'urlretrieve', 'urlcleanup', 'URLopener', 'FancyURLopener',
132]
133
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000134# used in User-Agent header sent
135__version__ = sys.version[:3]
136
137_opener = None
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000138def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT,
Antoine Pitroude9ac6c2012-05-16 21:40:01 +0200139 *, cafile=None, capath=None, cadefault=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000140 global _opener
Antoine Pitroude9ac6c2012-05-16 21:40:01 +0200141 if cafile or capath or cadefault:
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000142 if not _have_ssl:
143 raise ValueError('SSL support not available')
144 context = ssl.SSLContext(ssl.PROTOCOL_SSLv23)
145 context.options |= ssl.OP_NO_SSLv2
Antoine Pitrou9a8d6932013-04-01 18:55:35 +0200146 context.verify_mode = ssl.CERT_REQUIRED
147 if cafile or capath:
148 context.load_verify_locations(cafile, capath)
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000149 else:
Antoine Pitrou9a8d6932013-04-01 18:55:35 +0200150 context.set_default_verify_paths()
151 https_handler = HTTPSHandler(context=context, check_hostname=True)
Antoine Pitrou803e6d62010-10-13 10:36:15 +0000152 opener = build_opener(https_handler)
153 elif _opener is None:
154 _opener = opener = build_opener()
155 else:
156 opener = _opener
157 return opener.open(url, data, timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000158
159def install_opener(opener):
160 global _opener
161 _opener = opener
162
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700163_url_tempfiles = []
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000164def urlretrieve(url, filename=None, reporthook=None, data=None):
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700165 """
166 Retrieve a URL into a temporary location on disk.
167
168 Requires a URL argument. If a filename is passed, it is used as
169 the temporary file location. The reporthook argument should be
170 a callable that accepts a block number, a read size, and the
171 total file size of the URL target. The data argument should be
172 valid URL encoded data.
173
174 If a filename is passed and the URL points to a local resource,
175 the result is a copy from local file to new file.
176
177 Returns a tuple containing the path to the newly created
178 data file as well as the resulting HTTPMessage object.
179 """
180 url_type, path = splittype(url)
181
182 with contextlib.closing(urlopen(url, data)) as fp:
183 headers = fp.info()
184
185 # Just return the local path and the "headers" for file://
186 # URLs. No sense in performing a copy unless requested.
187 if url_type == "file" and not filename:
188 return os.path.normpath(path), headers
189
190 # Handle temporary file setup.
191 if filename:
192 tfp = open(filename, 'wb')
193 else:
194 tfp = tempfile.NamedTemporaryFile(delete=False)
195 filename = tfp.name
196 _url_tempfiles.append(filename)
197
198 with tfp:
199 result = filename, headers
200 bs = 1024*8
201 size = -1
202 read = 0
203 blocknum = 0
204 if "content-length" in headers:
205 size = int(headers["Content-Length"])
206
207 if reporthook:
Gregory P. Smith6b0bdab2012-11-10 13:43:44 -0800208 reporthook(blocknum, bs, size)
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700209
210 while True:
211 block = fp.read(bs)
212 if not block:
213 break
214 read += len(block)
215 tfp.write(block)
216 blocknum += 1
217 if reporthook:
Gregory P. Smith6b0bdab2012-11-10 13:43:44 -0800218 reporthook(blocknum, bs, size)
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700219
220 if size >= 0 and read < size:
221 raise ContentTooShortError(
222 "retrieval incomplete: got only %i out of %i bytes"
223 % (read, size), result)
224
225 return result
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000226
227def urlcleanup():
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700228 for temp_file in _url_tempfiles:
229 try:
230 os.unlink(temp_file)
Andrew Svetlov3438fa42012-12-17 23:35:18 +0200231 except OSError:
Senthil Kumarane24f96a2012-03-13 19:29:33 -0700232 pass
233
234 del _url_tempfiles[:]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000235 global _opener
236 if _opener:
237 _opener = None
238
239# copied from cookielib.py
Antoine Pitroufd036452008-08-19 17:56:33 +0000240_cut_port_re = re.compile(r":\d+$", re.ASCII)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000241def request_host(request):
242 """Return request-host, as defined by RFC 2965.
243
244 Variation from RFC: returned value is lowercased, for convenient
245 comparison.
246
247 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000248 url = request.full_url
Georg Brandl13e89462008-07-01 19:56:00 +0000249 host = urlparse(url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000250 if host == "":
251 host = request.get_header("Host", "")
252
253 # remove port, if present
254 host = _cut_port_re.sub("", host, 1)
255 return host.lower()
256
257class Request:
258
259 def __init__(self, url, data=None, headers={},
Senthil Kumarande49d642011-10-16 23:54:44 +0800260 origin_req_host=None, unverifiable=False,
261 method=None):
Senthil Kumaran52380922013-04-25 05:45:48 -0700262 self.full_url = url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000263 self.headers = {}
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200264 self.unredirected_hdrs = {}
265 self._data = None
266 self.data = data
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000267 self._tunnel_host = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000268 for key, value in headers.items():
269 self.add_header(key, value)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000270 if origin_req_host is None:
271 origin_req_host = request_host(self)
272 self.origin_req_host = origin_req_host
273 self.unverifiable = unverifiable
Jason R. Coombs7dc4f4b2013-09-08 12:47:07 -0400274 if method:
275 self.method = method
Senthil Kumaran52380922013-04-25 05:45:48 -0700276
277 @property
278 def full_url(self):
Senthil Kumaran83070752013-05-24 09:14:12 -0700279 if self.fragment:
280 return '{}#{}'.format(self._full_url, self.fragment)
Senthil Kumaran52380922013-04-25 05:45:48 -0700281 return self._full_url
282
283 @full_url.setter
284 def full_url(self, url):
285 # unwrap('<URL:type://host/path>') --> 'type://host/path'
286 self._full_url = unwrap(url)
287 self._full_url, self.fragment = splittag(self._full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000288 self._parse()
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000289
Senthil Kumaran52380922013-04-25 05:45:48 -0700290 @full_url.deleter
291 def full_url(self):
292 self._full_url = None
293 self.fragment = None
294 self.selector = ''
295
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200296 @property
297 def data(self):
298 return self._data
299
300 @data.setter
301 def data(self, data):
302 if data != self._data:
303 self._data = data
304 # issue 16464
305 # if we change data we need to remove content-length header
306 # (cause it's most probably calculated for previous value)
307 if self.has_header("Content-length"):
308 self.remove_header("Content-length")
309
310 @data.deleter
311 def data(self):
R David Murray9cc7d452013-03-20 00:10:51 -0400312 self.data = None
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200313
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000314 def _parse(self):
Senthil Kumaran52380922013-04-25 05:45:48 -0700315 self.type, rest = splittype(self._full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000316 if self.type is None:
R David Murrayd8a46962013-04-03 06:58:34 -0400317 raise ValueError("unknown url type: %r" % self.full_url)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000318 self.host, self.selector = splithost(rest)
319 if self.host:
320 self.host = unquote(self.host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000321
322 def get_method(self):
Senthil Kumarande49d642011-10-16 23:54:44 +0800323 """Return a string indicating the HTTP request method."""
Jason R. Coombsaae6a1d2013-09-08 12:54:33 -0400324 default_method = "POST" if self.data is not None else "GET"
325 return getattr(self, 'method', default_method)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000326
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000327 def get_full_url(self):
Senthil Kumaran52380922013-04-25 05:45:48 -0700328 return self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000329
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000330 def set_proxy(self, host, type):
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000331 if self.type == 'https' and not self._tunnel_host:
332 self._tunnel_host = self.host
333 else:
334 self.type= type
335 self.selector = self.full_url
336 self.host = host
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000337
338 def has_proxy(self):
339 return self.selector == self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000340
341 def add_header(self, key, val):
342 # useful for something like authentication
343 self.headers[key.capitalize()] = val
344
345 def add_unredirected_header(self, key, val):
346 # will not be added to a redirected request
347 self.unredirected_hdrs[key.capitalize()] = val
348
349 def has_header(self, header_name):
350 return (header_name in self.headers or
351 header_name in self.unredirected_hdrs)
352
353 def get_header(self, header_name, default=None):
354 return self.headers.get(
355 header_name,
356 self.unredirected_hdrs.get(header_name, default))
357
Andrew Svetlovbff98fe2012-11-27 23:06:19 +0200358 def remove_header(self, header_name):
359 self.headers.pop(header_name, None)
360 self.unredirected_hdrs.pop(header_name, None)
361
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000362 def header_items(self):
363 hdrs = self.unredirected_hdrs.copy()
364 hdrs.update(self.headers)
365 return list(hdrs.items())
366
367class OpenerDirector:
368 def __init__(self):
369 client_version = "Python-urllib/%s" % __version__
370 self.addheaders = [('User-agent', client_version)]
R. David Murray25b8cca2010-12-23 19:44:49 +0000371 # self.handlers is retained only for backward compatibility
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000372 self.handlers = []
R. David Murray25b8cca2010-12-23 19:44:49 +0000373 # manage the individual handlers
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000374 self.handle_open = {}
375 self.handle_error = {}
376 self.process_response = {}
377 self.process_request = {}
378
379 def add_handler(self, handler):
380 if not hasattr(handler, "add_parent"):
381 raise TypeError("expected BaseHandler instance, got %r" %
382 type(handler))
383
384 added = False
385 for meth in dir(handler):
386 if meth in ["redirect_request", "do_open", "proxy_open"]:
387 # oops, coincidental match
388 continue
389
390 i = meth.find("_")
391 protocol = meth[:i]
392 condition = meth[i+1:]
393
394 if condition.startswith("error"):
395 j = condition.find("_") + i + 1
396 kind = meth[j+1:]
397 try:
398 kind = int(kind)
399 except ValueError:
400 pass
401 lookup = self.handle_error.get(protocol, {})
402 self.handle_error[protocol] = lookup
403 elif condition == "open":
404 kind = protocol
405 lookup = self.handle_open
406 elif condition == "response":
407 kind = protocol
408 lookup = self.process_response
409 elif condition == "request":
410 kind = protocol
411 lookup = self.process_request
412 else:
413 continue
414
415 handlers = lookup.setdefault(kind, [])
416 if handlers:
417 bisect.insort(handlers, handler)
418 else:
419 handlers.append(handler)
420 added = True
421
422 if added:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000423 bisect.insort(self.handlers, handler)
424 handler.add_parent(self)
425
426 def close(self):
427 # Only exists for backwards compatibility.
428 pass
429
430 def _call_chain(self, chain, kind, meth_name, *args):
431 # Handlers raise an exception if no one else should try to handle
432 # the request, or return None if they can't but another handler
433 # could. Otherwise, they return the response.
434 handlers = chain.get(kind, ())
435 for handler in handlers:
436 func = getattr(handler, meth_name)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000437 result = func(*args)
438 if result is not None:
439 return result
440
441 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
442 # accept a URL or a Request object
443 if isinstance(fullurl, str):
444 req = Request(fullurl, data)
445 else:
446 req = fullurl
447 if data is not None:
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000448 req.data = data
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000449
450 req.timeout = timeout
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000451 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000452
453 # pre-process request
454 meth_name = protocol+"_request"
455 for processor in self.process_request.get(protocol, []):
456 meth = getattr(processor, meth_name)
457 req = meth(req)
458
459 response = self._open(req, data)
460
461 # post-process response
462 meth_name = protocol+"_response"
463 for processor in self.process_response.get(protocol, []):
464 meth = getattr(processor, meth_name)
465 response = meth(req, response)
466
467 return response
468
469 def _open(self, req, data=None):
470 result = self._call_chain(self.handle_open, 'default',
471 'default_open', req)
472 if result:
473 return result
474
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000475 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000476 result = self._call_chain(self.handle_open, protocol, protocol +
477 '_open', req)
478 if result:
479 return result
480
481 return self._call_chain(self.handle_open, 'unknown',
482 'unknown_open', req)
483
484 def error(self, proto, *args):
485 if proto in ('http', 'https'):
486 # XXX http[s] protocols are special-cased
487 dict = self.handle_error['http'] # https is not different than http
488 proto = args[2] # YUCK!
489 meth_name = 'http_error_%s' % proto
490 http_err = 1
491 orig_args = args
492 else:
493 dict = self.handle_error
494 meth_name = proto + '_error'
495 http_err = 0
496 args = (dict, proto, meth_name) + args
497 result = self._call_chain(*args)
498 if result:
499 return result
500
501 if http_err:
502 args = (dict, 'default', 'http_error_default') + orig_args
503 return self._call_chain(*args)
504
505# XXX probably also want an abstract factory that knows when it makes
506# sense to skip a superclass in favor of a subclass and when it might
507# make sense to include both
508
509def build_opener(*handlers):
510 """Create an opener object from a list of handlers.
511
512 The opener will use several default handlers, including support
Senthil Kumaran1107c5d2009-11-15 06:20:55 +0000513 for HTTP, FTP and when applicable HTTPS.
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000514
515 If any of the handlers passed as arguments are subclasses of the
516 default handlers, the default handlers will not be used.
517 """
518 def isclass(obj):
519 return isinstance(obj, type) or hasattr(obj, "__bases__")
520
521 opener = OpenerDirector()
522 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
523 HTTPDefaultErrorHandler, HTTPRedirectHandler,
Antoine Pitroudf204be2012-11-24 17:59:08 +0100524 FTPHandler, FileHandler, HTTPErrorProcessor,
525 DataHandler]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000526 if hasattr(http.client, "HTTPSConnection"):
527 default_classes.append(HTTPSHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000528 skip = set()
529 for klass in default_classes:
530 for check in handlers:
531 if isclass(check):
532 if issubclass(check, klass):
533 skip.add(klass)
534 elif isinstance(check, klass):
535 skip.add(klass)
536 for klass in skip:
537 default_classes.remove(klass)
538
539 for klass in default_classes:
540 opener.add_handler(klass())
541
542 for h in handlers:
543 if isclass(h):
544 h = h()
545 opener.add_handler(h)
546 return opener
547
548class BaseHandler:
549 handler_order = 500
550
551 def add_parent(self, parent):
552 self.parent = parent
553
554 def close(self):
555 # Only exists for backwards compatibility
556 pass
557
558 def __lt__(self, other):
559 if not hasattr(other, "handler_order"):
560 # Try to preserve the old behavior of having custom classes
561 # inserted after default ones (works only for custom user
562 # classes which are not aware of handler_order).
563 return True
564 return self.handler_order < other.handler_order
565
566
567class HTTPErrorProcessor(BaseHandler):
568 """Process HTTP error responses."""
569 handler_order = 1000 # after all other processing
570
571 def http_response(self, request, response):
572 code, msg, hdrs = response.code, response.msg, response.info()
573
574 # According to RFC 2616, "2xx" code indicates that the client's
575 # request was successfully received, understood, and accepted.
576 if not (200 <= code < 300):
577 response = self.parent.error(
578 'http', request, response, code, msg, hdrs)
579
580 return response
581
582 https_response = http_response
583
584class HTTPDefaultErrorHandler(BaseHandler):
585 def http_error_default(self, req, fp, code, msg, hdrs):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000586 raise HTTPError(req.full_url, code, msg, hdrs, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000587
588class HTTPRedirectHandler(BaseHandler):
589 # maximum number of redirections to any single URL
590 # this is needed because of the state that cookies introduce
591 max_repeats = 4
592 # maximum total number of redirections (regardless of URL) before
593 # assuming we're in a loop
594 max_redirections = 10
595
596 def redirect_request(self, req, fp, code, msg, headers, newurl):
597 """Return a Request or None in response to a redirect.
598
599 This is called by the http_error_30x methods when a
600 redirection response is received. If a redirection should
601 take place, return a new Request to allow http_error_30x to
602 perform the redirect. Otherwise, raise HTTPError if no-one
603 else should try to handle this url. Return None if you can't
604 but another Handler might.
605 """
606 m = req.get_method()
607 if (not (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
608 or code in (301, 302, 303) and m == "POST")):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000609 raise HTTPError(req.full_url, code, msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000610
611 # Strictly (according to RFC 2616), 301 or 302 in response to
612 # a POST MUST NOT cause a redirection without confirmation
Georg Brandl029986a2008-06-23 11:44:14 +0000613 # from the user (of urllib.request, in this case). In practice,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000614 # essentially all clients do redirect in this case, so we do
615 # the same.
616 # be conciliant with URIs containing a space
617 newurl = newurl.replace(' ', '%20')
618 CONTENT_HEADERS = ("content-length", "content-type")
619 newheaders = dict((k, v) for k, v in req.headers.items()
620 if k.lower() not in CONTENT_HEADERS)
621 return Request(newurl,
622 headers=newheaders,
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000623 origin_req_host=req.origin_req_host,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000624 unverifiable=True)
625
626 # Implementation note: To avoid the server sending us into an
627 # infinite loop, the request object needs to track what URLs we
628 # have already seen. Do this by adding a handler-specific
629 # attribute to the Request object.
630 def http_error_302(self, req, fp, code, msg, headers):
631 # Some servers (incorrectly) return multiple Location headers
632 # (so probably same goes for URI). Use first header.
633 if "location" in headers:
634 newurl = headers["location"]
635 elif "uri" in headers:
636 newurl = headers["uri"]
637 else:
638 return
Facundo Batistaf24802c2008-08-17 03:36:03 +0000639
640 # fix a possible malformed URL
641 urlparts = urlparse(newurl)
guido@google.coma119df92011-03-29 11:41:02 -0700642
643 # For security reasons we don't allow redirection to anything other
644 # than http, https or ftp.
645
Senthil Kumaran6497aa32012-01-04 13:46:59 +0800646 if urlparts.scheme not in ('http', 'https', 'ftp', ''):
Senthil Kumaran34d38dc2011-10-20 02:48:01 +0800647 raise HTTPError(
648 newurl, code,
649 "%s - Redirection to url '%s' is not allowed" % (msg, newurl),
650 headers, fp)
guido@google.coma119df92011-03-29 11:41:02 -0700651
Facundo Batistaf24802c2008-08-17 03:36:03 +0000652 if not urlparts.path:
653 urlparts = list(urlparts)
654 urlparts[2] = "/"
655 newurl = urlunparse(urlparts)
656
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000657 newurl = urljoin(req.full_url, newurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000658
659 # XXX Probably want to forget about the state of the current
660 # request, although that might interact poorly with other
661 # handlers that also use handler-specific request attributes
662 new = self.redirect_request(req, fp, code, msg, headers, newurl)
663 if new is None:
664 return
665
666 # loop detection
667 # .redirect_dict has a key url if url was previously visited.
668 if hasattr(req, 'redirect_dict'):
669 visited = new.redirect_dict = req.redirect_dict
670 if (visited.get(newurl, 0) >= self.max_repeats or
671 len(visited) >= self.max_redirections):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000672 raise HTTPError(req.full_url, code,
Georg Brandl13e89462008-07-01 19:56:00 +0000673 self.inf_msg + msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000674 else:
675 visited = new.redirect_dict = req.redirect_dict = {}
676 visited[newurl] = visited.get(newurl, 0) + 1
677
678 # Don't close the fp until we are sure that we won't use it
679 # with HTTPError.
680 fp.read()
681 fp.close()
682
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000683 return self.parent.open(new, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000684
685 http_error_301 = http_error_303 = http_error_307 = http_error_302
686
687 inf_msg = "The HTTP server returned a redirect error that would " \
688 "lead to an infinite loop.\n" \
689 "The last 30x error message was:\n"
690
691
692def _parse_proxy(proxy):
693 """Return (scheme, user, password, host/port) given a URL or an authority.
694
695 If a URL is supplied, it must have an authority (host:port) component.
696 According to RFC 3986, having an authority component means the URL must
697 have two slashes after the scheme:
698
699 >>> _parse_proxy('file:/ftp.example.com/')
700 Traceback (most recent call last):
701 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
702
703 The first three items of the returned tuple may be None.
704
705 Examples of authority parsing:
706
707 >>> _parse_proxy('proxy.example.com')
708 (None, None, None, 'proxy.example.com')
709 >>> _parse_proxy('proxy.example.com:3128')
710 (None, None, None, 'proxy.example.com:3128')
711
712 The authority component may optionally include userinfo (assumed to be
713 username:password):
714
715 >>> _parse_proxy('joe:password@proxy.example.com')
716 (None, 'joe', 'password', 'proxy.example.com')
717 >>> _parse_proxy('joe:password@proxy.example.com:3128')
718 (None, 'joe', 'password', 'proxy.example.com:3128')
719
720 Same examples, but with URLs instead:
721
722 >>> _parse_proxy('http://proxy.example.com/')
723 ('http', None, None, 'proxy.example.com')
724 >>> _parse_proxy('http://proxy.example.com:3128/')
725 ('http', None, None, 'proxy.example.com:3128')
726 >>> _parse_proxy('http://joe:password@proxy.example.com/')
727 ('http', 'joe', 'password', 'proxy.example.com')
728 >>> _parse_proxy('http://joe:password@proxy.example.com:3128')
729 ('http', 'joe', 'password', 'proxy.example.com:3128')
730
731 Everything after the authority is ignored:
732
733 >>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
734 ('ftp', 'joe', 'password', 'proxy.example.com')
735
736 Test for no trailing '/' case:
737
738 >>> _parse_proxy('http://joe:password@proxy.example.com')
739 ('http', 'joe', 'password', 'proxy.example.com')
740
741 """
Georg Brandl13e89462008-07-01 19:56:00 +0000742 scheme, r_scheme = splittype(proxy)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000743 if not r_scheme.startswith("/"):
744 # authority
745 scheme = None
746 authority = proxy
747 else:
748 # URL
749 if not r_scheme.startswith("//"):
750 raise ValueError("proxy URL with no authority: %r" % proxy)
751 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
752 # and 3.3.), path is empty or starts with '/'
753 end = r_scheme.find("/", 2)
754 if end == -1:
755 end = None
756 authority = r_scheme[2:end]
Georg Brandl13e89462008-07-01 19:56:00 +0000757 userinfo, hostport = splituser(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000758 if userinfo is not None:
Georg Brandl13e89462008-07-01 19:56:00 +0000759 user, password = splitpasswd(userinfo)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000760 else:
761 user = password = None
762 return scheme, user, password, hostport
763
764class ProxyHandler(BaseHandler):
765 # Proxies must be in front
766 handler_order = 100
767
768 def __init__(self, proxies=None):
769 if proxies is None:
770 proxies = getproxies()
771 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
772 self.proxies = proxies
773 for type, url in proxies.items():
774 setattr(self, '%s_open' % type,
Georg Brandlfcbdbf22012-06-24 19:56:31 +0200775 lambda r, proxy=url, type=type, meth=self.proxy_open:
776 meth(r, proxy, type))
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000777
778 def proxy_open(self, req, proxy, type):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000779 orig_type = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000780 proxy_type, user, password, hostport = _parse_proxy(proxy)
781 if proxy_type is None:
782 proxy_type = orig_type
Senthil Kumaran7bb04972009-10-11 04:58:55 +0000783
784 if req.host and proxy_bypass(req.host):
785 return None
786
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000787 if user and password:
Georg Brandl13e89462008-07-01 19:56:00 +0000788 user_pass = '%s:%s' % (unquote(user),
789 unquote(password))
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000790 creds = base64.b64encode(user_pass.encode()).decode("ascii")
791 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl13e89462008-07-01 19:56:00 +0000792 hostport = unquote(hostport)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000793 req.set_proxy(hostport, proxy_type)
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +0000794 if orig_type == proxy_type or orig_type == 'https':
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000795 # let other handlers take care of it
796 return None
797 else:
798 # need to start over, because the other handlers don't
799 # grok the proxy's URL type
800 # e.g. if we have a constructor arg proxies like so:
801 # {'http': 'ftp://proxy.example.com'}, we may end up turning
802 # a request for http://acme.example.com/a into one for
803 # ftp://proxy.example.com/a
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000804 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000805
806class HTTPPasswordMgr:
807
808 def __init__(self):
809 self.passwd = {}
810
811 def add_password(self, realm, uri, user, passwd):
812 # uri could be a single URI or a sequence
813 if isinstance(uri, str):
814 uri = [uri]
Senthil Kumaran34d38dc2011-10-20 02:48:01 +0800815 if realm not in self.passwd:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000816 self.passwd[realm] = {}
817 for default_port in True, False:
818 reduced_uri = tuple(
819 [self.reduce_uri(u, default_port) for u in uri])
820 self.passwd[realm][reduced_uri] = (user, passwd)
821
822 def find_user_password(self, realm, authuri):
823 domains = self.passwd.get(realm, {})
824 for default_port in True, False:
825 reduced_authuri = self.reduce_uri(authuri, default_port)
826 for uris, authinfo in domains.items():
827 for uri in uris:
828 if self.is_suburi(uri, reduced_authuri):
829 return authinfo
830 return None, None
831
832 def reduce_uri(self, uri, default_port=True):
833 """Accept authority or URI and extract only the authority and path."""
834 # note HTTP URLs do not have a userinfo component
Georg Brandl13e89462008-07-01 19:56:00 +0000835 parts = urlsplit(uri)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000836 if parts[1]:
837 # URI
838 scheme = parts[0]
839 authority = parts[1]
840 path = parts[2] or '/'
841 else:
842 # host or host:port
843 scheme = None
844 authority = uri
845 path = '/'
Georg Brandl13e89462008-07-01 19:56:00 +0000846 host, port = splitport(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000847 if default_port and port is None and scheme is not None:
848 dport = {"http": 80,
849 "https": 443,
850 }.get(scheme)
851 if dport is not None:
852 authority = "%s:%d" % (host, dport)
853 return authority, path
854
855 def is_suburi(self, base, test):
856 """Check if test is below base in a URI tree
857
858 Both args must be URIs in reduced form.
859 """
860 if base == test:
861 return True
862 if base[0] != test[0]:
863 return False
864 common = posixpath.commonprefix((base[1], test[1]))
865 if len(common) == len(base[1]):
866 return True
867 return False
868
869
870class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
871
872 def find_user_password(self, realm, authuri):
873 user, password = HTTPPasswordMgr.find_user_password(self, realm,
874 authuri)
875 if user is not None:
876 return user, password
877 return HTTPPasswordMgr.find_user_password(self, None, authuri)
878
879
880class AbstractBasicAuthHandler:
881
882 # XXX this allows for multiple auth-schemes, but will stupidly pick
883 # the last one with a realm specified.
884
885 # allow for double- and single-quoted realm values
886 # (single quotes are a violation of the RFC, but appear in the wild)
887 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
Senthil Kumaran34f3fcc2012-05-15 22:30:25 +0800888 'realm=(["\']?)([^"\']*)\\2', re.I)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000889
890 # XXX could pre-emptively send auth info already accepted (RFC 2617,
891 # end of section 2, and section 1.2 immediately after "credentials"
892 # production).
893
894 def __init__(self, password_mgr=None):
895 if password_mgr is None:
896 password_mgr = HTTPPasswordMgr()
897 self.passwd = password_mgr
898 self.add_password = self.passwd.add_password
Senthil Kumaranf4998ac2010-06-01 12:53:48 +0000899 self.retried = 0
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000900
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000901 def reset_retry_count(self):
902 self.retried = 0
903
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000904 def http_error_auth_reqed(self, authreq, host, req, headers):
905 # host may be an authority (without userinfo) or a URL with an
906 # authority
907 # XXX could be multiple headers
908 authreq = headers.get(authreq, None)
Senthil Kumaranf4998ac2010-06-01 12:53:48 +0000909
910 if self.retried > 5:
911 # retry sending the username:password 5 times before failing.
912 raise HTTPError(req.get_full_url(), 401, "basic auth failed",
913 headers, None)
914 else:
915 self.retried += 1
916
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000917 if authreq:
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800918 scheme = authreq.split()[0]
Senthil Kumaran1a129c82011-10-20 02:50:13 +0800919 if scheme.lower() != 'basic':
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800920 raise ValueError("AbstractBasicAuthHandler does not"
921 " support the following scheme: '%s'" %
922 scheme)
923 else:
924 mo = AbstractBasicAuthHandler.rx.search(authreq)
925 if mo:
926 scheme, quote, realm = mo.groups()
Senthil Kumaran92a5bf02012-05-16 00:03:29 +0800927 if quote not in ['"',"'"]:
928 warnings.warn("Basic Auth Realm was unquoted",
929 UserWarning, 2)
Senthil Kumaran4de00a22011-05-11 21:17:57 +0800930 if scheme.lower() == 'basic':
931 response = self.retry_http_basic_auth(host, req, realm)
932 if response and response.code != 401:
933 self.retried = 0
934 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000935
936 def retry_http_basic_auth(self, host, req, realm):
937 user, pw = self.passwd.find_user_password(realm, host)
938 if pw is not None:
939 raw = "%s:%s" % (user, pw)
940 auth = "Basic " + base64.b64encode(raw.encode()).decode("ascii")
941 if req.headers.get(self.auth_header, None) == auth:
942 return None
Senthil Kumaranca2fc9e2010-02-24 16:53:16 +0000943 req.add_unredirected_header(self.auth_header, auth)
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +0000944 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000945 else:
946 return None
947
948
949class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
950
951 auth_header = 'Authorization'
952
953 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000954 url = req.full_url
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000955 response = self.http_error_auth_reqed('www-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000956 url, req, headers)
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000957 self.reset_retry_count()
958 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000959
960
961class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
962
963 auth_header = 'Proxy-authorization'
964
965 def http_error_407(self, req, fp, code, msg, headers):
966 # http_error_auth_reqed requires that there is no userinfo component in
Georg Brandl029986a2008-06-23 11:44:14 +0000967 # authority. Assume there isn't one, since urllib.request does not (and
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000968 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
969 # userinfo.
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000970 authority = req.host
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000971 response = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000972 authority, req, headers)
Senthil Kumaran67a62a42010-08-19 17:50:31 +0000973 self.reset_retry_count()
974 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000975
976
Senthil Kumaran6c5bd402011-11-01 23:20:31 +0800977# Return n random bytes.
978_randombytes = os.urandom
979
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000980
981class AbstractDigestAuthHandler:
982 # Digest authentication is specified in RFC 2617.
983
984 # XXX The client does not inspect the Authentication-Info header
985 # in a successful response.
986
987 # XXX It should be possible to test this implementation against
988 # a mock server that just generates a static set of challenges.
989
990 # XXX qop="auth-int" supports is shaky
991
992 def __init__(self, passwd=None):
993 if passwd is None:
994 passwd = HTTPPasswordMgr()
995 self.passwd = passwd
996 self.add_password = self.passwd.add_password
997 self.retried = 0
998 self.nonce_count = 0
Senthil Kumaran4c7eaee2009-11-15 08:43:45 +0000999 self.last_nonce = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001000
1001 def reset_retry_count(self):
1002 self.retried = 0
1003
1004 def http_error_auth_reqed(self, auth_header, host, req, headers):
1005 authreq = headers.get(auth_header, None)
1006 if self.retried > 5:
1007 # Don't fail endlessly - if we failed once, we'll probably
1008 # fail a second time. Hm. Unless the Password Manager is
1009 # prompting for the information. Crap. This isn't great
1010 # but it's better than the current 'repeat until recursion
1011 # depth exceeded' approach <wink>
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001012 raise HTTPError(req.full_url, 401, "digest auth failed",
Georg Brandl13e89462008-07-01 19:56:00 +00001013 headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001014 else:
1015 self.retried += 1
1016 if authreq:
1017 scheme = authreq.split()[0]
1018 if scheme.lower() == 'digest':
1019 return self.retry_http_digest_auth(req, authreq)
Senthil Kumaran1a129c82011-10-20 02:50:13 +08001020 elif scheme.lower() != 'basic':
Senthil Kumaran4de00a22011-05-11 21:17:57 +08001021 raise ValueError("AbstractDigestAuthHandler does not support"
1022 " the following scheme: '%s'" % scheme)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001023
1024 def retry_http_digest_auth(self, req, auth):
1025 token, challenge = auth.split(' ', 1)
1026 chal = parse_keqv_list(filter(None, parse_http_list(challenge)))
1027 auth = self.get_authorization(req, chal)
1028 if auth:
1029 auth_val = 'Digest %s' % auth
1030 if req.headers.get(self.auth_header, None) == auth_val:
1031 return None
1032 req.add_unredirected_header(self.auth_header, auth_val)
Senthil Kumaranfb8cc2f2009-07-19 02:44:19 +00001033 resp = self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001034 return resp
1035
1036 def get_cnonce(self, nonce):
1037 # The cnonce-value is an opaque
1038 # quoted string value provided by the client and used by both client
1039 # and server to avoid chosen plaintext attacks, to provide mutual
1040 # authentication, and to provide some message integrity protection.
1041 # This isn't a fabulous effort, but it's probably Good Enough.
1042 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
Senthil Kumaran6c5bd402011-11-01 23:20:31 +08001043 b = s.encode("ascii") + _randombytes(8)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001044 dig = hashlib.sha1(b).hexdigest()
1045 return dig[:16]
1046
1047 def get_authorization(self, req, chal):
1048 try:
1049 realm = chal['realm']
1050 nonce = chal['nonce']
1051 qop = chal.get('qop')
1052 algorithm = chal.get('algorithm', 'MD5')
1053 # mod_digest doesn't send an opaque, even though it isn't
1054 # supposed to be optional
1055 opaque = chal.get('opaque', None)
1056 except KeyError:
1057 return None
1058
1059 H, KD = self.get_algorithm_impls(algorithm)
1060 if H is None:
1061 return None
1062
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001063 user, pw = self.passwd.find_user_password(realm, req.full_url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001064 if user is None:
1065 return None
1066
1067 # XXX not implemented yet
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001068 if req.data is not None:
1069 entdig = self.get_entity_digest(req.data, chal)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001070 else:
1071 entdig = None
1072
1073 A1 = "%s:%s:%s" % (user, realm, pw)
1074 A2 = "%s:%s" % (req.get_method(),
1075 # XXX selector: what about proxies and full urls
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001076 req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001077 if qop == 'auth':
Senthil Kumaran4c7eaee2009-11-15 08:43:45 +00001078 if nonce == self.last_nonce:
1079 self.nonce_count += 1
1080 else:
1081 self.nonce_count = 1
1082 self.last_nonce = nonce
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001083 ncvalue = '%08x' % self.nonce_count
1084 cnonce = self.get_cnonce(nonce)
1085 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
1086 respdig = KD(H(A1), noncebit)
1087 elif qop is None:
1088 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1089 else:
1090 # XXX handle auth-int.
Georg Brandl13e89462008-07-01 19:56:00 +00001091 raise URLError("qop '%s' is not supported." % qop)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001092
1093 # XXX should the partial digests be encoded too?
1094
1095 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001096 'response="%s"' % (user, realm, nonce, req.selector,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001097 respdig)
1098 if opaque:
1099 base += ', opaque="%s"' % opaque
1100 if entdig:
1101 base += ', digest="%s"' % entdig
1102 base += ', algorithm="%s"' % algorithm
1103 if qop:
1104 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
1105 return base
1106
1107 def get_algorithm_impls(self, algorithm):
1108 # lambdas assume digest modules are imported at the top level
1109 if algorithm == 'MD5':
1110 H = lambda x: hashlib.md5(x.encode("ascii")).hexdigest()
1111 elif algorithm == 'SHA':
1112 H = lambda x: hashlib.sha1(x.encode("ascii")).hexdigest()
1113 # XXX MD5-sess
1114 KD = lambda s, d: H("%s:%s" % (s, d))
1115 return H, KD
1116
1117 def get_entity_digest(self, data, chal):
1118 # XXX not implemented yet
1119 return None
1120
1121
1122class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1123 """An authentication protocol defined by RFC 2069
1124
1125 Digest authentication improves on basic authentication because it
1126 does not transmit passwords in the clear.
1127 """
1128
1129 auth_header = 'Authorization'
1130 handler_order = 490 # before Basic auth
1131
1132 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001133 host = urlparse(req.full_url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001134 retry = self.http_error_auth_reqed('www-authenticate',
1135 host, req, headers)
1136 self.reset_retry_count()
1137 return retry
1138
1139
1140class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1141
1142 auth_header = 'Proxy-Authorization'
1143 handler_order = 490 # before Basic auth
1144
1145 def http_error_407(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001146 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001147 retry = self.http_error_auth_reqed('proxy-authenticate',
1148 host, req, headers)
1149 self.reset_retry_count()
1150 return retry
1151
1152class AbstractHTTPHandler(BaseHandler):
1153
1154 def __init__(self, debuglevel=0):
1155 self._debuglevel = debuglevel
1156
1157 def set_http_debuglevel(self, level):
1158 self._debuglevel = level
1159
1160 def do_request_(self, request):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001161 host = request.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001162 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001163 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001164
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001165 if request.data is not None: # POST
1166 data = request.data
Senthil Kumaran29333122011-02-11 11:25:47 +00001167 if isinstance(data, str):
Georg Brandlfcbdbf22012-06-24 19:56:31 +02001168 msg = "POST data should be bytes or an iterable of bytes. " \
1169 "It cannot be of type str."
Senthil Kumaran6b3434a2012-03-15 18:11:16 -07001170 raise TypeError(msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001171 if not request.has_header('Content-type'):
1172 request.add_unredirected_header(
1173 'Content-type',
1174 'application/x-www-form-urlencoded')
1175 if not request.has_header('Content-length'):
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001176 try:
1177 mv = memoryview(data)
1178 except TypeError:
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001179 if isinstance(data, collections.Iterable):
Georg Brandl61536042011-02-03 07:46:41 +00001180 raise ValueError("Content-Length should be specified "
1181 "for iterable data of type %r %r" % (type(data),
Senthil Kumaran7bc0d872010-12-19 10:49:52 +00001182 data))
1183 else:
1184 request.add_unredirected_header(
Senthil Kumaran1e991f22010-12-24 04:03:59 +00001185 'Content-length', '%d' % (len(mv) * mv.itemsize))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001186
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001187 sel_host = host
1188 if request.has_proxy():
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001189 scheme, sel = splittype(request.selector)
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001190 sel_host, sel_path = splithost(sel)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001191 if not request.has_header('Host'):
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001192 request.add_unredirected_header('Host', sel_host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001193 for name, value in self.parent.addheaders:
1194 name = name.capitalize()
1195 if not request.has_header(name):
1196 request.add_unredirected_header(name, value)
1197
1198 return request
1199
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001200 def do_open(self, http_class, req, **http_conn_args):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001201 """Return an HTTPResponse object for the request, using http_class.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001202
1203 http_class must implement the HTTPConnection API from http.client.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001204 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001205 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001206 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001207 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001208
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001209 # will parse host:port
1210 h = http_class(host, timeout=req.timeout, **http_conn_args)
Senthil Kumaran42ef4b12010-09-27 01:26:03 +00001211
1212 headers = dict(req.unredirected_hdrs)
1213 headers.update(dict((k, v) for k, v in req.headers.items()
1214 if k not in headers))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001215
1216 # TODO(jhylton): Should this be redesigned to handle
1217 # persistent connections?
1218
1219 # We want to make an HTTP/1.1 request, but the addinfourl
1220 # class isn't prepared to deal with a persistent connection.
1221 # It will try to read all remaining data from the socket,
1222 # which will block while the server waits for the next request.
1223 # So make sure the connection gets closed after the (only)
1224 # request.
1225 headers["Connection"] = "close"
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001226 headers = dict((name.title(), val) for name, val in headers.items())
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +00001227
1228 if req._tunnel_host:
Senthil Kumaran47fff872009-12-20 07:10:31 +00001229 tunnel_headers = {}
1230 proxy_auth_hdr = "Proxy-Authorization"
1231 if proxy_auth_hdr in headers:
1232 tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1233 # Proxy-Authorization should not be sent to origin
1234 # server.
1235 del headers[proxy_auth_hdr]
1236 h.set_tunnel(req._tunnel_host, headers=tunnel_headers)
Senthil Kumaran97f0c6b2009-07-25 04:24:38 +00001237
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001238 try:
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001239 h.request(req.get_method(), req.selector, req.data, headers)
Andrew Svetlov0832af62012-12-18 23:10:48 +02001240 except OSError as err: # timeout error
Senthil Kumaran45686b42011-07-27 09:31:03 +08001241 h.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001242 raise URLError(err)
Senthil Kumaran45686b42011-07-27 09:31:03 +08001243 else:
1244 r = h.getresponse()
Nadeem Vawdabd26b542012-10-21 17:37:43 +02001245 # If the server does not send us a 'Connection: close' header,
1246 # HTTPConnection assumes the socket should be left open. Manually
1247 # mark the socket to be closed when this response object goes away.
1248 if h.sock:
1249 h.sock.close()
1250 h.sock = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001251
Senthil Kumaran26430412011-04-13 07:01:19 +08001252 r.url = req.get_full_url()
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001253 # This line replaces the .msg attribute of the HTTPResponse
1254 # with .headers, because urllib clients expect the response to
1255 # have the reason in .msg. It would be good to mark this
1256 # attribute is deprecated and get then to use info() or
1257 # .headers.
1258 r.msg = r.reason
1259 return r
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001260
1261
1262class HTTPHandler(AbstractHTTPHandler):
1263
1264 def http_open(self, req):
1265 return self.do_open(http.client.HTTPConnection, req)
1266
1267 http_request = AbstractHTTPHandler.do_request_
1268
1269if hasattr(http.client, 'HTTPSConnection'):
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001270
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001271 class HTTPSHandler(AbstractHTTPHandler):
1272
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001273 def __init__(self, debuglevel=0, context=None, check_hostname=None):
1274 AbstractHTTPHandler.__init__(self, debuglevel)
1275 self._context = context
1276 self._check_hostname = check_hostname
1277
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001278 def https_open(self, req):
Antoine Pitrou803e6d62010-10-13 10:36:15 +00001279 return self.do_open(http.client.HTTPSConnection, req,
1280 context=self._context, check_hostname=self._check_hostname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001281
1282 https_request = AbstractHTTPHandler.do_request_
1283
Senthil Kumaran4c875a92011-11-01 23:57:57 +08001284 __all__.append('HTTPSHandler')
Senthil Kumaran0d54eb92011-11-01 23:49:46 +08001285
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001286class HTTPCookieProcessor(BaseHandler):
1287 def __init__(self, cookiejar=None):
1288 import http.cookiejar
1289 if cookiejar is None:
1290 cookiejar = http.cookiejar.CookieJar()
1291 self.cookiejar = cookiejar
1292
1293 def http_request(self, request):
1294 self.cookiejar.add_cookie_header(request)
1295 return request
1296
1297 def http_response(self, request, response):
1298 self.cookiejar.extract_cookies(response, request)
1299 return response
1300
1301 https_request = http_request
1302 https_response = http_response
1303
1304class UnknownHandler(BaseHandler):
1305 def unknown_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001306 type = req.type
Georg Brandl13e89462008-07-01 19:56:00 +00001307 raise URLError('unknown url type: %s' % type)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001308
1309def parse_keqv_list(l):
1310 """Parse list of key=value strings where keys are not duplicated."""
1311 parsed = {}
1312 for elt in l:
1313 k, v = elt.split('=', 1)
1314 if v[0] == '"' and v[-1] == '"':
1315 v = v[1:-1]
1316 parsed[k] = v
1317 return parsed
1318
1319def parse_http_list(s):
1320 """Parse lists as described by RFC 2068 Section 2.
1321
1322 In particular, parse comma-separated lists where the elements of
1323 the list may include quoted-strings. A quoted-string could
1324 contain a comma. A non-quoted string could have quotes in the
1325 middle. Neither commas nor quotes count if they are escaped.
1326 Only double-quotes count, not single-quotes.
1327 """
1328 res = []
1329 part = ''
1330
1331 escape = quote = False
1332 for cur in s:
1333 if escape:
1334 part += cur
1335 escape = False
1336 continue
1337 if quote:
1338 if cur == '\\':
1339 escape = True
1340 continue
1341 elif cur == '"':
1342 quote = False
1343 part += cur
1344 continue
1345
1346 if cur == ',':
1347 res.append(part)
1348 part = ''
1349 continue
1350
1351 if cur == '"':
1352 quote = True
1353
1354 part += cur
1355
1356 # append last part
1357 if part:
1358 res.append(part)
1359
1360 return [part.strip() for part in res]
1361
1362class FileHandler(BaseHandler):
1363 # Use local file or FTP depending on form of URL
1364 def file_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001365 url = req.selector
Senthil Kumaran2ef16322010-07-11 03:12:43 +00001366 if url[:2] == '//' and url[2:3] != '/' and (req.host and
1367 req.host != 'localhost'):
Senthil Kumaran383c32d2010-10-14 11:57:35 +00001368 if not req.host is self.get_names():
1369 raise URLError("file:// scheme is supported only on localhost")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001370 else:
1371 return self.open_local_file(req)
1372
1373 # names for the localhost
1374 names = None
1375 def get_names(self):
1376 if FileHandler.names is None:
1377 try:
Senthil Kumaran99b2c8f2009-12-27 10:13:39 +00001378 FileHandler.names = tuple(
1379 socket.gethostbyname_ex('localhost')[2] +
1380 socket.gethostbyname_ex(socket.gethostname())[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001381 except socket.gaierror:
1382 FileHandler.names = (socket.gethostbyname('localhost'),)
1383 return FileHandler.names
1384
1385 # not entirely sure what the rules are here
1386 def open_local_file(self, req):
1387 import email.utils
1388 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001389 host = req.host
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001390 filename = req.selector
1391 localfile = url2pathname(filename)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001392 try:
1393 stats = os.stat(localfile)
1394 size = stats.st_size
1395 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001396 mtype = mimetypes.guess_type(filename)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001397 headers = email.message_from_string(
1398 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1399 (mtype or 'text/plain', size, modified))
1400 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001401 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001402 if not host or \
1403 (not port and _safe_gethostbyname(host) in self.get_names()):
Senthil Kumaran06f5a532010-05-08 05:12:05 +00001404 if host:
1405 origurl = 'file://' + host + filename
1406 else:
1407 origurl = 'file://' + filename
1408 return addinfourl(open(localfile, 'rb'), headers, origurl)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001409 except OSError as exp:
Georg Brandl029986a2008-06-23 11:44:14 +00001410 # users shouldn't expect OSErrors coming from urlopen()
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001411 raise URLError(exp)
Georg Brandl13e89462008-07-01 19:56:00 +00001412 raise URLError('file not on local host')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001413
1414def _safe_gethostbyname(host):
1415 try:
1416 return socket.gethostbyname(host)
1417 except socket.gaierror:
1418 return None
1419
1420class FTPHandler(BaseHandler):
1421 def ftp_open(self, req):
1422 import ftplib
1423 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001424 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001425 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001426 raise URLError('ftp error: no host given')
1427 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001428 if port is None:
1429 port = ftplib.FTP_PORT
1430 else:
1431 port = int(port)
1432
1433 # username/password handling
Georg Brandl13e89462008-07-01 19:56:00 +00001434 user, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001435 if user:
Georg Brandl13e89462008-07-01 19:56:00 +00001436 user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001437 else:
1438 passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00001439 host = unquote(host)
Senthil Kumarandaa29d02010-11-18 15:36:41 +00001440 user = user or ''
1441 passwd = passwd or ''
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001442
1443 try:
1444 host = socket.gethostbyname(host)
Andrew Svetlov0832af62012-12-18 23:10:48 +02001445 except OSError as msg:
Georg Brandl13e89462008-07-01 19:56:00 +00001446 raise URLError(msg)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001447 path, attrs = splitattr(req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001448 dirs = path.split('/')
Georg Brandl13e89462008-07-01 19:56:00 +00001449 dirs = list(map(unquote, dirs))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001450 dirs, file = dirs[:-1], dirs[-1]
1451 if dirs and not dirs[0]:
1452 dirs = dirs[1:]
1453 try:
1454 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
1455 type = file and 'I' or 'D'
1456 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00001457 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001458 if attr.lower() == 'type' and \
1459 value in ('a', 'A', 'i', 'I', 'd', 'D'):
1460 type = value.upper()
1461 fp, retrlen = fw.retrfile(file, type)
1462 headers = ""
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001463 mtype = mimetypes.guess_type(req.full_url)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001464 if mtype:
1465 headers += "Content-type: %s\n" % mtype
1466 if retrlen is not None and retrlen >= 0:
1467 headers += "Content-length: %d\n" % retrlen
1468 headers = email.message_from_string(headers)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001469 return addinfourl(fp, headers, req.full_url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001470 except ftplib.all_errors as exp:
1471 exc = URLError('ftp error: %r' % exp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001472 raise exc.with_traceback(sys.exc_info()[2])
1473
1474 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001475 return ftpwrapper(user, passwd, host, port, dirs, timeout,
1476 persistent=False)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001477
1478class CacheFTPHandler(FTPHandler):
1479 # XXX would be nice to have pluggable cache strategies
1480 # XXX this stuff is definitely not thread safe
1481 def __init__(self):
1482 self.cache = {}
1483 self.timeout = {}
1484 self.soonest = 0
1485 self.delay = 60
1486 self.max_conns = 16
1487
1488 def setTimeout(self, t):
1489 self.delay = t
1490
1491 def setMaxConns(self, m):
1492 self.max_conns = m
1493
1494 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1495 key = user, host, port, '/'.join(dirs), timeout
1496 if key in self.cache:
1497 self.timeout[key] = time.time() + self.delay
1498 else:
1499 self.cache[key] = ftpwrapper(user, passwd, host, port,
1500 dirs, timeout)
1501 self.timeout[key] = time.time() + self.delay
1502 self.check_cache()
1503 return self.cache[key]
1504
1505 def check_cache(self):
1506 # first check for old ones
1507 t = time.time()
1508 if self.soonest <= t:
1509 for k, v in list(self.timeout.items()):
1510 if v < t:
1511 self.cache[k].close()
1512 del self.cache[k]
1513 del self.timeout[k]
1514 self.soonest = min(list(self.timeout.values()))
1515
1516 # then check the size
1517 if len(self.cache) == self.max_conns:
1518 for k, v in list(self.timeout.items()):
1519 if v == self.soonest:
1520 del self.cache[k]
1521 del self.timeout[k]
1522 break
1523 self.soonest = min(list(self.timeout.values()))
1524
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001525 def clear_cache(self):
1526 for conn in self.cache.values():
1527 conn.close()
1528 self.cache.clear()
1529 self.timeout.clear()
1530
Antoine Pitroudf204be2012-11-24 17:59:08 +01001531class DataHandler(BaseHandler):
1532 def data_open(self, req):
1533 # data URLs as specified in RFC 2397.
1534 #
1535 # ignores POSTed data
1536 #
1537 # syntax:
1538 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
1539 # mediatype := [ type "/" subtype ] *( ";" parameter )
1540 # data := *urlchar
1541 # parameter := attribute "=" value
1542 url = req.full_url
1543
1544 scheme, data = url.split(":",1)
1545 mediatype, data = data.split(",",1)
1546
1547 # even base64 encoded data URLs might be quoted so unquote in any case:
1548 data = unquote_to_bytes(data)
1549 if mediatype.endswith(";base64"):
1550 data = base64.decodebytes(data)
1551 mediatype = mediatype[:-7]
1552
1553 if not mediatype:
1554 mediatype = "text/plain;charset=US-ASCII"
1555
1556 headers = email.message_from_string("Content-type: %s\nContent-length: %d\n" %
1557 (mediatype, len(data)))
1558
1559 return addinfourl(io.BytesIO(data), headers, url)
1560
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02001561
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001562# Code move from the old urllib module
1563
1564MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
1565
1566# Helper for non-unix systems
Ronald Oussoren94f25282010-05-05 19:11:21 +00001567if os.name == 'nt':
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001568 from nturl2path import url2pathname, pathname2url
1569else:
1570 def url2pathname(pathname):
1571 """OS-specific conversion from a relative URL of the 'file' scheme
1572 to a file system path; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001573 return unquote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001574
1575 def pathname2url(pathname):
1576 """OS-specific conversion from a file system path to a relative URL
1577 of the 'file' scheme; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001578 return quote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001579
1580# This really consists of two pieces:
1581# (1) a class which handles opening of all sorts of URLs
1582# (plus assorted utilities etc.)
1583# (2) a set of functions for parsing URLs
1584# XXX Should these be separated out into different modules?
1585
1586
1587ftpcache = {}
1588class URLopener:
1589 """Class to open URLs.
1590 This is a class rather than just a subroutine because we may need
1591 more than one set of global protocol-specific options.
1592 Note -- this is a base class for those who don't want the
1593 automatic handling of errors type 302 (relocated) and 401
1594 (authorization needed)."""
1595
1596 __tempfiles = None
1597
1598 version = "Python-urllib/%s" % __version__
1599
1600 # Constructor
1601 def __init__(self, proxies=None, **x509):
Georg Brandlfcbdbf22012-06-24 19:56:31 +02001602 msg = "%(class)s style of invoking requests is deprecated. " \
Senthil Kumaran38b968b92012-03-14 13:43:53 -07001603 "Use newer urlopen functions/methods" % {'class': self.__class__.__name__}
1604 warnings.warn(msg, DeprecationWarning, stacklevel=3)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001605 if proxies is None:
1606 proxies = getproxies()
1607 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
1608 self.proxies = proxies
1609 self.key_file = x509.get('key_file')
1610 self.cert_file = x509.get('cert_file')
1611 self.addheaders = [('User-Agent', self.version)]
1612 self.__tempfiles = []
1613 self.__unlink = os.unlink # See cleanup()
1614 self.tempcache = None
1615 # Undocumented feature: if you assign {} to tempcache,
1616 # it is used to cache files retrieved with
1617 # self.retrieve(). This is not enabled by default
1618 # since it does not work for changing documents (and I
1619 # haven't got the logic to check expiration headers
1620 # yet).
1621 self.ftpcache = ftpcache
1622 # Undocumented feature: you can use a different
1623 # ftp cache by assigning to the .ftpcache member;
1624 # in case you want logically independent URL openers
1625 # XXX This is not threadsafe. Bah.
1626
1627 def __del__(self):
1628 self.close()
1629
1630 def close(self):
1631 self.cleanup()
1632
1633 def cleanup(self):
1634 # This code sometimes runs when the rest of this module
1635 # has already been deleted, so it can't use any globals
1636 # or import anything.
1637 if self.__tempfiles:
1638 for file in self.__tempfiles:
1639 try:
1640 self.__unlink(file)
1641 except OSError:
1642 pass
1643 del self.__tempfiles[:]
1644 if self.tempcache:
1645 self.tempcache.clear()
1646
1647 def addheader(self, *args):
1648 """Add a header to be used by the HTTP interface only
1649 e.g. u.addheader('Accept', 'sound/basic')"""
1650 self.addheaders.append(args)
1651
1652 # External interface
1653 def open(self, fullurl, data=None):
1654 """Use URLopener().open(file) instead of open(file, 'r')."""
Georg Brandl13e89462008-07-01 19:56:00 +00001655 fullurl = unwrap(to_bytes(fullurl))
Senthil Kumaran734f0592010-02-20 22:19:04 +00001656 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001657 if self.tempcache and fullurl in self.tempcache:
1658 filename, headers = self.tempcache[fullurl]
1659 fp = open(filename, 'rb')
Georg Brandl13e89462008-07-01 19:56:00 +00001660 return addinfourl(fp, headers, fullurl)
1661 urltype, url = splittype(fullurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001662 if not urltype:
1663 urltype = 'file'
1664 if urltype in self.proxies:
1665 proxy = self.proxies[urltype]
Georg Brandl13e89462008-07-01 19:56:00 +00001666 urltype, proxyhost = splittype(proxy)
1667 host, selector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001668 url = (host, fullurl) # Signal special case to open_*()
1669 else:
1670 proxy = None
1671 name = 'open_' + urltype
1672 self.type = urltype
1673 name = name.replace('-', '_')
1674 if not hasattr(self, name):
1675 if proxy:
1676 return self.open_unknown_proxy(proxy, fullurl, data)
1677 else:
1678 return self.open_unknown(fullurl, data)
1679 try:
1680 if data is None:
1681 return getattr(self, name)(url)
1682 else:
1683 return getattr(self, name)(url, data)
Senthil Kumaranf5776862012-10-21 13:30:02 -07001684 except (HTTPError, URLError):
Antoine Pitrou6b4883d2011-10-12 02:54:14 +02001685 raise
Andrew Svetlov0832af62012-12-18 23:10:48 +02001686 except OSError as msg:
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001687 raise OSError('socket error', msg).with_traceback(sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001688
1689 def open_unknown(self, fullurl, data=None):
1690 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001691 type, url = splittype(fullurl)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001692 raise OSError('url error', 'unknown url type', type)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001693
1694 def open_unknown_proxy(self, proxy, fullurl, data=None):
1695 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001696 type, url = splittype(fullurl)
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001697 raise OSError('url error', 'invalid proxy for %s' % type, proxy)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001698
1699 # External interface
1700 def retrieve(self, url, filename=None, reporthook=None, data=None):
1701 """retrieve(url) returns (filename, headers) for a local object
1702 or (tempfilename, headers) for a remote object."""
Georg Brandl13e89462008-07-01 19:56:00 +00001703 url = unwrap(to_bytes(url))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001704 if self.tempcache and url in self.tempcache:
1705 return self.tempcache[url]
Georg Brandl13e89462008-07-01 19:56:00 +00001706 type, url1 = splittype(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001707 if filename is None and (not type or type == 'file'):
1708 try:
1709 fp = self.open_local_file(url1)
1710 hdrs = fp.info()
Philip Jenveycb134d72009-12-03 02:45:01 +00001711 fp.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001712 return url2pathname(splithost(url1)[1]), hdrs
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001713 except OSError as msg:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001714 pass
1715 fp = self.open(url, data)
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001716 try:
1717 headers = fp.info()
1718 if filename:
1719 tfp = open(filename, 'wb')
1720 else:
1721 import tempfile
1722 garbage, path = splittype(url)
1723 garbage, path = splithost(path or "")
1724 path, garbage = splitquery(path or "")
1725 path, garbage = splitattr(path or "")
1726 suffix = os.path.splitext(path)[1]
1727 (fd, filename) = tempfile.mkstemp(suffix)
1728 self.__tempfiles.append(filename)
1729 tfp = os.fdopen(fd, 'wb')
1730 try:
1731 result = filename, headers
1732 if self.tempcache is not None:
1733 self.tempcache[url] = result
1734 bs = 1024*8
1735 size = -1
1736 read = 0
1737 blocknum = 0
Senthil Kumarance260142011-11-01 01:35:17 +08001738 if "content-length" in headers:
1739 size = int(headers["Content-Length"])
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001740 if reporthook:
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001741 reporthook(blocknum, bs, size)
1742 while 1:
1743 block = fp.read(bs)
1744 if not block:
1745 break
1746 read += len(block)
1747 tfp.write(block)
1748 blocknum += 1
1749 if reporthook:
1750 reporthook(blocknum, bs, size)
1751 finally:
1752 tfp.close()
1753 finally:
1754 fp.close()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001755
1756 # raise exception if actual size does not match content-length header
1757 if size >= 0 and read < size:
Georg Brandl13e89462008-07-01 19:56:00 +00001758 raise ContentTooShortError(
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001759 "retrieval incomplete: got only %i out of %i bytes"
1760 % (read, size), result)
1761
1762 return result
1763
1764 # Each method named open_<type> knows how to open that type of URL
1765
1766 def _open_generic_http(self, connection_factory, url, data):
1767 """Make an HTTP connection using connection_class.
1768
1769 This is an internal method that should be called from
1770 open_http() or open_https().
1771
1772 Arguments:
1773 - connection_factory should take a host name and return an
1774 HTTPConnection instance.
1775 - url is the url to retrieval or a host, relative-path pair.
1776 - data is payload for a POST request or None.
1777 """
1778
1779 user_passwd = None
1780 proxy_passwd= None
1781 if isinstance(url, str):
Georg Brandl13e89462008-07-01 19:56:00 +00001782 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001783 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001784 user_passwd, host = splituser(host)
1785 host = unquote(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001786 realhost = host
1787 else:
1788 host, selector = url
1789 # check whether the proxy contains authorization information
Georg Brandl13e89462008-07-01 19:56:00 +00001790 proxy_passwd, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001791 # now we proceed with the url we want to obtain
Georg Brandl13e89462008-07-01 19:56:00 +00001792 urltype, rest = splittype(selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001793 url = rest
1794 user_passwd = None
1795 if urltype.lower() != 'http':
1796 realhost = None
1797 else:
Georg Brandl13e89462008-07-01 19:56:00 +00001798 realhost, rest = splithost(rest)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001799 if realhost:
Georg Brandl13e89462008-07-01 19:56:00 +00001800 user_passwd, realhost = splituser(realhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001801 if user_passwd:
1802 selector = "%s://%s%s" % (urltype, realhost, rest)
1803 if proxy_bypass(realhost):
1804 host = realhost
1805
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001806 if not host: raise OSError('http error', 'no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001807
1808 if proxy_passwd:
Senthil Kumaranc5c5a142012-01-14 19:09:04 +08001809 proxy_passwd = unquote(proxy_passwd)
Senthil Kumaran5626eec2010-08-04 17:46:23 +00001810 proxy_auth = base64.b64encode(proxy_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001811 else:
1812 proxy_auth = None
1813
1814 if user_passwd:
Senthil Kumaranc5c5a142012-01-14 19:09:04 +08001815 user_passwd = unquote(user_passwd)
Senthil Kumaran5626eec2010-08-04 17:46:23 +00001816 auth = base64.b64encode(user_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001817 else:
1818 auth = None
1819 http_conn = connection_factory(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001820 headers = {}
1821 if proxy_auth:
1822 headers["Proxy-Authorization"] = "Basic %s" % proxy_auth
1823 if auth:
1824 headers["Authorization"] = "Basic %s" % auth
1825 if realhost:
1826 headers["Host"] = realhost
Senthil Kumarand91ffca2011-03-19 17:25:27 +08001827
1828 # Add Connection:close as we don't support persistent connections yet.
1829 # This helps in closing the socket and avoiding ResourceWarning
1830
1831 headers["Connection"] = "close"
1832
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001833 for header, value in self.addheaders:
1834 headers[header] = value
1835
1836 if data is not None:
1837 headers["Content-Type"] = "application/x-www-form-urlencoded"
1838 http_conn.request("POST", selector, data, headers)
1839 else:
1840 http_conn.request("GET", selector, headers=headers)
1841
1842 try:
1843 response = http_conn.getresponse()
1844 except http.client.BadStatusLine:
1845 # something went wrong with the HTTP status line
Georg Brandl13e89462008-07-01 19:56:00 +00001846 raise URLError("http protocol error: bad status line")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001847
1848 # According to RFC 2616, "2xx" code indicates that the client's
1849 # request was successfully received, understood, and accepted.
1850 if 200 <= response.status < 300:
Antoine Pitroub353c122009-02-11 00:39:14 +00001851 return addinfourl(response, response.msg, "http:" + url,
Georg Brandl13e89462008-07-01 19:56:00 +00001852 response.status)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001853 else:
1854 return self.http_error(
1855 url, response.fp,
1856 response.status, response.reason, response.msg, data)
1857
1858 def open_http(self, url, data=None):
1859 """Use HTTP protocol."""
1860 return self._open_generic_http(http.client.HTTPConnection, url, data)
1861
1862 def http_error(self, url, fp, errcode, errmsg, headers, data=None):
1863 """Handle http errors.
1864
1865 Derived class can override this, or provide specific handlers
1866 named http_error_DDD where DDD is the 3-digit error code."""
1867 # First check if there's a specific handler for this error
1868 name = 'http_error_%d' % errcode
1869 if hasattr(self, name):
1870 method = getattr(self, name)
1871 if data is None:
1872 result = method(url, fp, errcode, errmsg, headers)
1873 else:
1874 result = method(url, fp, errcode, errmsg, headers, data)
1875 if result: return result
1876 return self.http_error_default(url, fp, errcode, errmsg, headers)
1877
1878 def http_error_default(self, url, fp, errcode, errmsg, headers):
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02001879 """Default error handler: close the connection and raise OSError."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001880 fp.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001881 raise HTTPError(url, errcode, errmsg, headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001882
1883 if _have_ssl:
1884 def _https_connection(self, host):
1885 return http.client.HTTPSConnection(host,
1886 key_file=self.key_file,
1887 cert_file=self.cert_file)
1888
1889 def open_https(self, url, data=None):
1890 """Use HTTPS protocol."""
1891 return self._open_generic_http(self._https_connection, url, data)
1892
1893 def open_file(self, url):
1894 """Use local file or FTP depending on form of URL."""
1895 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001896 raise URLError('file error: proxy support for file protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001897 if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
Senthil Kumaran383c32d2010-10-14 11:57:35 +00001898 raise ValueError("file:// scheme is supported only on localhost")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001899 else:
1900 return self.open_local_file(url)
1901
1902 def open_local_file(self, url):
1903 """Use local file."""
Senthil Kumaran6c5bd402011-11-01 23:20:31 +08001904 import email.utils
1905 import mimetypes
Georg Brandl13e89462008-07-01 19:56:00 +00001906 host, file = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001907 localname = url2pathname(file)
1908 try:
1909 stats = os.stat(localname)
1910 except OSError as e:
Senthil Kumaranf5776862012-10-21 13:30:02 -07001911 raise URLError(e.strerror, e.filename)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001912 size = stats.st_size
1913 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1914 mtype = mimetypes.guess_type(url)[0]
1915 headers = email.message_from_string(
1916 'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' %
1917 (mtype or 'text/plain', size, modified))
1918 if not host:
1919 urlfile = file
1920 if file[:1] == '/':
1921 urlfile = 'file://' + file
Georg Brandl13e89462008-07-01 19:56:00 +00001922 return addinfourl(open(localname, 'rb'), headers, urlfile)
1923 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001924 if (not port
Senthil Kumaran40d80782012-10-22 09:43:04 -07001925 and socket.gethostbyname(host) in ((localhost(),) + thishost())):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001926 urlfile = file
1927 if file[:1] == '/':
1928 urlfile = 'file://' + file
Senthil Kumaran3800ea92012-01-21 11:52:48 +08001929 elif file[:2] == './':
1930 raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url)
Georg Brandl13e89462008-07-01 19:56:00 +00001931 return addinfourl(open(localname, 'rb'), headers, urlfile)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001932 raise URLError('local file error: not on local host')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001933
1934 def open_ftp(self, url):
1935 """Use FTP protocol."""
1936 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001937 raise URLError('ftp error: proxy support for ftp protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001938 import mimetypes
Georg Brandl13e89462008-07-01 19:56:00 +00001939 host, path = splithost(url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001940 if not host: raise URLError('ftp error: no host given')
Georg Brandl13e89462008-07-01 19:56:00 +00001941 host, port = splitport(host)
1942 user, host = splituser(host)
1943 if user: user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001944 else: passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00001945 host = unquote(host)
1946 user = unquote(user or '')
1947 passwd = unquote(passwd or '')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001948 host = socket.gethostbyname(host)
1949 if not port:
1950 import ftplib
1951 port = ftplib.FTP_PORT
1952 else:
1953 port = int(port)
Georg Brandl13e89462008-07-01 19:56:00 +00001954 path, attrs = splitattr(path)
1955 path = unquote(path)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001956 dirs = path.split('/')
1957 dirs, file = dirs[:-1], dirs[-1]
1958 if dirs and not dirs[0]: dirs = dirs[1:]
1959 if dirs and not dirs[0]: dirs[0] = '/'
1960 key = user, host, port, '/'.join(dirs)
1961 # XXX thread unsafe!
1962 if len(self.ftpcache) > MAXFTPCACHE:
1963 # Prune the cache, rather arbitrarily
1964 for k in self.ftpcache.keys():
1965 if k != key:
1966 v = self.ftpcache[k]
1967 del self.ftpcache[k]
1968 v.close()
1969 try:
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08001970 if key not in self.ftpcache:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001971 self.ftpcache[key] = \
1972 ftpwrapper(user, passwd, host, port, dirs)
1973 if not file: type = 'D'
1974 else: type = 'I'
1975 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00001976 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001977 if attr.lower() == 'type' and \
1978 value in ('a', 'A', 'i', 'I', 'd', 'D'):
1979 type = value.upper()
1980 (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
1981 mtype = mimetypes.guess_type("ftp:" + url)[0]
1982 headers = ""
1983 if mtype:
1984 headers += "Content-Type: %s\n" % mtype
1985 if retrlen is not None and retrlen >= 0:
1986 headers += "Content-Length: %d\n" % retrlen
1987 headers = email.message_from_string(headers)
Georg Brandl13e89462008-07-01 19:56:00 +00001988 return addinfourl(fp, headers, "ftp:" + url)
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001989 except ftperrors() as exp:
1990 raise URLError('ftp error %r' % exp).with_traceback(sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001991
1992 def open_data(self, url, data=None):
1993 """Use "data" URL."""
1994 if not isinstance(url, str):
Senthil Kumaran3ebef362012-10-21 18:31:25 -07001995 raise URLError('data error: proxy support for data protocol currently not implemented')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001996 # ignore POSTed data
1997 #
1998 # syntax of data URLs:
1999 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
2000 # mediatype := [ type "/" subtype ] *( ";" parameter )
2001 # data := *urlchar
2002 # parameter := attribute "=" value
2003 try:
2004 [type, data] = url.split(',', 1)
2005 except ValueError:
Andrew Svetlovf7a17b42012-12-25 16:47:37 +02002006 raise OSError('data error', 'bad data URL')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002007 if not type:
2008 type = 'text/plain;charset=US-ASCII'
2009 semi = type.rfind(';')
2010 if semi >= 0 and '=' not in type[semi:]:
2011 encoding = type[semi+1:]
2012 type = type[:semi]
2013 else:
2014 encoding = ''
2015 msg = []
Senthil Kumaranf6c456d2010-05-01 08:29:18 +00002016 msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT',
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002017 time.gmtime(time.time())))
2018 msg.append('Content-type: %s' % type)
2019 if encoding == 'base64':
Georg Brandl706824f2009-06-04 09:42:55 +00002020 # XXX is this encoding/decoding ok?
Marc-André Lemburg8f36af72011-02-25 15:42:01 +00002021 data = base64.decodebytes(data.encode('ascii')).decode('latin-1')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002022 else:
Georg Brandl13e89462008-07-01 19:56:00 +00002023 data = unquote(data)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002024 msg.append('Content-Length: %d' % len(data))
2025 msg.append('')
2026 msg.append(data)
2027 msg = '\n'.join(msg)
Georg Brandl13e89462008-07-01 19:56:00 +00002028 headers = email.message_from_string(msg)
2029 f = io.StringIO(msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002030 #f.fileno = None # needed for addinfourl
Georg Brandl13e89462008-07-01 19:56:00 +00002031 return addinfourl(f, headers, url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002032
2033
2034class FancyURLopener(URLopener):
2035 """Derived class with handlers for errors we can handle (perhaps)."""
2036
2037 def __init__(self, *args, **kwargs):
2038 URLopener.__init__(self, *args, **kwargs)
2039 self.auth_cache = {}
2040 self.tries = 0
2041 self.maxtries = 10
2042
2043 def http_error_default(self, url, fp, errcode, errmsg, headers):
2044 """Default error handling -- don't raise an exception."""
Georg Brandl13e89462008-07-01 19:56:00 +00002045 return addinfourl(fp, headers, "http:" + url, errcode)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002046
2047 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
2048 """Error 302 -- relocated (temporarily)."""
2049 self.tries += 1
2050 if self.maxtries and self.tries >= self.maxtries:
2051 if hasattr(self, "http_error_500"):
2052 meth = self.http_error_500
2053 else:
2054 meth = self.http_error_default
2055 self.tries = 0
2056 return meth(url, fp, 500,
2057 "Internal Server Error: Redirect Recursion", headers)
2058 result = self.redirect_internal(url, fp, errcode, errmsg, headers,
2059 data)
2060 self.tries = 0
2061 return result
2062
2063 def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
2064 if 'location' in headers:
2065 newurl = headers['location']
2066 elif 'uri' in headers:
2067 newurl = headers['uri']
2068 else:
2069 return
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002070 fp.close()
guido@google.coma119df92011-03-29 11:41:02 -07002071
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002072 # In case the server sent a relative URL, join with original:
Georg Brandl13e89462008-07-01 19:56:00 +00002073 newurl = urljoin(self.type + ":" + url, newurl)
guido@google.coma119df92011-03-29 11:41:02 -07002074
2075 urlparts = urlparse(newurl)
2076
2077 # For security reasons, we don't allow redirection to anything other
2078 # than http, https and ftp.
2079
2080 # We are using newer HTTPError with older redirect_internal method
2081 # This older method will get deprecated in 3.3
2082
Senthil Kumaran6497aa32012-01-04 13:46:59 +08002083 if urlparts.scheme not in ('http', 'https', 'ftp', ''):
guido@google.coma119df92011-03-29 11:41:02 -07002084 raise HTTPError(newurl, errcode,
2085 errmsg +
2086 " Redirection to url '%s' is not allowed." % newurl,
2087 headers, fp)
2088
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002089 return self.open(newurl)
2090
2091 def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):
2092 """Error 301 -- also relocated (permanently)."""
2093 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2094
2095 def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):
2096 """Error 303 -- also relocated (essentially identical to 302)."""
2097 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2098
2099 def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):
2100 """Error 307 -- relocated, but turn POST into error."""
2101 if data is None:
2102 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
2103 else:
2104 return self.http_error_default(url, fp, errcode, errmsg, headers)
2105
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002106 def http_error_401(self, url, fp, errcode, errmsg, headers, data=None,
2107 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002108 """Error 401 -- authentication required.
2109 This function supports Basic authentication only."""
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08002110 if 'www-authenticate' not in headers:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002111 URLopener.http_error_default(self, url, fp,
2112 errcode, errmsg, headers)
2113 stuff = headers['www-authenticate']
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002114 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2115 if not match:
2116 URLopener.http_error_default(self, url, fp,
2117 errcode, errmsg, headers)
2118 scheme, realm = match.groups()
2119 if scheme.lower() != 'basic':
2120 URLopener.http_error_default(self, url, fp,
2121 errcode, errmsg, headers)
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002122 if not retry:
2123 URLopener.http_error_default(self, url, fp, errcode, errmsg,
2124 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002125 name = 'retry_' + self.type + '_basic_auth'
2126 if data is None:
2127 return getattr(self,name)(url, realm)
2128 else:
2129 return getattr(self,name)(url, realm, data)
2130
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002131 def http_error_407(self, url, fp, errcode, errmsg, headers, data=None,
2132 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002133 """Error 407 -- proxy authentication required.
2134 This function supports Basic authentication only."""
Senthil Kumaran34d38dc2011-10-20 02:48:01 +08002135 if 'proxy-authenticate' not in headers:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002136 URLopener.http_error_default(self, url, fp,
2137 errcode, errmsg, headers)
2138 stuff = headers['proxy-authenticate']
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002139 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
2140 if not match:
2141 URLopener.http_error_default(self, url, fp,
2142 errcode, errmsg, headers)
2143 scheme, realm = match.groups()
2144 if scheme.lower() != 'basic':
2145 URLopener.http_error_default(self, url, fp,
2146 errcode, errmsg, headers)
Senthil Kumaran80f1b052010-06-18 15:08:18 +00002147 if not retry:
2148 URLopener.http_error_default(self, url, fp, errcode, errmsg,
2149 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002150 name = 'retry_proxy_' + self.type + '_basic_auth'
2151 if data is None:
2152 return getattr(self,name)(url, realm)
2153 else:
2154 return getattr(self,name)(url, realm, data)
2155
2156 def retry_proxy_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002157 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002158 newurl = 'http://' + host + selector
2159 proxy = self.proxies['http']
Georg Brandl13e89462008-07-01 19:56:00 +00002160 urltype, proxyhost = splittype(proxy)
2161 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002162 i = proxyhost.find('@') + 1
2163 proxyhost = proxyhost[i:]
2164 user, passwd = self.get_user_passwd(proxyhost, realm, i)
2165 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002166 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002167 quote(passwd, safe=''), proxyhost)
2168 self.proxies['http'] = 'http://' + proxyhost + proxyselector
2169 if data is None:
2170 return self.open(newurl)
2171 else:
2172 return self.open(newurl, data)
2173
2174 def retry_proxy_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002175 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002176 newurl = 'https://' + host + selector
2177 proxy = self.proxies['https']
Georg Brandl13e89462008-07-01 19:56:00 +00002178 urltype, proxyhost = splittype(proxy)
2179 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002180 i = proxyhost.find('@') + 1
2181 proxyhost = proxyhost[i:]
2182 user, passwd = self.get_user_passwd(proxyhost, realm, i)
2183 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002184 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002185 quote(passwd, safe=''), proxyhost)
2186 self.proxies['https'] = 'https://' + proxyhost + proxyselector
2187 if data is None:
2188 return self.open(newurl)
2189 else:
2190 return self.open(newurl, data)
2191
2192 def retry_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002193 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002194 i = host.find('@') + 1
2195 host = host[i:]
2196 user, passwd = self.get_user_passwd(host, realm, i)
2197 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002198 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002199 quote(passwd, safe=''), host)
2200 newurl = 'http://' + host + selector
2201 if data is None:
2202 return self.open(newurl)
2203 else:
2204 return self.open(newurl, data)
2205
2206 def retry_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00002207 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002208 i = host.find('@') + 1
2209 host = host[i:]
2210 user, passwd = self.get_user_passwd(host, realm, i)
2211 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00002212 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002213 quote(passwd, safe=''), host)
2214 newurl = 'https://' + host + selector
2215 if data is None:
2216 return self.open(newurl)
2217 else:
2218 return self.open(newurl, data)
2219
Florent Xicluna757445b2010-05-17 17:24:07 +00002220 def get_user_passwd(self, host, realm, clear_cache=0):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002221 key = realm + '@' + host.lower()
2222 if key in self.auth_cache:
2223 if clear_cache:
2224 del self.auth_cache[key]
2225 else:
2226 return self.auth_cache[key]
2227 user, passwd = self.prompt_user_passwd(host, realm)
2228 if user or passwd: self.auth_cache[key] = (user, passwd)
2229 return user, passwd
2230
2231 def prompt_user_passwd(self, host, realm):
2232 """Override this in a GUI environment!"""
2233 import getpass
2234 try:
2235 user = input("Enter username for %s at %s: " % (realm, host))
2236 passwd = getpass.getpass("Enter password for %s in %s at %s: " %
2237 (user, realm, host))
2238 return user, passwd
2239 except KeyboardInterrupt:
2240 print()
2241 return None, None
2242
2243
2244# Utility functions
2245
2246_localhost = None
2247def localhost():
2248 """Return the IP address of the magic hostname 'localhost'."""
2249 global _localhost
2250 if _localhost is None:
2251 _localhost = socket.gethostbyname('localhost')
2252 return _localhost
2253
2254_thishost = None
2255def thishost():
Senthil Kumaran99b2c8f2009-12-27 10:13:39 +00002256 """Return the IP addresses of the current host."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002257 global _thishost
2258 if _thishost is None:
Senthil Kumarandcdadfe2013-06-01 11:12:17 -07002259 try:
2260 _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2])
2261 except socket.gaierror:
2262 _thishost = tuple(socket.gethostbyname_ex('localhost')[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002263 return _thishost
2264
2265_ftperrors = None
2266def ftperrors():
2267 """Return the set of errors raised by the FTP class."""
2268 global _ftperrors
2269 if _ftperrors is None:
2270 import ftplib
2271 _ftperrors = ftplib.all_errors
2272 return _ftperrors
2273
2274_noheaders = None
2275def noheaders():
Georg Brandl13e89462008-07-01 19:56:00 +00002276 """Return an empty email Message object."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002277 global _noheaders
2278 if _noheaders is None:
Georg Brandl13e89462008-07-01 19:56:00 +00002279 _noheaders = email.message_from_string("")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002280 return _noheaders
2281
2282
2283# Utility classes
2284
2285class ftpwrapper:
2286 """Class used by open_ftp() for cache of open FTP connections."""
2287
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002288 def __init__(self, user, passwd, host, port, dirs, timeout=None,
2289 persistent=True):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002290 self.user = user
2291 self.passwd = passwd
2292 self.host = host
2293 self.port = port
2294 self.dirs = dirs
2295 self.timeout = timeout
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002296 self.refcount = 0
2297 self.keepalive = persistent
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002298 self.init()
2299
2300 def init(self):
2301 import ftplib
2302 self.busy = 0
2303 self.ftp = ftplib.FTP()
2304 self.ftp.connect(self.host, self.port, self.timeout)
2305 self.ftp.login(self.user, self.passwd)
Senthil Kumarancaa00fe2013-06-02 11:59:47 -07002306 _target = '/'.join(self.dirs)
2307 self.ftp.cwd(_target)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002308
2309 def retrfile(self, file, type):
2310 import ftplib
2311 self.endtransfer()
2312 if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1
2313 else: cmd = 'TYPE ' + type; isdir = 0
2314 try:
2315 self.ftp.voidcmd(cmd)
2316 except ftplib.all_errors:
2317 self.init()
2318 self.ftp.voidcmd(cmd)
2319 conn = None
2320 if file and not isdir:
2321 # Try to retrieve as a file
2322 try:
2323 cmd = 'RETR ' + file
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002324 conn, retrlen = self.ftp.ntransfercmd(cmd)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002325 except ftplib.error_perm as reason:
2326 if str(reason)[:3] != '550':
Benjamin Peterson901a2782013-05-12 19:01:52 -05002327 raise URLError('ftp error: %r' % reason).with_traceback(
Georg Brandl13e89462008-07-01 19:56:00 +00002328 sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002329 if not conn:
2330 # Set transfer mode to ASCII!
2331 self.ftp.voidcmd('TYPE A')
2332 # Try a directory listing. Verify that directory exists.
2333 if file:
2334 pwd = self.ftp.pwd()
2335 try:
2336 try:
2337 self.ftp.cwd(file)
2338 except ftplib.error_perm as reason:
Benjamin Peterson901a2782013-05-12 19:01:52 -05002339 raise URLError('ftp error: %r' % reason) from reason
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002340 finally:
2341 self.ftp.cwd(pwd)
2342 cmd = 'LIST ' + file
2343 else:
2344 cmd = 'LIST'
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002345 conn, retrlen = self.ftp.ntransfercmd(cmd)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002346 self.busy = 1
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002347
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002348 ftpobj = addclosehook(conn.makefile('rb'), self.file_close)
2349 self.refcount += 1
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002350 conn.close()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002351 # Pass back both a suitably decorated object and a retrieval length
Senthil Kumaran2024acd2011-03-24 11:46:19 +08002352 return (ftpobj, retrlen)
2353
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002354 def endtransfer(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002355 self.busy = 0
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002356
2357 def close(self):
Nadeem Vawda08f5f7a2011-07-23 14:03:00 +02002358 self.keepalive = False
2359 if self.refcount <= 0:
2360 self.real_close()
2361
2362 def file_close(self):
2363 self.endtransfer()
2364 self.refcount -= 1
2365 if self.refcount <= 0 and not self.keepalive:
2366 self.real_close()
2367
2368 def real_close(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002369 self.endtransfer()
2370 try:
2371 self.ftp.close()
2372 except ftperrors():
2373 pass
2374
2375# Proxy handling
2376def getproxies_environment():
2377 """Return a dictionary of scheme -> proxy server URL mappings.
2378
2379 Scan the environment for variables named <scheme>_proxy;
2380 this seems to be the standard convention. If you need a
2381 different way, you can pass a proxies dictionary to the
2382 [Fancy]URLopener constructor.
2383
2384 """
2385 proxies = {}
2386 for name, value in os.environ.items():
2387 name = name.lower()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002388 if value and name[-6:] == '_proxy':
2389 proxies[name[:-6]] = value
2390 return proxies
2391
2392def proxy_bypass_environment(host):
2393 """Test if proxies should not be used for a particular host.
2394
2395 Checks the environment for a variable named no_proxy, which should
2396 be a list of DNS suffixes separated by commas, or '*' for all hosts.
2397 """
2398 no_proxy = os.environ.get('no_proxy', '') or os.environ.get('NO_PROXY', '')
2399 # '*' is special case for always bypass
2400 if no_proxy == '*':
2401 return 1
2402 # strip port off host
Georg Brandl13e89462008-07-01 19:56:00 +00002403 hostonly, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002404 # check if the host ends with any of the DNS suffixes
Senthil Kumaran89976f12011-08-06 12:27:40 +08002405 no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')]
2406 for name in no_proxy_list:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002407 if name and (hostonly.endswith(name) or host.endswith(name)):
2408 return 1
2409 # otherwise, don't bypass
2410 return 0
2411
2412
Ronald Oussorene72e1612011-03-14 18:15:25 -04002413# This code tests an OSX specific data structure but is testable on all
2414# platforms
2415def _proxy_bypass_macosx_sysconf(host, proxy_settings):
2416 """
2417 Return True iff this host shouldn't be accessed using a proxy
2418
2419 This function uses the MacOSX framework SystemConfiguration
2420 to fetch the proxy information.
2421
2422 proxy_settings come from _scproxy._get_proxy_settings or get mocked ie:
2423 { 'exclude_simple': bool,
2424 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16']
2425 }
2426 """
Ronald Oussorene72e1612011-03-14 18:15:25 -04002427 from fnmatch import fnmatch
2428
2429 hostonly, port = splitport(host)
2430
2431 def ip2num(ipAddr):
2432 parts = ipAddr.split('.')
2433 parts = list(map(int, parts))
2434 if len(parts) != 4:
2435 parts = (parts + [0, 0, 0, 0])[:4]
2436 return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]
2437
2438 # Check for simple host names:
2439 if '.' not in host:
2440 if proxy_settings['exclude_simple']:
2441 return True
2442
2443 hostIP = None
2444
2445 for value in proxy_settings.get('exceptions', ()):
2446 # Items in the list are strings like these: *.local, 169.254/16
2447 if not value: continue
2448
2449 m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)
2450 if m is not None:
2451 if hostIP is None:
2452 try:
2453 hostIP = socket.gethostbyname(hostonly)
2454 hostIP = ip2num(hostIP)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002455 except OSError:
Ronald Oussorene72e1612011-03-14 18:15:25 -04002456 continue
2457
2458 base = ip2num(m.group(1))
2459 mask = m.group(2)
2460 if mask is None:
2461 mask = 8 * (m.group(1).count('.') + 1)
2462 else:
2463 mask = int(mask[1:])
2464 mask = 32 - mask
2465
2466 if (hostIP >> mask) == (base >> mask):
2467 return True
2468
2469 elif fnmatch(host, value):
2470 return True
2471
2472 return False
2473
2474
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002475if sys.platform == 'darwin':
Ronald Oussoren84151202010-04-18 20:46:11 +00002476 from _scproxy import _get_proxy_settings, _get_proxies
2477
2478 def proxy_bypass_macosx_sysconf(host):
Ronald Oussoren84151202010-04-18 20:46:11 +00002479 proxy_settings = _get_proxy_settings()
Ronald Oussorene72e1612011-03-14 18:15:25 -04002480 return _proxy_bypass_macosx_sysconf(host, proxy_settings)
Ronald Oussoren84151202010-04-18 20:46:11 +00002481
2482 def getproxies_macosx_sysconf():
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002483 """Return a dictionary of scheme -> proxy server URL mappings.
2484
Ronald Oussoren84151202010-04-18 20:46:11 +00002485 This function uses the MacOSX framework SystemConfiguration
2486 to fetch the proxy information.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002487 """
Ronald Oussoren84151202010-04-18 20:46:11 +00002488 return _get_proxies()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002489
Ronald Oussoren84151202010-04-18 20:46:11 +00002490
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002491
2492 def proxy_bypass(host):
2493 if getproxies_environment():
2494 return proxy_bypass_environment(host)
2495 else:
Ronald Oussoren84151202010-04-18 20:46:11 +00002496 return proxy_bypass_macosx_sysconf(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002497
2498 def getproxies():
Ronald Oussoren84151202010-04-18 20:46:11 +00002499 return getproxies_environment() or getproxies_macosx_sysconf()
2500
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002501
2502elif os.name == 'nt':
2503 def getproxies_registry():
2504 """Return a dictionary of scheme -> proxy server URL mappings.
2505
2506 Win32 uses the registry to store proxies.
2507
2508 """
2509 proxies = {}
2510 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002511 import winreg
Brett Cannoncd171c82013-07-04 17:43:24 -04002512 except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002513 # Std module, so should be around - but you never know!
2514 return proxies
2515 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002516 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002517 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002518 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002519 'ProxyEnable')[0]
2520 if proxyEnable:
2521 # Returned as Unicode but problems if not converted to ASCII
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002522 proxyServer = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002523 'ProxyServer')[0])
2524 if '=' in proxyServer:
2525 # Per-protocol settings
2526 for p in proxyServer.split(';'):
2527 protocol, address = p.split('=', 1)
2528 # See if address has a type:// prefix
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002529 if not re.match('^([^/:]+)://', address):
2530 address = '%s://%s' % (protocol, address)
2531 proxies[protocol] = address
2532 else:
2533 # Use one setting for all protocols
2534 if proxyServer[:5] == 'http:':
2535 proxies['http'] = proxyServer
2536 else:
2537 proxies['http'] = 'http://%s' % proxyServer
Senthil Kumaran04f31b82010-07-14 20:10:52 +00002538 proxies['https'] = 'https://%s' % proxyServer
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002539 proxies['ftp'] = 'ftp://%s' % proxyServer
2540 internetSettings.Close()
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02002541 except (OSError, ValueError, TypeError):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002542 # Either registry key not found etc, or the value in an
2543 # unexpected format.
2544 # proxies already set up to be empty so nothing to do
2545 pass
2546 return proxies
2547
2548 def getproxies():
2549 """Return a dictionary of scheme -> proxy server URL mappings.
2550
2551 Returns settings gathered from the environment, if specified,
2552 or the registry.
2553
2554 """
2555 return getproxies_environment() or getproxies_registry()
2556
2557 def proxy_bypass_registry(host):
2558 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002559 import winreg
Brett Cannoncd171c82013-07-04 17:43:24 -04002560 except ImportError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002561 # Std modules, so should be around - but you never know!
2562 return 0
2563 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002564 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002565 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002566 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002567 'ProxyEnable')[0]
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002568 proxyOverride = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002569 'ProxyOverride')[0])
2570 # ^^^^ Returned as Unicode but problems if not converted to ASCII
Andrew Svetlov2606a6f2012-12-19 14:33:35 +02002571 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002572 return 0
2573 if not proxyEnable or not proxyOverride:
2574 return 0
2575 # try to make a host list from name and IP address.
Georg Brandl13e89462008-07-01 19:56:00 +00002576 rawHost, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002577 host = [rawHost]
2578 try:
2579 addr = socket.gethostbyname(rawHost)
2580 if addr != rawHost:
2581 host.append(addr)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002582 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002583 pass
2584 try:
2585 fqdn = socket.getfqdn(rawHost)
2586 if fqdn != rawHost:
2587 host.append(fqdn)
Andrew Svetlov0832af62012-12-18 23:10:48 +02002588 except OSError:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002589 pass
2590 # make a check value list from the registry entry: replace the
2591 # '<local>' string by the localhost entry and the corresponding
2592 # canonical entry.
2593 proxyOverride = proxyOverride.split(';')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002594 # now check if we match one of the registry values.
2595 for test in proxyOverride:
Senthil Kumaran49476062009-05-01 06:00:23 +00002596 if test == '<local>':
2597 if '.' not in rawHost:
2598 return 1
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002599 test = test.replace(".", r"\.") # mask dots
2600 test = test.replace("*", r".*") # change glob sequence
2601 test = test.replace("?", r".") # change glob char
2602 for val in host:
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002603 if re.match(test, val, re.I):
2604 return 1
2605 return 0
2606
2607 def proxy_bypass(host):
2608 """Return a dictionary of scheme -> proxy server URL mappings.
2609
2610 Returns settings gathered from the environment, if specified,
2611 or the registry.
2612
2613 """
2614 if getproxies_environment():
2615 return proxy_bypass_environment(host)
2616 else:
2617 return proxy_bypass_registry(host)
2618
2619else:
2620 # By default use environment variables
2621 getproxies = getproxies_environment
2622 proxy_bypass = proxy_bypass_environment