Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1 | """An extensible library for opening URLs using a variety of protocols |
| 2 | |
| 3 | The simplest way to use this module is to call the urlopen function, |
| 4 | which accepts a string containing a URL or a Request object (described |
| 5 | below). It opens the URL and returns the results as file-like |
| 6 | object; the returned object has some extra methods described below. |
| 7 | |
| 8 | The OpenerDirector manages a collection of Handler objects that do |
| 9 | all the actual work. Each Handler implements a particular protocol or |
| 10 | option. The OpenerDirector is a composite object that invokes the |
| 11 | Handlers needed to open the requested URL. For example, the |
| 12 | HTTPHandler performs HTTP GET and POST requests and deals with |
| 13 | non-error returns. The HTTPRedirectHandler automatically deals with |
| 14 | HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler |
| 15 | deals with digest authentication. |
| 16 | |
| 17 | urlopen(url, data=None) -- Basic usage is the same as original |
| 18 | urllib. pass the url and optionally data to post to an HTTP URL, and |
| 19 | get a file-like object back. One difference is that you can also pass |
| 20 | a Request instance instead of URL. Raises a URLError (subclass of |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 21 | OSError); for HTTP errors, raises an HTTPError, which can also be |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 22 | treated as a valid response. |
| 23 | |
| 24 | build_opener -- Function that creates a new OpenerDirector instance. |
| 25 | Will install the default handlers. Accepts one or more Handlers as |
| 26 | arguments, either instances or Handler classes that it will |
| 27 | instantiate. If one of the argument is a subclass of the default |
| 28 | handler, the argument will be installed instead of the default. |
| 29 | |
| 30 | install_opener -- Installs a new opener as the default opener. |
| 31 | |
| 32 | objects of interest: |
Senthil Kumaran | 1107c5d | 2009-11-15 06:20:55 +0000 | [diff] [blame] | 33 | |
Senthil Kumaran | 47fff87 | 2009-12-20 07:10:31 +0000 | [diff] [blame] | 34 | OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages |
| 35 | the Handler classes, while dealing with requests and responses. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 36 | |
| 37 | Request -- An object that encapsulates the state of a request. The |
| 38 | state can be as simple as the URL. It can also include extra HTTP |
| 39 | headers, e.g. a User-Agent. |
| 40 | |
| 41 | BaseHandler -- |
| 42 | |
| 43 | internals: |
| 44 | BaseHandler and parent |
| 45 | _call_chain conventions |
| 46 | |
| 47 | Example usage: |
| 48 | |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 49 | import urllib.request |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 50 | |
| 51 | # set up authentication info |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 52 | authinfo = urllib.request.HTTPBasicAuthHandler() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 53 | authinfo.add_password(realm='PDQ Application', |
| 54 | uri='https://mahler:8092/site-updates.py', |
| 55 | user='klem', |
| 56 | passwd='geheim$parole') |
| 57 | |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 58 | proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"}) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 59 | |
| 60 | # build a new opener that adds authentication and caching FTP handlers |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 61 | opener = urllib.request.build_opener(proxy_support, authinfo, |
| 62 | urllib.request.CacheFTPHandler) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 63 | |
| 64 | # install it |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 65 | urllib.request.install_opener(opener) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 66 | |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 67 | f = urllib.request.urlopen('http://www.python.org/') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 68 | """ |
| 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 | |
| 84 | import base64 |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 85 | import bisect |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 86 | import email |
| 87 | import hashlib |
| 88 | import http.client |
| 89 | import io |
| 90 | import os |
| 91 | import posixpath |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 92 | import re |
| 93 | import socket |
Martin Panter | e6f0609 | 2016-05-16 01:14:20 +0000 | [diff] [blame] | 94 | import string |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 95 | import sys |
| 96 | import time |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 97 | import tempfile |
| 98 | import contextlib |
Senthil Kumaran | 38b968b9 | 2012-03-14 13:43:53 -0700 | [diff] [blame] | 99 | import warnings |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 100 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 101 | |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 102 | from urllib.error import URLError, HTTPError, ContentTooShortError |
| 103 | from urllib.parse import ( |
| 104 | urlparse, urlsplit, urljoin, unwrap, quote, unquote, |
| 105 | splittype, splithost, splitport, splituser, splitpasswd, |
Antoine Pitrou | df204be | 2012-11-24 17:59:08 +0100 | [diff] [blame] | 106 | splitattr, splitquery, splitvalue, splittag, to_bytes, |
| 107 | unquote_to_bytes, urlunparse) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 108 | from urllib.response import addinfourl, addclosehook |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 109 | |
| 110 | # check for SSL |
| 111 | try: |
| 112 | import ssl |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 113 | except ImportError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 114 | _have_ssl = False |
| 115 | else: |
| 116 | _have_ssl = True |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 117 | |
Senthil Kumaran | 6c5bd40 | 2011-11-01 23:20:31 +0800 | [diff] [blame] | 118 | __all__ = [ |
| 119 | # Classes |
| 120 | 'Request', 'OpenerDirector', 'BaseHandler', 'HTTPDefaultErrorHandler', |
| 121 | 'HTTPRedirectHandler', 'HTTPCookieProcessor', 'ProxyHandler', |
| 122 | 'HTTPPasswordMgr', 'HTTPPasswordMgrWithDefaultRealm', |
R David Murray | 4c7f995 | 2015-04-16 16:36:18 -0400 | [diff] [blame] | 123 | 'HTTPPasswordMgrWithPriorAuth', 'AbstractBasicAuthHandler', |
| 124 | 'HTTPBasicAuthHandler', 'ProxyBasicAuthHandler', 'AbstractDigestAuthHandler', |
| 125 | 'HTTPDigestAuthHandler', 'ProxyDigestAuthHandler', 'HTTPHandler', |
| 126 | 'FileHandler', 'FTPHandler', 'CacheFTPHandler', 'DataHandler', |
Senthil Kumaran | 6c5bd40 | 2011-11-01 23:20:31 +0800 | [diff] [blame] | 127 | 'UnknownHandler', 'HTTPErrorProcessor', |
| 128 | # Functions |
| 129 | 'urlopen', 'install_opener', 'build_opener', |
| 130 | 'pathname2url', 'url2pathname', 'getproxies', |
| 131 | # Legacy interface |
| 132 | 'urlretrieve', 'urlcleanup', 'URLopener', 'FancyURLopener', |
| 133 | ] |
| 134 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 135 | # used in User-Agent header sent |
Serhiy Storchaka | 885bdc4 | 2016-02-11 13:10:36 +0200 | [diff] [blame] | 136 | __version__ = '%d.%d' % sys.version_info[:2] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 137 | |
| 138 | _opener = None |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 139 | def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, |
Senthil Kumaran | a5c85b3 | 2014-09-19 15:23:30 +0800 | [diff] [blame] | 140 | *, cafile=None, capath=None, cadefault=False, context=None): |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 141 | '''Open the URL url, which can be either a string or a Request object. |
| 142 | |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 143 | *data* must be an object specifying additional data to be sent to |
| 144 | the server, or None if no such data is needed. See Request for |
| 145 | details. |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 146 | |
| 147 | urllib.request module uses HTTP/1.1 and includes a "Connection:close" |
| 148 | header in its HTTP requests. |
| 149 | |
| 150 | The optional *timeout* parameter specifies a timeout in seconds for |
| 151 | blocking operations like the connection attempt (if not specified, the |
| 152 | global default timeout setting will be used). This only works for HTTP, |
| 153 | HTTPS and FTP connections. |
| 154 | |
| 155 | If *context* is specified, it must be a ssl.SSLContext instance describing |
| 156 | the various SSL options. See HTTPSConnection for more details. |
| 157 | |
| 158 | The optional *cafile* and *capath* parameters specify a set of trusted CA |
| 159 | certificates for HTTPS requests. cafile should point to a single file |
| 160 | containing a bundle of CA certificates, whereas capath should point to a |
| 161 | directory of hashed certificate files. More information can be found in |
| 162 | ssl.SSLContext.load_verify_locations(). |
| 163 | |
| 164 | The *cadefault* parameter is ignored. |
| 165 | |
Martin Panter | 29f25690 | 2016-06-04 05:06:34 +0000 | [diff] [blame] | 166 | This function always returns an object which can work as a context |
| 167 | manager and has methods such as |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 168 | |
Serhiy Storchaka | 3fd4a73 | 2015-12-18 13:10:37 +0200 | [diff] [blame] | 169 | * geturl() - return the URL of the resource retrieved, commonly used to |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 170 | determine if a redirect was followed |
| 171 | |
Serhiy Storchaka | 3fd4a73 | 2015-12-18 13:10:37 +0200 | [diff] [blame] | 172 | * info() - return the meta-information of the page, such as headers, in the |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 173 | form of an email.message_from_string() instance (see Quick Reference to |
| 174 | HTTP Headers) |
| 175 | |
Serhiy Storchaka | 3fd4a73 | 2015-12-18 13:10:37 +0200 | [diff] [blame] | 176 | * getcode() - return the HTTP status code of the response. Raises URLError |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 177 | on errors. |
| 178 | |
Martin Panter | 29f25690 | 2016-06-04 05:06:34 +0000 | [diff] [blame] | 179 | For HTTP and HTTPS URLs, this function returns a http.client.HTTPResponse |
| 180 | object slightly modified. In addition to the three new methods above, the |
| 181 | msg attribute contains the same information as the reason attribute --- |
| 182 | the reason phrase returned by the server --- instead of the response |
| 183 | headers as it is specified in the documentation for HTTPResponse. |
R David Murray | d2367c6 | 2016-06-03 20:16:06 -0400 | [diff] [blame] | 184 | |
Martin Panter | 29f25690 | 2016-06-04 05:06:34 +0000 | [diff] [blame] | 185 | For FTP, file, and data URLs and requests explicitly handled by legacy |
| 186 | URLopener and FancyURLopener classes, this function returns a |
| 187 | urllib.response.addinfourl object. |
| 188 | |
| 189 | Note that None may be returned if no handler handles the request (though |
Raymond Hettinger | 507343a | 2015-08-18 00:35:52 -0700 | [diff] [blame] | 190 | the default installed global OpenerDirector uses UnknownHandler to ensure |
| 191 | this never happens). |
| 192 | |
| 193 | In addition, if proxy settings are detected (for example, when a *_proxy |
| 194 | environment variable like http_proxy is set), ProxyHandler is default |
| 195 | installed and makes sure the requests are handled through the proxy. |
| 196 | |
| 197 | ''' |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 198 | global _opener |
Antoine Pitrou | de9ac6c | 2012-05-16 21:40:01 +0200 | [diff] [blame] | 199 | if cafile or capath or cadefault: |
Christian Heimes | d048637 | 2016-09-10 23:23:33 +0200 | [diff] [blame] | 200 | import warnings |
| 201 | warnings.warn("cafile, cpath and cadefault are deprecated, use a " |
| 202 | "custom context instead.", DeprecationWarning, 2) |
Senthil Kumaran | a5c85b3 | 2014-09-19 15:23:30 +0800 | [diff] [blame] | 203 | if context is not None: |
| 204 | raise ValueError( |
| 205 | "You can't pass both context and any of cafile, capath, and " |
| 206 | "cadefault" |
| 207 | ) |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 208 | if not _have_ssl: |
| 209 | raise ValueError('SSL support not available') |
Benjamin Peterson | b666697 | 2014-12-07 13:46:02 -0500 | [diff] [blame] | 210 | context = ssl.create_default_context(ssl.Purpose.SERVER_AUTH, |
Christian Heimes | 67986f9 | 2013-11-23 22:43:47 +0100 | [diff] [blame] | 211 | cafile=cafile, |
| 212 | capath=capath) |
Benjamin Peterson | b666697 | 2014-12-07 13:46:02 -0500 | [diff] [blame] | 213 | https_handler = HTTPSHandler(context=context) |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 214 | opener = build_opener(https_handler) |
Senthil Kumaran | a5c85b3 | 2014-09-19 15:23:30 +0800 | [diff] [blame] | 215 | elif context: |
| 216 | https_handler = HTTPSHandler(context=context) |
| 217 | opener = build_opener(https_handler) |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 218 | elif _opener is None: |
| 219 | _opener = opener = build_opener() |
| 220 | else: |
| 221 | opener = _opener |
| 222 | return opener.open(url, data, timeout) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 223 | |
| 224 | def install_opener(opener): |
| 225 | global _opener |
| 226 | _opener = opener |
| 227 | |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 228 | _url_tempfiles = [] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 229 | def urlretrieve(url, filename=None, reporthook=None, data=None): |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 230 | """ |
| 231 | Retrieve a URL into a temporary location on disk. |
| 232 | |
| 233 | Requires a URL argument. If a filename is passed, it is used as |
| 234 | the temporary file location. The reporthook argument should be |
| 235 | a callable that accepts a block number, a read size, and the |
| 236 | total file size of the URL target. The data argument should be |
| 237 | valid URL encoded data. |
| 238 | |
| 239 | If a filename is passed and the URL points to a local resource, |
| 240 | the result is a copy from local file to new file. |
| 241 | |
| 242 | Returns a tuple containing the path to the newly created |
| 243 | data file as well as the resulting HTTPMessage object. |
| 244 | """ |
| 245 | url_type, path = splittype(url) |
| 246 | |
| 247 | with contextlib.closing(urlopen(url, data)) as fp: |
| 248 | headers = fp.info() |
| 249 | |
| 250 | # Just return the local path and the "headers" for file:// |
| 251 | # URLs. No sense in performing a copy unless requested. |
| 252 | if url_type == "file" and not filename: |
| 253 | return os.path.normpath(path), headers |
| 254 | |
| 255 | # Handle temporary file setup. |
| 256 | if filename: |
| 257 | tfp = open(filename, 'wb') |
| 258 | else: |
| 259 | tfp = tempfile.NamedTemporaryFile(delete=False) |
| 260 | filename = tfp.name |
| 261 | _url_tempfiles.append(filename) |
| 262 | |
| 263 | with tfp: |
| 264 | result = filename, headers |
| 265 | bs = 1024*8 |
| 266 | size = -1 |
| 267 | read = 0 |
| 268 | blocknum = 0 |
| 269 | if "content-length" in headers: |
| 270 | size = int(headers["Content-Length"]) |
| 271 | |
| 272 | if reporthook: |
Gregory P. Smith | 6b0bdab | 2012-11-10 13:43:44 -0800 | [diff] [blame] | 273 | reporthook(blocknum, bs, size) |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 274 | |
| 275 | while True: |
| 276 | block = fp.read(bs) |
| 277 | if not block: |
| 278 | break |
| 279 | read += len(block) |
| 280 | tfp.write(block) |
| 281 | blocknum += 1 |
| 282 | if reporthook: |
Gregory P. Smith | 6b0bdab | 2012-11-10 13:43:44 -0800 | [diff] [blame] | 283 | reporthook(blocknum, bs, size) |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 284 | |
| 285 | if size >= 0 and read < size: |
| 286 | raise ContentTooShortError( |
| 287 | "retrieval incomplete: got only %i out of %i bytes" |
| 288 | % (read, size), result) |
| 289 | |
| 290 | return result |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 291 | |
| 292 | def urlcleanup(): |
Robert Collins | 2fee5c9 | 2015-08-04 12:52:06 +1200 | [diff] [blame] | 293 | """Clean up temporary files from urlretrieve calls.""" |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 294 | for temp_file in _url_tempfiles: |
| 295 | try: |
| 296 | os.unlink(temp_file) |
Andrew Svetlov | 3438fa4 | 2012-12-17 23:35:18 +0200 | [diff] [blame] | 297 | except OSError: |
Senthil Kumaran | e24f96a | 2012-03-13 19:29:33 -0700 | [diff] [blame] | 298 | pass |
| 299 | |
| 300 | del _url_tempfiles[:] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 301 | global _opener |
| 302 | if _opener: |
| 303 | _opener = None |
| 304 | |
| 305 | # copied from cookielib.py |
Antoine Pitrou | fd03645 | 2008-08-19 17:56:33 +0000 | [diff] [blame] | 306 | _cut_port_re = re.compile(r":\d+$", re.ASCII) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 307 | def request_host(request): |
| 308 | """Return request-host, as defined by RFC 2965. |
| 309 | |
| 310 | Variation from RFC: returned value is lowercased, for convenient |
| 311 | comparison. |
| 312 | |
| 313 | """ |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 314 | url = request.full_url |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 315 | host = urlparse(url)[1] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 316 | if host == "": |
| 317 | host = request.get_header("Host", "") |
| 318 | |
| 319 | # remove port, if present |
| 320 | host = _cut_port_re.sub("", host, 1) |
| 321 | return host.lower() |
| 322 | |
| 323 | class Request: |
| 324 | |
| 325 | def __init__(self, url, data=None, headers={}, |
Senthil Kumaran | de49d64 | 2011-10-16 23:54:44 +0800 | [diff] [blame] | 326 | origin_req_host=None, unverifiable=False, |
| 327 | method=None): |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 328 | self.full_url = url |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 329 | self.headers = {} |
Andrew Svetlov | bff98fe | 2012-11-27 23:06:19 +0200 | [diff] [blame] | 330 | self.unredirected_hdrs = {} |
| 331 | self._data = None |
| 332 | self.data = data |
Senthil Kumaran | 97f0c6b | 2009-07-25 04:24:38 +0000 | [diff] [blame] | 333 | self._tunnel_host = None |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 334 | for key, value in headers.items(): |
| 335 | self.add_header(key, value) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 336 | if origin_req_host is None: |
| 337 | origin_req_host = request_host(self) |
| 338 | self.origin_req_host = origin_req_host |
| 339 | self.unverifiable = unverifiable |
Jason R. Coombs | 7dc4f4b | 2013-09-08 12:47:07 -0400 | [diff] [blame] | 340 | if method: |
| 341 | self.method = method |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 342 | |
| 343 | @property |
| 344 | def full_url(self): |
Senthil Kumaran | 8307075 | 2013-05-24 09:14:12 -0700 | [diff] [blame] | 345 | if self.fragment: |
| 346 | return '{}#{}'.format(self._full_url, self.fragment) |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 347 | return self._full_url |
| 348 | |
| 349 | @full_url.setter |
| 350 | def full_url(self, url): |
| 351 | # unwrap('<URL:type://host/path>') --> 'type://host/path' |
| 352 | self._full_url = unwrap(url) |
| 353 | self._full_url, self.fragment = splittag(self._full_url) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 354 | self._parse() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 355 | |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 356 | @full_url.deleter |
| 357 | def full_url(self): |
| 358 | self._full_url = None |
| 359 | self.fragment = None |
| 360 | self.selector = '' |
| 361 | |
Andrew Svetlov | bff98fe | 2012-11-27 23:06:19 +0200 | [diff] [blame] | 362 | @property |
| 363 | def data(self): |
| 364 | return self._data |
| 365 | |
| 366 | @data.setter |
| 367 | def data(self, data): |
| 368 | if data != self._data: |
| 369 | self._data = data |
| 370 | # issue 16464 |
| 371 | # if we change data we need to remove content-length header |
| 372 | # (cause it's most probably calculated for previous value) |
| 373 | if self.has_header("Content-length"): |
| 374 | self.remove_header("Content-length") |
| 375 | |
| 376 | @data.deleter |
| 377 | def data(self): |
R David Murray | 9cc7d45 | 2013-03-20 00:10:51 -0400 | [diff] [blame] | 378 | self.data = None |
Andrew Svetlov | bff98fe | 2012-11-27 23:06:19 +0200 | [diff] [blame] | 379 | |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 380 | def _parse(self): |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 381 | self.type, rest = splittype(self._full_url) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 382 | if self.type is None: |
R David Murray | d8a4696 | 2013-04-03 06:58:34 -0400 | [diff] [blame] | 383 | raise ValueError("unknown url type: %r" % self.full_url) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 384 | self.host, self.selector = splithost(rest) |
| 385 | if self.host: |
| 386 | self.host = unquote(self.host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 387 | |
| 388 | def get_method(self): |
Senthil Kumaran | de49d64 | 2011-10-16 23:54:44 +0800 | [diff] [blame] | 389 | """Return a string indicating the HTTP request method.""" |
Jason R. Coombs | aae6a1d | 2013-09-08 12:54:33 -0400 | [diff] [blame] | 390 | default_method = "POST" if self.data is not None else "GET" |
| 391 | return getattr(self, 'method', default_method) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 392 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 393 | def get_full_url(self): |
Senthil Kumaran | 5238092 | 2013-04-25 05:45:48 -0700 | [diff] [blame] | 394 | return self.full_url |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 395 | |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 396 | def set_proxy(self, host, type): |
Senthil Kumaran | 97f0c6b | 2009-07-25 04:24:38 +0000 | [diff] [blame] | 397 | if self.type == 'https' and not self._tunnel_host: |
| 398 | self._tunnel_host = self.host |
| 399 | else: |
| 400 | self.type= type |
| 401 | self.selector = self.full_url |
| 402 | self.host = host |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 403 | |
| 404 | def has_proxy(self): |
| 405 | return self.selector == self.full_url |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 406 | |
| 407 | def add_header(self, key, val): |
| 408 | # useful for something like authentication |
| 409 | self.headers[key.capitalize()] = val |
| 410 | |
| 411 | def add_unredirected_header(self, key, val): |
| 412 | # will not be added to a redirected request |
| 413 | self.unredirected_hdrs[key.capitalize()] = val |
| 414 | |
| 415 | def has_header(self, header_name): |
| 416 | return (header_name in self.headers or |
| 417 | header_name in self.unredirected_hdrs) |
| 418 | |
| 419 | def get_header(self, header_name, default=None): |
| 420 | return self.headers.get( |
| 421 | header_name, |
| 422 | self.unredirected_hdrs.get(header_name, default)) |
| 423 | |
Andrew Svetlov | bff98fe | 2012-11-27 23:06:19 +0200 | [diff] [blame] | 424 | def remove_header(self, header_name): |
| 425 | self.headers.pop(header_name, None) |
| 426 | self.unredirected_hdrs.pop(header_name, None) |
| 427 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 428 | def header_items(self): |
| 429 | hdrs = self.unredirected_hdrs.copy() |
| 430 | hdrs.update(self.headers) |
| 431 | return list(hdrs.items()) |
| 432 | |
| 433 | class OpenerDirector: |
| 434 | def __init__(self): |
| 435 | client_version = "Python-urllib/%s" % __version__ |
| 436 | self.addheaders = [('User-agent', client_version)] |
R. David Murray | 25b8cca | 2010-12-23 19:44:49 +0000 | [diff] [blame] | 437 | # self.handlers is retained only for backward compatibility |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 438 | self.handlers = [] |
R. David Murray | 25b8cca | 2010-12-23 19:44:49 +0000 | [diff] [blame] | 439 | # manage the individual handlers |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 440 | self.handle_open = {} |
| 441 | self.handle_error = {} |
| 442 | self.process_response = {} |
| 443 | self.process_request = {} |
| 444 | |
| 445 | def add_handler(self, handler): |
| 446 | if not hasattr(handler, "add_parent"): |
| 447 | raise TypeError("expected BaseHandler instance, got %r" % |
| 448 | type(handler)) |
| 449 | |
| 450 | added = False |
| 451 | for meth in dir(handler): |
| 452 | if meth in ["redirect_request", "do_open", "proxy_open"]: |
| 453 | # oops, coincidental match |
| 454 | continue |
| 455 | |
| 456 | i = meth.find("_") |
| 457 | protocol = meth[:i] |
| 458 | condition = meth[i+1:] |
| 459 | |
| 460 | if condition.startswith("error"): |
| 461 | j = condition.find("_") + i + 1 |
| 462 | kind = meth[j+1:] |
| 463 | try: |
| 464 | kind = int(kind) |
| 465 | except ValueError: |
| 466 | pass |
| 467 | lookup = self.handle_error.get(protocol, {}) |
| 468 | self.handle_error[protocol] = lookup |
| 469 | elif condition == "open": |
| 470 | kind = protocol |
| 471 | lookup = self.handle_open |
| 472 | elif condition == "response": |
| 473 | kind = protocol |
| 474 | lookup = self.process_response |
| 475 | elif condition == "request": |
| 476 | kind = protocol |
| 477 | lookup = self.process_request |
| 478 | else: |
| 479 | continue |
| 480 | |
| 481 | handlers = lookup.setdefault(kind, []) |
| 482 | if handlers: |
| 483 | bisect.insort(handlers, handler) |
| 484 | else: |
| 485 | handlers.append(handler) |
| 486 | added = True |
| 487 | |
| 488 | if added: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 489 | bisect.insort(self.handlers, handler) |
| 490 | handler.add_parent(self) |
| 491 | |
| 492 | def close(self): |
| 493 | # Only exists for backwards compatibility. |
| 494 | pass |
| 495 | |
| 496 | def _call_chain(self, chain, kind, meth_name, *args): |
| 497 | # Handlers raise an exception if no one else should try to handle |
| 498 | # the request, or return None if they can't but another handler |
| 499 | # could. Otherwise, they return the response. |
| 500 | handlers = chain.get(kind, ()) |
| 501 | for handler in handlers: |
| 502 | func = getattr(handler, meth_name) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 503 | result = func(*args) |
| 504 | if result is not None: |
| 505 | return result |
| 506 | |
| 507 | def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT): |
| 508 | # accept a URL or a Request object |
| 509 | if isinstance(fullurl, str): |
| 510 | req = Request(fullurl, data) |
| 511 | else: |
| 512 | req = fullurl |
| 513 | if data is not None: |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 514 | req.data = data |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 515 | |
| 516 | req.timeout = timeout |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 517 | protocol = req.type |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 518 | |
| 519 | # pre-process request |
| 520 | meth_name = protocol+"_request" |
| 521 | for processor in self.process_request.get(protocol, []): |
| 522 | meth = getattr(processor, meth_name) |
| 523 | req = meth(req) |
| 524 | |
| 525 | response = self._open(req, data) |
| 526 | |
| 527 | # post-process response |
| 528 | meth_name = protocol+"_response" |
| 529 | for processor in self.process_response.get(protocol, []): |
| 530 | meth = getattr(processor, meth_name) |
| 531 | response = meth(req, response) |
| 532 | |
| 533 | return response |
| 534 | |
| 535 | def _open(self, req, data=None): |
| 536 | result = self._call_chain(self.handle_open, 'default', |
| 537 | 'default_open', req) |
| 538 | if result: |
| 539 | return result |
| 540 | |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 541 | protocol = req.type |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 542 | result = self._call_chain(self.handle_open, protocol, protocol + |
| 543 | '_open', req) |
| 544 | if result: |
| 545 | return result |
| 546 | |
| 547 | return self._call_chain(self.handle_open, 'unknown', |
| 548 | 'unknown_open', req) |
| 549 | |
| 550 | def error(self, proto, *args): |
| 551 | if proto in ('http', 'https'): |
| 552 | # XXX http[s] protocols are special-cased |
| 553 | dict = self.handle_error['http'] # https is not different than http |
| 554 | proto = args[2] # YUCK! |
| 555 | meth_name = 'http_error_%s' % proto |
| 556 | http_err = 1 |
| 557 | orig_args = args |
| 558 | else: |
| 559 | dict = self.handle_error |
| 560 | meth_name = proto + '_error' |
| 561 | http_err = 0 |
| 562 | args = (dict, proto, meth_name) + args |
| 563 | result = self._call_chain(*args) |
| 564 | if result: |
| 565 | return result |
| 566 | |
| 567 | if http_err: |
| 568 | args = (dict, 'default', 'http_error_default') + orig_args |
| 569 | return self._call_chain(*args) |
| 570 | |
| 571 | # XXX probably also want an abstract factory that knows when it makes |
| 572 | # sense to skip a superclass in favor of a subclass and when it might |
| 573 | # make sense to include both |
| 574 | |
| 575 | def build_opener(*handlers): |
| 576 | """Create an opener object from a list of handlers. |
| 577 | |
| 578 | The opener will use several default handlers, including support |
Senthil Kumaran | 1107c5d | 2009-11-15 06:20:55 +0000 | [diff] [blame] | 579 | for HTTP, FTP and when applicable HTTPS. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 580 | |
| 581 | If any of the handlers passed as arguments are subclasses of the |
| 582 | default handlers, the default handlers will not be used. |
| 583 | """ |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 584 | opener = OpenerDirector() |
| 585 | default_classes = [ProxyHandler, UnknownHandler, HTTPHandler, |
| 586 | HTTPDefaultErrorHandler, HTTPRedirectHandler, |
Antoine Pitrou | df204be | 2012-11-24 17:59:08 +0100 | [diff] [blame] | 587 | FTPHandler, FileHandler, HTTPErrorProcessor, |
| 588 | DataHandler] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 589 | if hasattr(http.client, "HTTPSConnection"): |
| 590 | default_classes.append(HTTPSHandler) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 591 | skip = set() |
| 592 | for klass in default_classes: |
| 593 | for check in handlers: |
Benjamin Peterson | 78c8538 | 2014-04-01 16:27:30 -0400 | [diff] [blame] | 594 | if isinstance(check, type): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 595 | if issubclass(check, klass): |
| 596 | skip.add(klass) |
| 597 | elif isinstance(check, klass): |
| 598 | skip.add(klass) |
| 599 | for klass in skip: |
| 600 | default_classes.remove(klass) |
| 601 | |
| 602 | for klass in default_classes: |
| 603 | opener.add_handler(klass()) |
| 604 | |
| 605 | for h in handlers: |
Benjamin Peterson | 5dd3cae | 2014-04-01 14:20:56 -0400 | [diff] [blame] | 606 | if isinstance(h, type): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 607 | h = h() |
| 608 | opener.add_handler(h) |
| 609 | return opener |
| 610 | |
| 611 | class BaseHandler: |
| 612 | handler_order = 500 |
| 613 | |
| 614 | def add_parent(self, parent): |
| 615 | self.parent = parent |
| 616 | |
| 617 | def close(self): |
| 618 | # Only exists for backwards compatibility |
| 619 | pass |
| 620 | |
| 621 | def __lt__(self, other): |
| 622 | if not hasattr(other, "handler_order"): |
| 623 | # Try to preserve the old behavior of having custom classes |
| 624 | # inserted after default ones (works only for custom user |
| 625 | # classes which are not aware of handler_order). |
| 626 | return True |
| 627 | return self.handler_order < other.handler_order |
| 628 | |
| 629 | |
| 630 | class HTTPErrorProcessor(BaseHandler): |
| 631 | """Process HTTP error responses.""" |
| 632 | handler_order = 1000 # after all other processing |
| 633 | |
| 634 | def http_response(self, request, response): |
| 635 | code, msg, hdrs = response.code, response.msg, response.info() |
| 636 | |
| 637 | # According to RFC 2616, "2xx" code indicates that the client's |
| 638 | # request was successfully received, understood, and accepted. |
| 639 | if not (200 <= code < 300): |
| 640 | response = self.parent.error( |
| 641 | 'http', request, response, code, msg, hdrs) |
| 642 | |
| 643 | return response |
| 644 | |
| 645 | https_response = http_response |
| 646 | |
| 647 | class HTTPDefaultErrorHandler(BaseHandler): |
| 648 | def http_error_default(self, req, fp, code, msg, hdrs): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 649 | raise HTTPError(req.full_url, code, msg, hdrs, fp) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 650 | |
| 651 | class HTTPRedirectHandler(BaseHandler): |
| 652 | # maximum number of redirections to any single URL |
| 653 | # this is needed because of the state that cookies introduce |
| 654 | max_repeats = 4 |
| 655 | # maximum total number of redirections (regardless of URL) before |
| 656 | # assuming we're in a loop |
| 657 | max_redirections = 10 |
| 658 | |
| 659 | def redirect_request(self, req, fp, code, msg, headers, newurl): |
| 660 | """Return a Request or None in response to a redirect. |
| 661 | |
| 662 | This is called by the http_error_30x methods when a |
| 663 | redirection response is received. If a redirection should |
| 664 | take place, return a new Request to allow http_error_30x to |
| 665 | perform the redirect. Otherwise, raise HTTPError if no-one |
| 666 | else should try to handle this url. Return None if you can't |
| 667 | but another Handler might. |
| 668 | """ |
| 669 | m = req.get_method() |
| 670 | if (not (code in (301, 302, 303, 307) and m in ("GET", "HEAD") |
| 671 | or code in (301, 302, 303) and m == "POST")): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 672 | raise HTTPError(req.full_url, code, msg, headers, fp) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 673 | |
| 674 | # Strictly (according to RFC 2616), 301 or 302 in response to |
| 675 | # a POST MUST NOT cause a redirection without confirmation |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 676 | # from the user (of urllib.request, in this case). In practice, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 677 | # essentially all clients do redirect in this case, so we do |
| 678 | # the same. |
Martin Panter | e6f0609 | 2016-05-16 01:14:20 +0000 | [diff] [blame] | 679 | |
| 680 | # Be conciliant with URIs containing a space. This is mainly |
| 681 | # redundant with the more complete encoding done in http_error_302(), |
| 682 | # but it is kept for compatibility with other callers. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 683 | newurl = newurl.replace(' ', '%20') |
Martin Panter | e6f0609 | 2016-05-16 01:14:20 +0000 | [diff] [blame] | 684 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 685 | CONTENT_HEADERS = ("content-length", "content-type") |
| 686 | newheaders = dict((k, v) for k, v in req.headers.items() |
| 687 | if k.lower() not in CONTENT_HEADERS) |
| 688 | return Request(newurl, |
| 689 | headers=newheaders, |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 690 | origin_req_host=req.origin_req_host, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 691 | unverifiable=True) |
| 692 | |
| 693 | # Implementation note: To avoid the server sending us into an |
| 694 | # infinite loop, the request object needs to track what URLs we |
| 695 | # have already seen. Do this by adding a handler-specific |
| 696 | # attribute to the Request object. |
| 697 | def http_error_302(self, req, fp, code, msg, headers): |
| 698 | # Some servers (incorrectly) return multiple Location headers |
| 699 | # (so probably same goes for URI). Use first header. |
| 700 | if "location" in headers: |
| 701 | newurl = headers["location"] |
| 702 | elif "uri" in headers: |
| 703 | newurl = headers["uri"] |
| 704 | else: |
| 705 | return |
Facundo Batista | f24802c | 2008-08-17 03:36:03 +0000 | [diff] [blame] | 706 | |
| 707 | # fix a possible malformed URL |
| 708 | urlparts = urlparse(newurl) |
guido@google.com | a119df9 | 2011-03-29 11:41:02 -0700 | [diff] [blame] | 709 | |
| 710 | # For security reasons we don't allow redirection to anything other |
| 711 | # than http, https or ftp. |
| 712 | |
Senthil Kumaran | 6497aa3 | 2012-01-04 13:46:59 +0800 | [diff] [blame] | 713 | if urlparts.scheme not in ('http', 'https', 'ftp', ''): |
Senthil Kumaran | 34d38dc | 2011-10-20 02:48:01 +0800 | [diff] [blame] | 714 | raise HTTPError( |
| 715 | newurl, code, |
| 716 | "%s - Redirection to url '%s' is not allowed" % (msg, newurl), |
| 717 | headers, fp) |
guido@google.com | a119df9 | 2011-03-29 11:41:02 -0700 | [diff] [blame] | 718 | |
Martin Panter | ce6e068 | 2016-05-16 01:07:13 +0000 | [diff] [blame] | 719 | if not urlparts.path and urlparts.netloc: |
Facundo Batista | f24802c | 2008-08-17 03:36:03 +0000 | [diff] [blame] | 720 | urlparts = list(urlparts) |
| 721 | urlparts[2] = "/" |
| 722 | newurl = urlunparse(urlparts) |
| 723 | |
Martin Panter | e6f0609 | 2016-05-16 01:14:20 +0000 | [diff] [blame] | 724 | # http.client.parse_headers() decodes as ISO-8859-1. Recover the |
| 725 | # original bytes and percent-encode non-ASCII bytes, and any special |
| 726 | # characters such as the space. |
| 727 | newurl = quote( |
| 728 | newurl, encoding="iso-8859-1", safe=string.punctuation) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 729 | newurl = urljoin(req.full_url, newurl) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 730 | |
| 731 | # XXX Probably want to forget about the state of the current |
| 732 | # request, although that might interact poorly with other |
| 733 | # handlers that also use handler-specific request attributes |
| 734 | new = self.redirect_request(req, fp, code, msg, headers, newurl) |
| 735 | if new is None: |
| 736 | return |
| 737 | |
| 738 | # loop detection |
| 739 | # .redirect_dict has a key url if url was previously visited. |
| 740 | if hasattr(req, 'redirect_dict'): |
| 741 | visited = new.redirect_dict = req.redirect_dict |
| 742 | if (visited.get(newurl, 0) >= self.max_repeats or |
| 743 | len(visited) >= self.max_redirections): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 744 | raise HTTPError(req.full_url, code, |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 745 | self.inf_msg + msg, headers, fp) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 746 | else: |
| 747 | visited = new.redirect_dict = req.redirect_dict = {} |
| 748 | visited[newurl] = visited.get(newurl, 0) + 1 |
| 749 | |
| 750 | # Don't close the fp until we are sure that we won't use it |
| 751 | # with HTTPError. |
| 752 | fp.read() |
| 753 | fp.close() |
| 754 | |
Senthil Kumaran | fb8cc2f | 2009-07-19 02:44:19 +0000 | [diff] [blame] | 755 | return self.parent.open(new, timeout=req.timeout) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 756 | |
| 757 | http_error_301 = http_error_303 = http_error_307 = http_error_302 |
| 758 | |
| 759 | inf_msg = "The HTTP server returned a redirect error that would " \ |
| 760 | "lead to an infinite loop.\n" \ |
| 761 | "The last 30x error message was:\n" |
| 762 | |
| 763 | |
| 764 | def _parse_proxy(proxy): |
| 765 | """Return (scheme, user, password, host/port) given a URL or an authority. |
| 766 | |
| 767 | If a URL is supplied, it must have an authority (host:port) component. |
| 768 | According to RFC 3986, having an authority component means the URL must |
Senthil Kumaran | d8e24f1 | 2014-04-14 16:32:20 -0400 | [diff] [blame] | 769 | have two slashes after the scheme. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 770 | """ |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 771 | scheme, r_scheme = splittype(proxy) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 772 | if not r_scheme.startswith("/"): |
| 773 | # authority |
| 774 | scheme = None |
| 775 | authority = proxy |
| 776 | else: |
| 777 | # URL |
| 778 | if not r_scheme.startswith("//"): |
| 779 | raise ValueError("proxy URL with no authority: %r" % proxy) |
| 780 | # We have an authority, so for RFC 3986-compliant URLs (by ss 3. |
| 781 | # and 3.3.), path is empty or starts with '/' |
| 782 | end = r_scheme.find("/", 2) |
| 783 | if end == -1: |
| 784 | end = None |
| 785 | authority = r_scheme[2:end] |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 786 | userinfo, hostport = splituser(authority) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 787 | if userinfo is not None: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 788 | user, password = splitpasswd(userinfo) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 789 | else: |
| 790 | user = password = None |
| 791 | return scheme, user, password, hostport |
| 792 | |
| 793 | class ProxyHandler(BaseHandler): |
| 794 | # Proxies must be in front |
| 795 | handler_order = 100 |
| 796 | |
| 797 | def __init__(self, proxies=None): |
| 798 | if proxies is None: |
| 799 | proxies = getproxies() |
| 800 | assert hasattr(proxies, 'keys'), "proxies must be a mapping" |
| 801 | self.proxies = proxies |
| 802 | for type, url in proxies.items(): |
| 803 | setattr(self, '%s_open' % type, |
Georg Brandl | fcbdbf2 | 2012-06-24 19:56:31 +0200 | [diff] [blame] | 804 | lambda r, proxy=url, type=type, meth=self.proxy_open: |
| 805 | meth(r, proxy, type)) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 806 | |
| 807 | def proxy_open(self, req, proxy, type): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 808 | orig_type = req.type |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 809 | proxy_type, user, password, hostport = _parse_proxy(proxy) |
| 810 | if proxy_type is None: |
| 811 | proxy_type = orig_type |
Senthil Kumaran | 7bb0497 | 2009-10-11 04:58:55 +0000 | [diff] [blame] | 812 | |
| 813 | if req.host and proxy_bypass(req.host): |
| 814 | return None |
| 815 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 816 | if user and password: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 817 | user_pass = '%s:%s' % (unquote(user), |
| 818 | unquote(password)) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 819 | creds = base64.b64encode(user_pass.encode()).decode("ascii") |
| 820 | req.add_header('Proxy-authorization', 'Basic ' + creds) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 821 | hostport = unquote(hostport) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 822 | req.set_proxy(hostport, proxy_type) |
Senthil Kumaran | 97f0c6b | 2009-07-25 04:24:38 +0000 | [diff] [blame] | 823 | if orig_type == proxy_type or orig_type == 'https': |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 824 | # let other handlers take care of it |
| 825 | return None |
| 826 | else: |
| 827 | # need to start over, because the other handlers don't |
| 828 | # grok the proxy's URL type |
| 829 | # e.g. if we have a constructor arg proxies like so: |
| 830 | # {'http': 'ftp://proxy.example.com'}, we may end up turning |
| 831 | # a request for http://acme.example.com/a into one for |
| 832 | # ftp://proxy.example.com/a |
Senthil Kumaran | fb8cc2f | 2009-07-19 02:44:19 +0000 | [diff] [blame] | 833 | return self.parent.open(req, timeout=req.timeout) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 834 | |
| 835 | class HTTPPasswordMgr: |
| 836 | |
| 837 | def __init__(self): |
| 838 | self.passwd = {} |
| 839 | |
| 840 | def add_password(self, realm, uri, user, passwd): |
| 841 | # uri could be a single URI or a sequence |
| 842 | if isinstance(uri, str): |
| 843 | uri = [uri] |
Senthil Kumaran | 34d38dc | 2011-10-20 02:48:01 +0800 | [diff] [blame] | 844 | if realm not in self.passwd: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 845 | self.passwd[realm] = {} |
| 846 | for default_port in True, False: |
| 847 | reduced_uri = tuple( |
| 848 | [self.reduce_uri(u, default_port) for u in uri]) |
| 849 | self.passwd[realm][reduced_uri] = (user, passwd) |
| 850 | |
| 851 | def find_user_password(self, realm, authuri): |
| 852 | domains = self.passwd.get(realm, {}) |
| 853 | for default_port in True, False: |
| 854 | reduced_authuri = self.reduce_uri(authuri, default_port) |
| 855 | for uris, authinfo in domains.items(): |
| 856 | for uri in uris: |
| 857 | if self.is_suburi(uri, reduced_authuri): |
| 858 | return authinfo |
| 859 | return None, None |
| 860 | |
| 861 | def reduce_uri(self, uri, default_port=True): |
| 862 | """Accept authority or URI and extract only the authority and path.""" |
| 863 | # note HTTP URLs do not have a userinfo component |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 864 | parts = urlsplit(uri) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 865 | if parts[1]: |
| 866 | # URI |
| 867 | scheme = parts[0] |
| 868 | authority = parts[1] |
| 869 | path = parts[2] or '/' |
| 870 | else: |
| 871 | # host or host:port |
| 872 | scheme = None |
| 873 | authority = uri |
| 874 | path = '/' |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 875 | host, port = splitport(authority) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 876 | if default_port and port is None and scheme is not None: |
| 877 | dport = {"http": 80, |
| 878 | "https": 443, |
| 879 | }.get(scheme) |
| 880 | if dport is not None: |
| 881 | authority = "%s:%d" % (host, dport) |
| 882 | return authority, path |
| 883 | |
| 884 | def is_suburi(self, base, test): |
| 885 | """Check if test is below base in a URI tree |
| 886 | |
| 887 | Both args must be URIs in reduced form. |
| 888 | """ |
| 889 | if base == test: |
| 890 | return True |
| 891 | if base[0] != test[0]: |
| 892 | return False |
| 893 | common = posixpath.commonprefix((base[1], test[1])) |
| 894 | if len(common) == len(base[1]): |
| 895 | return True |
| 896 | return False |
| 897 | |
| 898 | |
| 899 | class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr): |
| 900 | |
| 901 | def find_user_password(self, realm, authuri): |
| 902 | user, password = HTTPPasswordMgr.find_user_password(self, realm, |
| 903 | authuri) |
| 904 | if user is not None: |
| 905 | return user, password |
| 906 | return HTTPPasswordMgr.find_user_password(self, None, authuri) |
| 907 | |
| 908 | |
R David Murray | 4c7f995 | 2015-04-16 16:36:18 -0400 | [diff] [blame] | 909 | class HTTPPasswordMgrWithPriorAuth(HTTPPasswordMgrWithDefaultRealm): |
| 910 | |
| 911 | def __init__(self, *args, **kwargs): |
| 912 | self.authenticated = {} |
| 913 | super().__init__(*args, **kwargs) |
| 914 | |
| 915 | def add_password(self, realm, uri, user, passwd, is_authenticated=False): |
| 916 | self.update_authenticated(uri, is_authenticated) |
| 917 | # Add a default for prior auth requests |
| 918 | if realm is not None: |
| 919 | super().add_password(None, uri, user, passwd) |
| 920 | super().add_password(realm, uri, user, passwd) |
| 921 | |
| 922 | def update_authenticated(self, uri, is_authenticated=False): |
| 923 | # uri could be a single URI or a sequence |
| 924 | if isinstance(uri, str): |
| 925 | uri = [uri] |
| 926 | |
| 927 | for default_port in True, False: |
| 928 | for u in uri: |
| 929 | reduced_uri = self.reduce_uri(u, default_port) |
| 930 | self.authenticated[reduced_uri] = is_authenticated |
| 931 | |
| 932 | def is_authenticated(self, authuri): |
| 933 | for default_port in True, False: |
| 934 | reduced_authuri = self.reduce_uri(authuri, default_port) |
| 935 | for uri in self.authenticated: |
| 936 | if self.is_suburi(uri, reduced_authuri): |
| 937 | return self.authenticated[uri] |
| 938 | |
| 939 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 940 | class AbstractBasicAuthHandler: |
| 941 | |
| 942 | # XXX this allows for multiple auth-schemes, but will stupidly pick |
| 943 | # the last one with a realm specified. |
| 944 | |
| 945 | # allow for double- and single-quoted realm values |
| 946 | # (single quotes are a violation of the RFC, but appear in the wild) |
| 947 | rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+' |
Senthil Kumaran | 34f3fcc | 2012-05-15 22:30:25 +0800 | [diff] [blame] | 948 | 'realm=(["\']?)([^"\']*)\\2', re.I) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 949 | |
| 950 | # XXX could pre-emptively send auth info already accepted (RFC 2617, |
| 951 | # end of section 2, and section 1.2 immediately after "credentials" |
| 952 | # production). |
| 953 | |
| 954 | def __init__(self, password_mgr=None): |
| 955 | if password_mgr is None: |
| 956 | password_mgr = HTTPPasswordMgr() |
| 957 | self.passwd = password_mgr |
| 958 | self.add_password = self.passwd.add_password |
Senthil Kumaran | 67a62a4 | 2010-08-19 17:50:31 +0000 | [diff] [blame] | 959 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 960 | def http_error_auth_reqed(self, authreq, host, req, headers): |
| 961 | # host may be an authority (without userinfo) or a URL with an |
| 962 | # authority |
| 963 | # XXX could be multiple headers |
| 964 | authreq = headers.get(authreq, None) |
Senthil Kumaran | f4998ac | 2010-06-01 12:53:48 +0000 | [diff] [blame] | 965 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 966 | if authreq: |
Senthil Kumaran | 4de00a2 | 2011-05-11 21:17:57 +0800 | [diff] [blame] | 967 | scheme = authreq.split()[0] |
Senthil Kumaran | 1a129c8 | 2011-10-20 02:50:13 +0800 | [diff] [blame] | 968 | if scheme.lower() != 'basic': |
Senthil Kumaran | 4de00a2 | 2011-05-11 21:17:57 +0800 | [diff] [blame] | 969 | raise ValueError("AbstractBasicAuthHandler does not" |
| 970 | " support the following scheme: '%s'" % |
| 971 | scheme) |
| 972 | else: |
| 973 | mo = AbstractBasicAuthHandler.rx.search(authreq) |
| 974 | if mo: |
| 975 | scheme, quote, realm = mo.groups() |
Senthil Kumaran | 92a5bf0 | 2012-05-16 00:03:29 +0800 | [diff] [blame] | 976 | if quote not in ['"',"'"]: |
| 977 | warnings.warn("Basic Auth Realm was unquoted", |
| 978 | UserWarning, 2) |
Senthil Kumaran | 4de00a2 | 2011-05-11 21:17:57 +0800 | [diff] [blame] | 979 | if scheme.lower() == 'basic': |
Senthil Kumaran | 7837376 | 2014-08-20 07:53:58 +0530 | [diff] [blame] | 980 | return self.retry_http_basic_auth(host, req, realm) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 981 | |
| 982 | def retry_http_basic_auth(self, host, req, realm): |
| 983 | user, pw = self.passwd.find_user_password(realm, host) |
| 984 | if pw is not None: |
| 985 | raw = "%s:%s" % (user, pw) |
| 986 | auth = "Basic " + base64.b64encode(raw.encode()).decode("ascii") |
Senthil Kumaran | 7837376 | 2014-08-20 07:53:58 +0530 | [diff] [blame] | 987 | if req.get_header(self.auth_header, None) == auth: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 988 | return None |
Senthil Kumaran | ca2fc9e | 2010-02-24 16:53:16 +0000 | [diff] [blame] | 989 | req.add_unredirected_header(self.auth_header, auth) |
Senthil Kumaran | fb8cc2f | 2009-07-19 02:44:19 +0000 | [diff] [blame] | 990 | return self.parent.open(req, timeout=req.timeout) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 991 | else: |
| 992 | return None |
| 993 | |
R David Murray | 4c7f995 | 2015-04-16 16:36:18 -0400 | [diff] [blame] | 994 | def http_request(self, req): |
| 995 | if (not hasattr(self.passwd, 'is_authenticated') or |
| 996 | not self.passwd.is_authenticated(req.full_url)): |
| 997 | return req |
| 998 | |
| 999 | if not req.has_header('Authorization'): |
| 1000 | user, passwd = self.passwd.find_user_password(None, req.full_url) |
| 1001 | credentials = '{0}:{1}'.format(user, passwd).encode() |
| 1002 | auth_str = base64.standard_b64encode(credentials).decode() |
| 1003 | req.add_unredirected_header('Authorization', |
| 1004 | 'Basic {}'.format(auth_str.strip())) |
| 1005 | return req |
| 1006 | |
| 1007 | def http_response(self, req, response): |
| 1008 | if hasattr(self.passwd, 'is_authenticated'): |
| 1009 | if 200 <= response.code < 300: |
| 1010 | self.passwd.update_authenticated(req.full_url, True) |
| 1011 | else: |
| 1012 | self.passwd.update_authenticated(req.full_url, False) |
| 1013 | return response |
| 1014 | |
| 1015 | https_request = http_request |
| 1016 | https_response = http_response |
| 1017 | |
| 1018 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1019 | |
| 1020 | class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): |
| 1021 | |
| 1022 | auth_header = 'Authorization' |
| 1023 | |
| 1024 | def http_error_401(self, req, fp, code, msg, headers): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1025 | url = req.full_url |
Senthil Kumaran | 67a62a4 | 2010-08-19 17:50:31 +0000 | [diff] [blame] | 1026 | response = self.http_error_auth_reqed('www-authenticate', |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1027 | url, req, headers) |
Senthil Kumaran | 67a62a4 | 2010-08-19 17:50:31 +0000 | [diff] [blame] | 1028 | return response |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1029 | |
| 1030 | |
| 1031 | class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler): |
| 1032 | |
| 1033 | auth_header = 'Proxy-authorization' |
| 1034 | |
| 1035 | def http_error_407(self, req, fp, code, msg, headers): |
| 1036 | # http_error_auth_reqed requires that there is no userinfo component in |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 1037 | # authority. Assume there isn't one, since urllib.request does not (and |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1038 | # should not, RFC 3986 s. 3.2.1) support requests for URLs containing |
| 1039 | # userinfo. |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1040 | authority = req.host |
Senthil Kumaran | 67a62a4 | 2010-08-19 17:50:31 +0000 | [diff] [blame] | 1041 | response = self.http_error_auth_reqed('proxy-authenticate', |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1042 | authority, req, headers) |
Senthil Kumaran | 67a62a4 | 2010-08-19 17:50:31 +0000 | [diff] [blame] | 1043 | return response |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1044 | |
| 1045 | |
Senthil Kumaran | 6c5bd40 | 2011-11-01 23:20:31 +0800 | [diff] [blame] | 1046 | # Return n random bytes. |
| 1047 | _randombytes = os.urandom |
| 1048 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1049 | |
| 1050 | class AbstractDigestAuthHandler: |
| 1051 | # Digest authentication is specified in RFC 2617. |
| 1052 | |
| 1053 | # XXX The client does not inspect the Authentication-Info header |
| 1054 | # in a successful response. |
| 1055 | |
| 1056 | # XXX It should be possible to test this implementation against |
| 1057 | # a mock server that just generates a static set of challenges. |
| 1058 | |
| 1059 | # XXX qop="auth-int" supports is shaky |
| 1060 | |
| 1061 | def __init__(self, passwd=None): |
| 1062 | if passwd is None: |
| 1063 | passwd = HTTPPasswordMgr() |
| 1064 | self.passwd = passwd |
| 1065 | self.add_password = self.passwd.add_password |
| 1066 | self.retried = 0 |
| 1067 | self.nonce_count = 0 |
Senthil Kumaran | 4c7eaee | 2009-11-15 08:43:45 +0000 | [diff] [blame] | 1068 | self.last_nonce = None |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1069 | |
| 1070 | def reset_retry_count(self): |
| 1071 | self.retried = 0 |
| 1072 | |
| 1073 | def http_error_auth_reqed(self, auth_header, host, req, headers): |
| 1074 | authreq = headers.get(auth_header, None) |
| 1075 | if self.retried > 5: |
| 1076 | # Don't fail endlessly - if we failed once, we'll probably |
| 1077 | # fail a second time. Hm. Unless the Password Manager is |
| 1078 | # prompting for the information. Crap. This isn't great |
| 1079 | # but it's better than the current 'repeat until recursion |
| 1080 | # depth exceeded' approach <wink> |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1081 | raise HTTPError(req.full_url, 401, "digest auth failed", |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1082 | headers, None) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1083 | else: |
| 1084 | self.retried += 1 |
| 1085 | if authreq: |
| 1086 | scheme = authreq.split()[0] |
| 1087 | if scheme.lower() == 'digest': |
| 1088 | return self.retry_http_digest_auth(req, authreq) |
Senthil Kumaran | 1a129c8 | 2011-10-20 02:50:13 +0800 | [diff] [blame] | 1089 | elif scheme.lower() != 'basic': |
Senthil Kumaran | 4de00a2 | 2011-05-11 21:17:57 +0800 | [diff] [blame] | 1090 | raise ValueError("AbstractDigestAuthHandler does not support" |
| 1091 | " the following scheme: '%s'" % scheme) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1092 | |
| 1093 | def retry_http_digest_auth(self, req, auth): |
| 1094 | token, challenge = auth.split(' ', 1) |
| 1095 | chal = parse_keqv_list(filter(None, parse_http_list(challenge))) |
| 1096 | auth = self.get_authorization(req, chal) |
| 1097 | if auth: |
| 1098 | auth_val = 'Digest %s' % auth |
| 1099 | if req.headers.get(self.auth_header, None) == auth_val: |
| 1100 | return None |
| 1101 | req.add_unredirected_header(self.auth_header, auth_val) |
Senthil Kumaran | fb8cc2f | 2009-07-19 02:44:19 +0000 | [diff] [blame] | 1102 | resp = self.parent.open(req, timeout=req.timeout) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1103 | return resp |
| 1104 | |
| 1105 | def get_cnonce(self, nonce): |
| 1106 | # The cnonce-value is an opaque |
| 1107 | # quoted string value provided by the client and used by both client |
| 1108 | # and server to avoid chosen plaintext attacks, to provide mutual |
| 1109 | # authentication, and to provide some message integrity protection. |
| 1110 | # This isn't a fabulous effort, but it's probably Good Enough. |
| 1111 | s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime()) |
Senthil Kumaran | 6c5bd40 | 2011-11-01 23:20:31 +0800 | [diff] [blame] | 1112 | b = s.encode("ascii") + _randombytes(8) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1113 | dig = hashlib.sha1(b).hexdigest() |
| 1114 | return dig[:16] |
| 1115 | |
| 1116 | def get_authorization(self, req, chal): |
| 1117 | try: |
| 1118 | realm = chal['realm'] |
| 1119 | nonce = chal['nonce'] |
| 1120 | qop = chal.get('qop') |
| 1121 | algorithm = chal.get('algorithm', 'MD5') |
| 1122 | # mod_digest doesn't send an opaque, even though it isn't |
| 1123 | # supposed to be optional |
| 1124 | opaque = chal.get('opaque', None) |
| 1125 | except KeyError: |
| 1126 | return None |
| 1127 | |
| 1128 | H, KD = self.get_algorithm_impls(algorithm) |
| 1129 | if H is None: |
| 1130 | return None |
| 1131 | |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1132 | user, pw = self.passwd.find_user_password(realm, req.full_url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1133 | if user is None: |
| 1134 | return None |
| 1135 | |
| 1136 | # XXX not implemented yet |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1137 | if req.data is not None: |
| 1138 | entdig = self.get_entity_digest(req.data, chal) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1139 | else: |
| 1140 | entdig = None |
| 1141 | |
| 1142 | A1 = "%s:%s:%s" % (user, realm, pw) |
| 1143 | A2 = "%s:%s" % (req.get_method(), |
| 1144 | # XXX selector: what about proxies and full urls |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1145 | req.selector) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1146 | if qop == 'auth': |
Senthil Kumaran | 4c7eaee | 2009-11-15 08:43:45 +0000 | [diff] [blame] | 1147 | if nonce == self.last_nonce: |
| 1148 | self.nonce_count += 1 |
| 1149 | else: |
| 1150 | self.nonce_count = 1 |
| 1151 | self.last_nonce = nonce |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1152 | ncvalue = '%08x' % self.nonce_count |
| 1153 | cnonce = self.get_cnonce(nonce) |
| 1154 | noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2)) |
| 1155 | respdig = KD(H(A1), noncebit) |
| 1156 | elif qop is None: |
| 1157 | respdig = KD(H(A1), "%s:%s" % (nonce, H(A2))) |
| 1158 | else: |
| 1159 | # XXX handle auth-int. |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1160 | raise URLError("qop '%s' is not supported." % qop) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1161 | |
| 1162 | # XXX should the partial digests be encoded too? |
| 1163 | |
| 1164 | base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \ |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1165 | 'response="%s"' % (user, realm, nonce, req.selector, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1166 | respdig) |
| 1167 | if opaque: |
| 1168 | base += ', opaque="%s"' % opaque |
| 1169 | if entdig: |
| 1170 | base += ', digest="%s"' % entdig |
| 1171 | base += ', algorithm="%s"' % algorithm |
| 1172 | if qop: |
| 1173 | base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce) |
| 1174 | return base |
| 1175 | |
| 1176 | def get_algorithm_impls(self, algorithm): |
| 1177 | # lambdas assume digest modules are imported at the top level |
| 1178 | if algorithm == 'MD5': |
| 1179 | H = lambda x: hashlib.md5(x.encode("ascii")).hexdigest() |
| 1180 | elif algorithm == 'SHA': |
| 1181 | H = lambda x: hashlib.sha1(x.encode("ascii")).hexdigest() |
| 1182 | # XXX MD5-sess |
Berker Peksag | e88dd1c | 2016-03-06 16:16:40 +0200 | [diff] [blame] | 1183 | else: |
| 1184 | raise ValueError("Unsupported digest authentication " |
| 1185 | "algorithm %r" % algorithm) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1186 | KD = lambda s, d: H("%s:%s" % (s, d)) |
| 1187 | return H, KD |
| 1188 | |
| 1189 | def get_entity_digest(self, data, chal): |
| 1190 | # XXX not implemented yet |
| 1191 | return None |
| 1192 | |
| 1193 | |
| 1194 | class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler): |
| 1195 | """An authentication protocol defined by RFC 2069 |
| 1196 | |
| 1197 | Digest authentication improves on basic authentication because it |
| 1198 | does not transmit passwords in the clear. |
| 1199 | """ |
| 1200 | |
| 1201 | auth_header = 'Authorization' |
| 1202 | handler_order = 490 # before Basic auth |
| 1203 | |
| 1204 | def http_error_401(self, req, fp, code, msg, headers): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1205 | host = urlparse(req.full_url)[1] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1206 | retry = self.http_error_auth_reqed('www-authenticate', |
| 1207 | host, req, headers) |
| 1208 | self.reset_retry_count() |
| 1209 | return retry |
| 1210 | |
| 1211 | |
| 1212 | class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler): |
| 1213 | |
| 1214 | auth_header = 'Proxy-Authorization' |
| 1215 | handler_order = 490 # before Basic auth |
| 1216 | |
| 1217 | def http_error_407(self, req, fp, code, msg, headers): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1218 | host = req.host |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1219 | retry = self.http_error_auth_reqed('proxy-authenticate', |
| 1220 | host, req, headers) |
| 1221 | self.reset_retry_count() |
| 1222 | return retry |
| 1223 | |
| 1224 | class AbstractHTTPHandler(BaseHandler): |
| 1225 | |
| 1226 | def __init__(self, debuglevel=0): |
| 1227 | self._debuglevel = debuglevel |
| 1228 | |
| 1229 | def set_http_debuglevel(self, level): |
| 1230 | self._debuglevel = level |
| 1231 | |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 1232 | def _get_content_length(self, request): |
| 1233 | return http.client.HTTPConnection._get_content_length( |
| 1234 | request.data, |
| 1235 | request.get_method()) |
| 1236 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1237 | def do_request_(self, request): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1238 | host = request.host |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1239 | if not host: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1240 | raise URLError('no host given') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1241 | |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1242 | if request.data is not None: # POST |
| 1243 | data = request.data |
Senthil Kumaran | 2933312 | 2011-02-11 11:25:47 +0000 | [diff] [blame] | 1244 | if isinstance(data, str): |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 1245 | msg = "POST data should be bytes, an iterable of bytes, " \ |
| 1246 | "or a file object. It cannot be of type str." |
Senthil Kumaran | 6b3434a | 2012-03-15 18:11:16 -0700 | [diff] [blame] | 1247 | raise TypeError(msg) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1248 | if not request.has_header('Content-type'): |
| 1249 | request.add_unredirected_header( |
| 1250 | 'Content-type', |
| 1251 | 'application/x-www-form-urlencoded') |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 1252 | if (not request.has_header('Content-length') |
| 1253 | and not request.has_header('Transfer-encoding')): |
| 1254 | content_length = self._get_content_length(request) |
| 1255 | if content_length is not None: |
| 1256 | request.add_unredirected_header( |
| 1257 | 'Content-length', str(content_length)) |
Senthil Kumaran | 7bc0d87 | 2010-12-19 10:49:52 +0000 | [diff] [blame] | 1258 | else: |
| 1259 | request.add_unredirected_header( |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 1260 | 'Transfer-encoding', 'chunked') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1261 | |
Facundo Batista | 72dc1ea | 2008-08-16 14:44:32 +0000 | [diff] [blame] | 1262 | sel_host = host |
| 1263 | if request.has_proxy(): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1264 | scheme, sel = splittype(request.selector) |
Facundo Batista | 72dc1ea | 2008-08-16 14:44:32 +0000 | [diff] [blame] | 1265 | sel_host, sel_path = splithost(sel) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1266 | if not request.has_header('Host'): |
Facundo Batista | 72dc1ea | 2008-08-16 14:44:32 +0000 | [diff] [blame] | 1267 | request.add_unredirected_header('Host', sel_host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1268 | for name, value in self.parent.addheaders: |
| 1269 | name = name.capitalize() |
| 1270 | if not request.has_header(name): |
| 1271 | request.add_unredirected_header(name, value) |
| 1272 | |
| 1273 | return request |
| 1274 | |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 1275 | def do_open(self, http_class, req, **http_conn_args): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1276 | """Return an HTTPResponse object for the request, using http_class. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1277 | |
| 1278 | http_class must implement the HTTPConnection API from http.client. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1279 | """ |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1280 | host = req.host |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1281 | if not host: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1282 | raise URLError('no host given') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1283 | |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 1284 | # will parse host:port |
| 1285 | h = http_class(host, timeout=req.timeout, **http_conn_args) |
Senthil Kumaran | 9642eed | 2016-05-13 01:32:42 -0700 | [diff] [blame] | 1286 | h.set_debuglevel(self._debuglevel) |
Senthil Kumaran | 42ef4b1 | 2010-09-27 01:26:03 +0000 | [diff] [blame] | 1287 | |
| 1288 | headers = dict(req.unredirected_hdrs) |
| 1289 | headers.update(dict((k, v) for k, v in req.headers.items() |
| 1290 | if k not in headers)) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1291 | |
| 1292 | # TODO(jhylton): Should this be redesigned to handle |
| 1293 | # persistent connections? |
| 1294 | |
| 1295 | # We want to make an HTTP/1.1 request, but the addinfourl |
| 1296 | # class isn't prepared to deal with a persistent connection. |
| 1297 | # It will try to read all remaining data from the socket, |
| 1298 | # which will block while the server waits for the next request. |
| 1299 | # So make sure the connection gets closed after the (only) |
| 1300 | # request. |
| 1301 | headers["Connection"] = "close" |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1302 | headers = dict((name.title(), val) for name, val in headers.items()) |
Senthil Kumaran | 97f0c6b | 2009-07-25 04:24:38 +0000 | [diff] [blame] | 1303 | |
| 1304 | if req._tunnel_host: |
Senthil Kumaran | 47fff87 | 2009-12-20 07:10:31 +0000 | [diff] [blame] | 1305 | tunnel_headers = {} |
| 1306 | proxy_auth_hdr = "Proxy-Authorization" |
| 1307 | if proxy_auth_hdr in headers: |
| 1308 | tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr] |
| 1309 | # Proxy-Authorization should not be sent to origin |
| 1310 | # server. |
| 1311 | del headers[proxy_auth_hdr] |
| 1312 | h.set_tunnel(req._tunnel_host, headers=tunnel_headers) |
Senthil Kumaran | 97f0c6b | 2009-07-25 04:24:38 +0000 | [diff] [blame] | 1313 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1314 | try: |
Serhiy Storchaka | f54c350 | 2014-09-06 21:41:39 +0300 | [diff] [blame] | 1315 | try: |
Martin Panter | 3c0d0ba | 2016-08-24 06:33:33 +0000 | [diff] [blame] | 1316 | h.request(req.get_method(), req.selector, req.data, headers, |
| 1317 | encode_chunked=req.has_header('Transfer-encoding')) |
Serhiy Storchaka | f54c350 | 2014-09-06 21:41:39 +0300 | [diff] [blame] | 1318 | except OSError as err: # timeout error |
| 1319 | raise URLError(err) |
Senthil Kumaran | 45686b4 | 2011-07-27 09:31:03 +0800 | [diff] [blame] | 1320 | r = h.getresponse() |
Serhiy Storchaka | f54c350 | 2014-09-06 21:41:39 +0300 | [diff] [blame] | 1321 | except: |
| 1322 | h.close() |
| 1323 | raise |
| 1324 | |
| 1325 | # If the server does not send us a 'Connection: close' header, |
| 1326 | # HTTPConnection assumes the socket should be left open. Manually |
| 1327 | # mark the socket to be closed when this response object goes away. |
| 1328 | if h.sock: |
| 1329 | h.sock.close() |
| 1330 | h.sock = None |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1331 | |
Senthil Kumaran | 2643041 | 2011-04-13 07:01:19 +0800 | [diff] [blame] | 1332 | r.url = req.get_full_url() |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1333 | # This line replaces the .msg attribute of the HTTPResponse |
| 1334 | # with .headers, because urllib clients expect the response to |
| 1335 | # have the reason in .msg. It would be good to mark this |
| 1336 | # attribute is deprecated and get then to use info() or |
| 1337 | # .headers. |
| 1338 | r.msg = r.reason |
| 1339 | return r |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1340 | |
| 1341 | |
| 1342 | class HTTPHandler(AbstractHTTPHandler): |
| 1343 | |
| 1344 | def http_open(self, req): |
| 1345 | return self.do_open(http.client.HTTPConnection, req) |
| 1346 | |
| 1347 | http_request = AbstractHTTPHandler.do_request_ |
| 1348 | |
| 1349 | if hasattr(http.client, 'HTTPSConnection'): |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 1350 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1351 | class HTTPSHandler(AbstractHTTPHandler): |
| 1352 | |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 1353 | def __init__(self, debuglevel=0, context=None, check_hostname=None): |
| 1354 | AbstractHTTPHandler.__init__(self, debuglevel) |
| 1355 | self._context = context |
| 1356 | self._check_hostname = check_hostname |
| 1357 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1358 | def https_open(self, req): |
Antoine Pitrou | 803e6d6 | 2010-10-13 10:36:15 +0000 | [diff] [blame] | 1359 | return self.do_open(http.client.HTTPSConnection, req, |
| 1360 | context=self._context, check_hostname=self._check_hostname) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1361 | |
| 1362 | https_request = AbstractHTTPHandler.do_request_ |
| 1363 | |
Senthil Kumaran | 4c875a9 | 2011-11-01 23:57:57 +0800 | [diff] [blame] | 1364 | __all__.append('HTTPSHandler') |
Senthil Kumaran | 0d54eb9 | 2011-11-01 23:49:46 +0800 | [diff] [blame] | 1365 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1366 | class HTTPCookieProcessor(BaseHandler): |
| 1367 | def __init__(self, cookiejar=None): |
| 1368 | import http.cookiejar |
| 1369 | if cookiejar is None: |
| 1370 | cookiejar = http.cookiejar.CookieJar() |
| 1371 | self.cookiejar = cookiejar |
| 1372 | |
| 1373 | def http_request(self, request): |
| 1374 | self.cookiejar.add_cookie_header(request) |
| 1375 | return request |
| 1376 | |
| 1377 | def http_response(self, request, response): |
| 1378 | self.cookiejar.extract_cookies(response, request) |
| 1379 | return response |
| 1380 | |
| 1381 | https_request = http_request |
| 1382 | https_response = http_response |
| 1383 | |
| 1384 | class UnknownHandler(BaseHandler): |
| 1385 | def unknown_open(self, req): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1386 | type = req.type |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1387 | raise URLError('unknown url type: %s' % type) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1388 | |
| 1389 | def parse_keqv_list(l): |
| 1390 | """Parse list of key=value strings where keys are not duplicated.""" |
| 1391 | parsed = {} |
| 1392 | for elt in l: |
| 1393 | k, v = elt.split('=', 1) |
| 1394 | if v[0] == '"' and v[-1] == '"': |
| 1395 | v = v[1:-1] |
| 1396 | parsed[k] = v |
| 1397 | return parsed |
| 1398 | |
| 1399 | def parse_http_list(s): |
| 1400 | """Parse lists as described by RFC 2068 Section 2. |
| 1401 | |
| 1402 | In particular, parse comma-separated lists where the elements of |
| 1403 | the list may include quoted-strings. A quoted-string could |
| 1404 | contain a comma. A non-quoted string could have quotes in the |
| 1405 | middle. Neither commas nor quotes count if they are escaped. |
| 1406 | Only double-quotes count, not single-quotes. |
| 1407 | """ |
| 1408 | res = [] |
| 1409 | part = '' |
| 1410 | |
| 1411 | escape = quote = False |
| 1412 | for cur in s: |
| 1413 | if escape: |
| 1414 | part += cur |
| 1415 | escape = False |
| 1416 | continue |
| 1417 | if quote: |
| 1418 | if cur == '\\': |
| 1419 | escape = True |
| 1420 | continue |
| 1421 | elif cur == '"': |
| 1422 | quote = False |
| 1423 | part += cur |
| 1424 | continue |
| 1425 | |
| 1426 | if cur == ',': |
| 1427 | res.append(part) |
| 1428 | part = '' |
| 1429 | continue |
| 1430 | |
| 1431 | if cur == '"': |
| 1432 | quote = True |
| 1433 | |
| 1434 | part += cur |
| 1435 | |
| 1436 | # append last part |
| 1437 | if part: |
| 1438 | res.append(part) |
| 1439 | |
| 1440 | return [part.strip() for part in res] |
| 1441 | |
| 1442 | class FileHandler(BaseHandler): |
| 1443 | # Use local file or FTP depending on form of URL |
| 1444 | def file_open(self, req): |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1445 | url = req.selector |
Senthil Kumaran | 2ef1632 | 2010-07-11 03:12:43 +0000 | [diff] [blame] | 1446 | if url[:2] == '//' and url[2:3] != '/' and (req.host and |
| 1447 | req.host != 'localhost'): |
Senthil Kumaran | bc07ac5 | 2014-07-22 00:15:20 -0700 | [diff] [blame] | 1448 | if not req.host in self.get_names(): |
Senthil Kumaran | 383c32d | 2010-10-14 11:57:35 +0000 | [diff] [blame] | 1449 | raise URLError("file:// scheme is supported only on localhost") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1450 | else: |
| 1451 | return self.open_local_file(req) |
| 1452 | |
| 1453 | # names for the localhost |
| 1454 | names = None |
| 1455 | def get_names(self): |
| 1456 | if FileHandler.names is None: |
| 1457 | try: |
Senthil Kumaran | 99b2c8f | 2009-12-27 10:13:39 +0000 | [diff] [blame] | 1458 | FileHandler.names = tuple( |
| 1459 | socket.gethostbyname_ex('localhost')[2] + |
| 1460 | socket.gethostbyname_ex(socket.gethostname())[2]) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1461 | except socket.gaierror: |
| 1462 | FileHandler.names = (socket.gethostbyname('localhost'),) |
| 1463 | return FileHandler.names |
| 1464 | |
| 1465 | # not entirely sure what the rules are here |
| 1466 | def open_local_file(self, req): |
| 1467 | import email.utils |
| 1468 | import mimetypes |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1469 | host = req.host |
Senthil Kumaran | 06f5a53 | 2010-05-08 05:12:05 +0000 | [diff] [blame] | 1470 | filename = req.selector |
| 1471 | localfile = url2pathname(filename) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1472 | try: |
| 1473 | stats = os.stat(localfile) |
| 1474 | size = stats.st_size |
| 1475 | modified = email.utils.formatdate(stats.st_mtime, usegmt=True) |
Senthil Kumaran | 06f5a53 | 2010-05-08 05:12:05 +0000 | [diff] [blame] | 1476 | mtype = mimetypes.guess_type(filename)[0] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1477 | headers = email.message_from_string( |
| 1478 | 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' % |
| 1479 | (mtype or 'text/plain', size, modified)) |
| 1480 | if host: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1481 | host, port = splitport(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1482 | if not host or \ |
| 1483 | (not port and _safe_gethostbyname(host) in self.get_names()): |
Senthil Kumaran | 06f5a53 | 2010-05-08 05:12:05 +0000 | [diff] [blame] | 1484 | if host: |
| 1485 | origurl = 'file://' + host + filename |
| 1486 | else: |
| 1487 | origurl = 'file://' + filename |
| 1488 | return addinfourl(open(localfile, 'rb'), headers, origurl) |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 1489 | except OSError as exp: |
Georg Brandl | 029986a | 2008-06-23 11:44:14 +0000 | [diff] [blame] | 1490 | # users shouldn't expect OSErrors coming from urlopen() |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 1491 | raise URLError(exp) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1492 | raise URLError('file not on local host') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1493 | |
| 1494 | def _safe_gethostbyname(host): |
| 1495 | try: |
| 1496 | return socket.gethostbyname(host) |
| 1497 | except socket.gaierror: |
| 1498 | return None |
| 1499 | |
| 1500 | class FTPHandler(BaseHandler): |
| 1501 | def ftp_open(self, req): |
| 1502 | import ftplib |
| 1503 | import mimetypes |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1504 | host = req.host |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1505 | if not host: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1506 | raise URLError('ftp error: no host given') |
| 1507 | host, port = splitport(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1508 | if port is None: |
| 1509 | port = ftplib.FTP_PORT |
| 1510 | else: |
| 1511 | port = int(port) |
| 1512 | |
| 1513 | # username/password handling |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1514 | user, host = splituser(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1515 | if user: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1516 | user, passwd = splitpasswd(user) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1517 | else: |
| 1518 | passwd = None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1519 | host = unquote(host) |
Senthil Kumaran | daa29d0 | 2010-11-18 15:36:41 +0000 | [diff] [blame] | 1520 | user = user or '' |
| 1521 | passwd = passwd or '' |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1522 | |
| 1523 | try: |
| 1524 | host = socket.gethostbyname(host) |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 1525 | except OSError as msg: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1526 | raise URLError(msg) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1527 | path, attrs = splitattr(req.selector) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1528 | dirs = path.split('/') |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1529 | dirs = list(map(unquote, dirs)) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1530 | dirs, file = dirs[:-1], dirs[-1] |
| 1531 | if dirs and not dirs[0]: |
| 1532 | dirs = dirs[1:] |
| 1533 | try: |
| 1534 | fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout) |
| 1535 | type = file and 'I' or 'D' |
| 1536 | for attr in attrs: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1537 | attr, value = splitvalue(attr) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1538 | if attr.lower() == 'type' and \ |
| 1539 | value in ('a', 'A', 'i', 'I', 'd', 'D'): |
| 1540 | type = value.upper() |
| 1541 | fp, retrlen = fw.retrfile(file, type) |
| 1542 | headers = "" |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1543 | mtype = mimetypes.guess_type(req.full_url)[0] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1544 | if mtype: |
| 1545 | headers += "Content-type: %s\n" % mtype |
| 1546 | if retrlen is not None and retrlen >= 0: |
| 1547 | headers += "Content-length: %d\n" % retrlen |
| 1548 | headers = email.message_from_string(headers) |
Jeremy Hylton | 6c5e28c | 2009-03-31 14:35:53 +0000 | [diff] [blame] | 1549 | return addinfourl(fp, headers, req.full_url) |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 1550 | except ftplib.all_errors as exp: |
| 1551 | exc = URLError('ftp error: %r' % exp) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1552 | raise exc.with_traceback(sys.exc_info()[2]) |
| 1553 | |
| 1554 | def connect_ftp(self, user, passwd, host, port, dirs, timeout): |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 1555 | return ftpwrapper(user, passwd, host, port, dirs, timeout, |
| 1556 | persistent=False) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1557 | |
| 1558 | class CacheFTPHandler(FTPHandler): |
| 1559 | # XXX would be nice to have pluggable cache strategies |
| 1560 | # XXX this stuff is definitely not thread safe |
| 1561 | def __init__(self): |
| 1562 | self.cache = {} |
| 1563 | self.timeout = {} |
| 1564 | self.soonest = 0 |
| 1565 | self.delay = 60 |
| 1566 | self.max_conns = 16 |
| 1567 | |
| 1568 | def setTimeout(self, t): |
| 1569 | self.delay = t |
| 1570 | |
| 1571 | def setMaxConns(self, m): |
| 1572 | self.max_conns = m |
| 1573 | |
| 1574 | def connect_ftp(self, user, passwd, host, port, dirs, timeout): |
| 1575 | key = user, host, port, '/'.join(dirs), timeout |
| 1576 | if key in self.cache: |
| 1577 | self.timeout[key] = time.time() + self.delay |
| 1578 | else: |
| 1579 | self.cache[key] = ftpwrapper(user, passwd, host, port, |
| 1580 | dirs, timeout) |
| 1581 | self.timeout[key] = time.time() + self.delay |
| 1582 | self.check_cache() |
| 1583 | return self.cache[key] |
| 1584 | |
| 1585 | def check_cache(self): |
| 1586 | # first check for old ones |
| 1587 | t = time.time() |
| 1588 | if self.soonest <= t: |
| 1589 | for k, v in list(self.timeout.items()): |
| 1590 | if v < t: |
| 1591 | self.cache[k].close() |
| 1592 | del self.cache[k] |
| 1593 | del self.timeout[k] |
| 1594 | self.soonest = min(list(self.timeout.values())) |
| 1595 | |
| 1596 | # then check the size |
| 1597 | if len(self.cache) == self.max_conns: |
| 1598 | for k, v in list(self.timeout.items()): |
| 1599 | if v == self.soonest: |
| 1600 | del self.cache[k] |
| 1601 | del self.timeout[k] |
| 1602 | break |
| 1603 | self.soonest = min(list(self.timeout.values())) |
| 1604 | |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 1605 | def clear_cache(self): |
| 1606 | for conn in self.cache.values(): |
| 1607 | conn.close() |
| 1608 | self.cache.clear() |
| 1609 | self.timeout.clear() |
| 1610 | |
Antoine Pitrou | df204be | 2012-11-24 17:59:08 +0100 | [diff] [blame] | 1611 | class DataHandler(BaseHandler): |
| 1612 | def data_open(self, req): |
| 1613 | # data URLs as specified in RFC 2397. |
| 1614 | # |
| 1615 | # ignores POSTed data |
| 1616 | # |
| 1617 | # syntax: |
| 1618 | # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data |
| 1619 | # mediatype := [ type "/" subtype ] *( ";" parameter ) |
| 1620 | # data := *urlchar |
| 1621 | # parameter := attribute "=" value |
| 1622 | url = req.full_url |
| 1623 | |
| 1624 | scheme, data = url.split(":",1) |
| 1625 | mediatype, data = data.split(",",1) |
| 1626 | |
| 1627 | # even base64 encoded data URLs might be quoted so unquote in any case: |
| 1628 | data = unquote_to_bytes(data) |
| 1629 | if mediatype.endswith(";base64"): |
| 1630 | data = base64.decodebytes(data) |
| 1631 | mediatype = mediatype[:-7] |
| 1632 | |
| 1633 | if not mediatype: |
| 1634 | mediatype = "text/plain;charset=US-ASCII" |
| 1635 | |
| 1636 | headers = email.message_from_string("Content-type: %s\nContent-length: %d\n" % |
| 1637 | (mediatype, len(data))) |
| 1638 | |
| 1639 | return addinfourl(io.BytesIO(data), headers, url) |
| 1640 | |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 1641 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1642 | # Code move from the old urllib module |
| 1643 | |
| 1644 | MAXFTPCACHE = 10 # Trim the ftp cache beyond this size |
| 1645 | |
| 1646 | # Helper for non-unix systems |
Ronald Oussoren | 94f2528 | 2010-05-05 19:11:21 +0000 | [diff] [blame] | 1647 | if os.name == 'nt': |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1648 | from nturl2path import url2pathname, pathname2url |
| 1649 | else: |
| 1650 | def url2pathname(pathname): |
| 1651 | """OS-specific conversion from a relative URL of the 'file' scheme |
| 1652 | to a file system path; not recommended for general use.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1653 | return unquote(pathname) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1654 | |
| 1655 | def pathname2url(pathname): |
| 1656 | """OS-specific conversion from a file system path to a relative URL |
| 1657 | of the 'file' scheme; not recommended for general use.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1658 | return quote(pathname) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1659 | |
| 1660 | # This really consists of two pieces: |
| 1661 | # (1) a class which handles opening of all sorts of URLs |
| 1662 | # (plus assorted utilities etc.) |
| 1663 | # (2) a set of functions for parsing URLs |
| 1664 | # XXX Should these be separated out into different modules? |
| 1665 | |
| 1666 | |
| 1667 | ftpcache = {} |
| 1668 | class URLopener: |
| 1669 | """Class to open URLs. |
| 1670 | This is a class rather than just a subroutine because we may need |
| 1671 | more than one set of global protocol-specific options. |
| 1672 | Note -- this is a base class for those who don't want the |
| 1673 | automatic handling of errors type 302 (relocated) and 401 |
| 1674 | (authorization needed).""" |
| 1675 | |
| 1676 | __tempfiles = None |
| 1677 | |
| 1678 | version = "Python-urllib/%s" % __version__ |
| 1679 | |
| 1680 | # Constructor |
| 1681 | def __init__(self, proxies=None, **x509): |
Georg Brandl | fcbdbf2 | 2012-06-24 19:56:31 +0200 | [diff] [blame] | 1682 | msg = "%(class)s style of invoking requests is deprecated. " \ |
Senthil Kumaran | 38b968b9 | 2012-03-14 13:43:53 -0700 | [diff] [blame] | 1683 | "Use newer urlopen functions/methods" % {'class': self.__class__.__name__} |
| 1684 | warnings.warn(msg, DeprecationWarning, stacklevel=3) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1685 | if proxies is None: |
| 1686 | proxies = getproxies() |
| 1687 | assert hasattr(proxies, 'keys'), "proxies must be a mapping" |
| 1688 | self.proxies = proxies |
| 1689 | self.key_file = x509.get('key_file') |
| 1690 | self.cert_file = x509.get('cert_file') |
Raymond Hettinger | b7f3c94 | 2016-09-09 16:44:53 -0700 | [diff] [blame] | 1691 | self.addheaders = [('User-Agent', self.version), ('Accept', '*/*')] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1692 | self.__tempfiles = [] |
| 1693 | self.__unlink = os.unlink # See cleanup() |
| 1694 | self.tempcache = None |
| 1695 | # Undocumented feature: if you assign {} to tempcache, |
| 1696 | # it is used to cache files retrieved with |
| 1697 | # self.retrieve(). This is not enabled by default |
| 1698 | # since it does not work for changing documents (and I |
| 1699 | # haven't got the logic to check expiration headers |
| 1700 | # yet). |
| 1701 | self.ftpcache = ftpcache |
| 1702 | # Undocumented feature: you can use a different |
| 1703 | # ftp cache by assigning to the .ftpcache member; |
| 1704 | # in case you want logically independent URL openers |
| 1705 | # XXX This is not threadsafe. Bah. |
| 1706 | |
| 1707 | def __del__(self): |
| 1708 | self.close() |
| 1709 | |
| 1710 | def close(self): |
| 1711 | self.cleanup() |
| 1712 | |
| 1713 | def cleanup(self): |
| 1714 | # This code sometimes runs when the rest of this module |
| 1715 | # has already been deleted, so it can't use any globals |
| 1716 | # or import anything. |
| 1717 | if self.__tempfiles: |
| 1718 | for file in self.__tempfiles: |
| 1719 | try: |
| 1720 | self.__unlink(file) |
| 1721 | except OSError: |
| 1722 | pass |
| 1723 | del self.__tempfiles[:] |
| 1724 | if self.tempcache: |
| 1725 | self.tempcache.clear() |
| 1726 | |
| 1727 | def addheader(self, *args): |
| 1728 | """Add a header to be used by the HTTP interface only |
| 1729 | e.g. u.addheader('Accept', 'sound/basic')""" |
| 1730 | self.addheaders.append(args) |
| 1731 | |
| 1732 | # External interface |
| 1733 | def open(self, fullurl, data=None): |
| 1734 | """Use URLopener().open(file) instead of open(file, 'r').""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1735 | fullurl = unwrap(to_bytes(fullurl)) |
Senthil Kumaran | 734f059 | 2010-02-20 22:19:04 +0000 | [diff] [blame] | 1736 | fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1737 | if self.tempcache and fullurl in self.tempcache: |
| 1738 | filename, headers = self.tempcache[fullurl] |
| 1739 | fp = open(filename, 'rb') |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1740 | return addinfourl(fp, headers, fullurl) |
| 1741 | urltype, url = splittype(fullurl) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1742 | if not urltype: |
| 1743 | urltype = 'file' |
| 1744 | if urltype in self.proxies: |
| 1745 | proxy = self.proxies[urltype] |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1746 | urltype, proxyhost = splittype(proxy) |
| 1747 | host, selector = splithost(proxyhost) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1748 | url = (host, fullurl) # Signal special case to open_*() |
| 1749 | else: |
| 1750 | proxy = None |
| 1751 | name = 'open_' + urltype |
| 1752 | self.type = urltype |
| 1753 | name = name.replace('-', '_') |
| 1754 | if not hasattr(self, name): |
| 1755 | if proxy: |
| 1756 | return self.open_unknown_proxy(proxy, fullurl, data) |
| 1757 | else: |
| 1758 | return self.open_unknown(fullurl, data) |
| 1759 | try: |
| 1760 | if data is None: |
| 1761 | return getattr(self, name)(url) |
| 1762 | else: |
| 1763 | return getattr(self, name)(url, data) |
Senthil Kumaran | f577686 | 2012-10-21 13:30:02 -0700 | [diff] [blame] | 1764 | except (HTTPError, URLError): |
Antoine Pitrou | 6b4883d | 2011-10-12 02:54:14 +0200 | [diff] [blame] | 1765 | raise |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 1766 | except OSError as msg: |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1767 | raise OSError('socket error', msg).with_traceback(sys.exc_info()[2]) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1768 | |
| 1769 | def open_unknown(self, fullurl, data=None): |
| 1770 | """Overridable interface to open unknown URL type.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1771 | type, url = splittype(fullurl) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1772 | raise OSError('url error', 'unknown url type', type) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1773 | |
| 1774 | def open_unknown_proxy(self, proxy, fullurl, data=None): |
| 1775 | """Overridable interface to open unknown URL type.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1776 | type, url = splittype(fullurl) |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1777 | raise OSError('url error', 'invalid proxy for %s' % type, proxy) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1778 | |
| 1779 | # External interface |
| 1780 | def retrieve(self, url, filename=None, reporthook=None, data=None): |
| 1781 | """retrieve(url) returns (filename, headers) for a local object |
| 1782 | or (tempfilename, headers) for a remote object.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1783 | url = unwrap(to_bytes(url)) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1784 | if self.tempcache and url in self.tempcache: |
| 1785 | return self.tempcache[url] |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1786 | type, url1 = splittype(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1787 | if filename is None and (not type or type == 'file'): |
| 1788 | try: |
| 1789 | fp = self.open_local_file(url1) |
| 1790 | hdrs = fp.info() |
Philip Jenvey | cb134d7 | 2009-12-03 02:45:01 +0000 | [diff] [blame] | 1791 | fp.close() |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1792 | return url2pathname(splithost(url1)[1]), hdrs |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1793 | except OSError as msg: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1794 | pass |
| 1795 | fp = self.open(url, data) |
Benjamin Peterson | 5f28b7b | 2009-03-26 21:49:58 +0000 | [diff] [blame] | 1796 | try: |
| 1797 | headers = fp.info() |
| 1798 | if filename: |
| 1799 | tfp = open(filename, 'wb') |
| 1800 | else: |
| 1801 | import tempfile |
| 1802 | garbage, path = splittype(url) |
| 1803 | garbage, path = splithost(path or "") |
| 1804 | path, garbage = splitquery(path or "") |
| 1805 | path, garbage = splitattr(path or "") |
| 1806 | suffix = os.path.splitext(path)[1] |
| 1807 | (fd, filename) = tempfile.mkstemp(suffix) |
| 1808 | self.__tempfiles.append(filename) |
| 1809 | tfp = os.fdopen(fd, 'wb') |
| 1810 | try: |
| 1811 | result = filename, headers |
| 1812 | if self.tempcache is not None: |
| 1813 | self.tempcache[url] = result |
| 1814 | bs = 1024*8 |
| 1815 | size = -1 |
| 1816 | read = 0 |
| 1817 | blocknum = 0 |
Senthil Kumaran | ce26014 | 2011-11-01 01:35:17 +0800 | [diff] [blame] | 1818 | if "content-length" in headers: |
| 1819 | size = int(headers["Content-Length"]) |
Benjamin Peterson | 5f28b7b | 2009-03-26 21:49:58 +0000 | [diff] [blame] | 1820 | if reporthook: |
Benjamin Peterson | 5f28b7b | 2009-03-26 21:49:58 +0000 | [diff] [blame] | 1821 | reporthook(blocknum, bs, size) |
| 1822 | while 1: |
| 1823 | block = fp.read(bs) |
| 1824 | if not block: |
| 1825 | break |
| 1826 | read += len(block) |
| 1827 | tfp.write(block) |
| 1828 | blocknum += 1 |
| 1829 | if reporthook: |
| 1830 | reporthook(blocknum, bs, size) |
| 1831 | finally: |
| 1832 | tfp.close() |
| 1833 | finally: |
| 1834 | fp.close() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1835 | |
| 1836 | # raise exception if actual size does not match content-length header |
| 1837 | if size >= 0 and read < size: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1838 | raise ContentTooShortError( |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1839 | "retrieval incomplete: got only %i out of %i bytes" |
| 1840 | % (read, size), result) |
| 1841 | |
| 1842 | return result |
| 1843 | |
| 1844 | # Each method named open_<type> knows how to open that type of URL |
| 1845 | |
| 1846 | def _open_generic_http(self, connection_factory, url, data): |
| 1847 | """Make an HTTP connection using connection_class. |
| 1848 | |
| 1849 | This is an internal method that should be called from |
| 1850 | open_http() or open_https(). |
| 1851 | |
| 1852 | Arguments: |
| 1853 | - connection_factory should take a host name and return an |
| 1854 | HTTPConnection instance. |
| 1855 | - url is the url to retrieval or a host, relative-path pair. |
| 1856 | - data is payload for a POST request or None. |
| 1857 | """ |
| 1858 | |
| 1859 | user_passwd = None |
| 1860 | proxy_passwd= None |
| 1861 | if isinstance(url, str): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1862 | host, selector = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1863 | if host: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1864 | user_passwd, host = splituser(host) |
| 1865 | host = unquote(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1866 | realhost = host |
| 1867 | else: |
| 1868 | host, selector = url |
| 1869 | # check whether the proxy contains authorization information |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1870 | proxy_passwd, host = splituser(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1871 | # now we proceed with the url we want to obtain |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1872 | urltype, rest = splittype(selector) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1873 | url = rest |
| 1874 | user_passwd = None |
| 1875 | if urltype.lower() != 'http': |
| 1876 | realhost = None |
| 1877 | else: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1878 | realhost, rest = splithost(rest) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1879 | if realhost: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1880 | user_passwd, realhost = splituser(realhost) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1881 | if user_passwd: |
| 1882 | selector = "%s://%s%s" % (urltype, realhost, rest) |
| 1883 | if proxy_bypass(realhost): |
| 1884 | host = realhost |
| 1885 | |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1886 | if not host: raise OSError('http error', 'no host given') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1887 | |
| 1888 | if proxy_passwd: |
Senthil Kumaran | c5c5a14 | 2012-01-14 19:09:04 +0800 | [diff] [blame] | 1889 | proxy_passwd = unquote(proxy_passwd) |
Senthil Kumaran | 5626eec | 2010-08-04 17:46:23 +0000 | [diff] [blame] | 1890 | proxy_auth = base64.b64encode(proxy_passwd.encode()).decode('ascii') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1891 | else: |
| 1892 | proxy_auth = None |
| 1893 | |
| 1894 | if user_passwd: |
Senthil Kumaran | c5c5a14 | 2012-01-14 19:09:04 +0800 | [diff] [blame] | 1895 | user_passwd = unquote(user_passwd) |
Senthil Kumaran | 5626eec | 2010-08-04 17:46:23 +0000 | [diff] [blame] | 1896 | auth = base64.b64encode(user_passwd.encode()).decode('ascii') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1897 | else: |
| 1898 | auth = None |
| 1899 | http_conn = connection_factory(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1900 | headers = {} |
| 1901 | if proxy_auth: |
| 1902 | headers["Proxy-Authorization"] = "Basic %s" % proxy_auth |
| 1903 | if auth: |
| 1904 | headers["Authorization"] = "Basic %s" % auth |
| 1905 | if realhost: |
| 1906 | headers["Host"] = realhost |
Senthil Kumaran | d91ffca | 2011-03-19 17:25:27 +0800 | [diff] [blame] | 1907 | |
| 1908 | # Add Connection:close as we don't support persistent connections yet. |
| 1909 | # This helps in closing the socket and avoiding ResourceWarning |
| 1910 | |
| 1911 | headers["Connection"] = "close" |
| 1912 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1913 | for header, value in self.addheaders: |
| 1914 | headers[header] = value |
| 1915 | |
| 1916 | if data is not None: |
| 1917 | headers["Content-Type"] = "application/x-www-form-urlencoded" |
| 1918 | http_conn.request("POST", selector, data, headers) |
| 1919 | else: |
| 1920 | http_conn.request("GET", selector, headers=headers) |
| 1921 | |
| 1922 | try: |
| 1923 | response = http_conn.getresponse() |
| 1924 | except http.client.BadStatusLine: |
| 1925 | # something went wrong with the HTTP status line |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1926 | raise URLError("http protocol error: bad status line") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1927 | |
| 1928 | # According to RFC 2616, "2xx" code indicates that the client's |
| 1929 | # request was successfully received, understood, and accepted. |
| 1930 | if 200 <= response.status < 300: |
Antoine Pitrou | b353c12 | 2009-02-11 00:39:14 +0000 | [diff] [blame] | 1931 | return addinfourl(response, response.msg, "http:" + url, |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1932 | response.status) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1933 | else: |
| 1934 | return self.http_error( |
| 1935 | url, response.fp, |
| 1936 | response.status, response.reason, response.msg, data) |
| 1937 | |
| 1938 | def open_http(self, url, data=None): |
| 1939 | """Use HTTP protocol.""" |
| 1940 | return self._open_generic_http(http.client.HTTPConnection, url, data) |
| 1941 | |
| 1942 | def http_error(self, url, fp, errcode, errmsg, headers, data=None): |
| 1943 | """Handle http errors. |
| 1944 | |
| 1945 | Derived class can override this, or provide specific handlers |
| 1946 | named http_error_DDD where DDD is the 3-digit error code.""" |
| 1947 | # First check if there's a specific handler for this error |
| 1948 | name = 'http_error_%d' % errcode |
| 1949 | if hasattr(self, name): |
| 1950 | method = getattr(self, name) |
| 1951 | if data is None: |
| 1952 | result = method(url, fp, errcode, errmsg, headers) |
| 1953 | else: |
| 1954 | result = method(url, fp, errcode, errmsg, headers, data) |
| 1955 | if result: return result |
| 1956 | return self.http_error_default(url, fp, errcode, errmsg, headers) |
| 1957 | |
| 1958 | def http_error_default(self, url, fp, errcode, errmsg, headers): |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 1959 | """Default error handler: close the connection and raise OSError.""" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1960 | fp.close() |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1961 | raise HTTPError(url, errcode, errmsg, headers, None) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1962 | |
| 1963 | if _have_ssl: |
| 1964 | def _https_connection(self, host): |
| 1965 | return http.client.HTTPSConnection(host, |
| 1966 | key_file=self.key_file, |
| 1967 | cert_file=self.cert_file) |
| 1968 | |
| 1969 | def open_https(self, url, data=None): |
| 1970 | """Use HTTPS protocol.""" |
| 1971 | return self._open_generic_http(self._https_connection, url, data) |
| 1972 | |
| 1973 | def open_file(self, url): |
| 1974 | """Use local file or FTP depending on form of URL.""" |
| 1975 | if not isinstance(url, str): |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 1976 | raise URLError('file error: proxy support for file protocol currently not implemented') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1977 | if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/': |
Senthil Kumaran | 383c32d | 2010-10-14 11:57:35 +0000 | [diff] [blame] | 1978 | raise ValueError("file:// scheme is supported only on localhost") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1979 | else: |
| 1980 | return self.open_local_file(url) |
| 1981 | |
| 1982 | def open_local_file(self, url): |
| 1983 | """Use local file.""" |
Senthil Kumaran | 6c5bd40 | 2011-11-01 23:20:31 +0800 | [diff] [blame] | 1984 | import email.utils |
| 1985 | import mimetypes |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 1986 | host, file = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1987 | localname = url2pathname(file) |
| 1988 | try: |
| 1989 | stats = os.stat(localname) |
| 1990 | except OSError as e: |
Senthil Kumaran | f577686 | 2012-10-21 13:30:02 -0700 | [diff] [blame] | 1991 | raise URLError(e.strerror, e.filename) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 1992 | size = stats.st_size |
| 1993 | modified = email.utils.formatdate(stats.st_mtime, usegmt=True) |
| 1994 | mtype = mimetypes.guess_type(url)[0] |
| 1995 | headers = email.message_from_string( |
| 1996 | 'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' % |
| 1997 | (mtype or 'text/plain', size, modified)) |
| 1998 | if not host: |
| 1999 | urlfile = file |
| 2000 | if file[:1] == '/': |
| 2001 | urlfile = 'file://' + file |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2002 | return addinfourl(open(localname, 'rb'), headers, urlfile) |
| 2003 | host, port = splitport(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2004 | if (not port |
Senthil Kumaran | 40d8078 | 2012-10-22 09:43:04 -0700 | [diff] [blame] | 2005 | and socket.gethostbyname(host) in ((localhost(),) + thishost())): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2006 | urlfile = file |
| 2007 | if file[:1] == '/': |
| 2008 | urlfile = 'file://' + file |
Senthil Kumaran | 3800ea9 | 2012-01-21 11:52:48 +0800 | [diff] [blame] | 2009 | elif file[:2] == './': |
| 2010 | raise ValueError("local file url may start with / or file:. Unknown url of type: %s" % url) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2011 | return addinfourl(open(localname, 'rb'), headers, urlfile) |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 2012 | raise URLError('local file error: not on local host') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2013 | |
| 2014 | def open_ftp(self, url): |
| 2015 | """Use FTP protocol.""" |
| 2016 | if not isinstance(url, str): |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 2017 | raise URLError('ftp error: proxy support for ftp protocol currently not implemented') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2018 | import mimetypes |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2019 | host, path = splithost(url) |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 2020 | if not host: raise URLError('ftp error: no host given') |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2021 | host, port = splitport(host) |
| 2022 | user, host = splituser(host) |
| 2023 | if user: user, passwd = splitpasswd(user) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2024 | else: passwd = None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2025 | host = unquote(host) |
| 2026 | user = unquote(user or '') |
| 2027 | passwd = unquote(passwd or '') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2028 | host = socket.gethostbyname(host) |
| 2029 | if not port: |
| 2030 | import ftplib |
| 2031 | port = ftplib.FTP_PORT |
| 2032 | else: |
| 2033 | port = int(port) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2034 | path, attrs = splitattr(path) |
| 2035 | path = unquote(path) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2036 | dirs = path.split('/') |
| 2037 | dirs, file = dirs[:-1], dirs[-1] |
| 2038 | if dirs and not dirs[0]: dirs = dirs[1:] |
| 2039 | if dirs and not dirs[0]: dirs[0] = '/' |
| 2040 | key = user, host, port, '/'.join(dirs) |
| 2041 | # XXX thread unsafe! |
| 2042 | if len(self.ftpcache) > MAXFTPCACHE: |
| 2043 | # Prune the cache, rather arbitrarily |
Benjamin Peterson | 3c2dca6 | 2014-06-07 15:08:04 -0700 | [diff] [blame] | 2044 | for k in list(self.ftpcache): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2045 | if k != key: |
| 2046 | v = self.ftpcache[k] |
| 2047 | del self.ftpcache[k] |
| 2048 | v.close() |
| 2049 | try: |
Senthil Kumaran | 34d38dc | 2011-10-20 02:48:01 +0800 | [diff] [blame] | 2050 | if key not in self.ftpcache: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2051 | self.ftpcache[key] = \ |
| 2052 | ftpwrapper(user, passwd, host, port, dirs) |
| 2053 | if not file: type = 'D' |
| 2054 | else: type = 'I' |
| 2055 | for attr in attrs: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2056 | attr, value = splitvalue(attr) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2057 | if attr.lower() == 'type' and \ |
| 2058 | value in ('a', 'A', 'i', 'I', 'd', 'D'): |
| 2059 | type = value.upper() |
| 2060 | (fp, retrlen) = self.ftpcache[key].retrfile(file, type) |
| 2061 | mtype = mimetypes.guess_type("ftp:" + url)[0] |
| 2062 | headers = "" |
| 2063 | if mtype: |
| 2064 | headers += "Content-Type: %s\n" % mtype |
| 2065 | if retrlen is not None and retrlen >= 0: |
| 2066 | headers += "Content-Length: %d\n" % retrlen |
| 2067 | headers = email.message_from_string(headers) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2068 | return addinfourl(fp, headers, "ftp:" + url) |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 2069 | except ftperrors() as exp: |
| 2070 | raise URLError('ftp error %r' % exp).with_traceback(sys.exc_info()[2]) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2071 | |
| 2072 | def open_data(self, url, data=None): |
| 2073 | """Use "data" URL.""" |
| 2074 | if not isinstance(url, str): |
Senthil Kumaran | 3ebef36 | 2012-10-21 18:31:25 -0700 | [diff] [blame] | 2075 | raise URLError('data error: proxy support for data protocol currently not implemented') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2076 | # ignore POSTed data |
| 2077 | # |
| 2078 | # syntax of data URLs: |
| 2079 | # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data |
| 2080 | # mediatype := [ type "/" subtype ] *( ";" parameter ) |
| 2081 | # data := *urlchar |
| 2082 | # parameter := attribute "=" value |
| 2083 | try: |
| 2084 | [type, data] = url.split(',', 1) |
| 2085 | except ValueError: |
Andrew Svetlov | f7a17b4 | 2012-12-25 16:47:37 +0200 | [diff] [blame] | 2086 | raise OSError('data error', 'bad data URL') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2087 | if not type: |
| 2088 | type = 'text/plain;charset=US-ASCII' |
| 2089 | semi = type.rfind(';') |
| 2090 | if semi >= 0 and '=' not in type[semi:]: |
| 2091 | encoding = type[semi+1:] |
| 2092 | type = type[:semi] |
| 2093 | else: |
| 2094 | encoding = '' |
| 2095 | msg = [] |
Senthil Kumaran | f6c456d | 2010-05-01 08:29:18 +0000 | [diff] [blame] | 2096 | msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT', |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2097 | time.gmtime(time.time()))) |
| 2098 | msg.append('Content-type: %s' % type) |
| 2099 | if encoding == 'base64': |
Georg Brandl | 706824f | 2009-06-04 09:42:55 +0000 | [diff] [blame] | 2100 | # XXX is this encoding/decoding ok? |
Marc-André Lemburg | 8f36af7 | 2011-02-25 15:42:01 +0000 | [diff] [blame] | 2101 | data = base64.decodebytes(data.encode('ascii')).decode('latin-1') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2102 | else: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2103 | data = unquote(data) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2104 | msg.append('Content-Length: %d' % len(data)) |
| 2105 | msg.append('') |
| 2106 | msg.append(data) |
| 2107 | msg = '\n'.join(msg) |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2108 | headers = email.message_from_string(msg) |
| 2109 | f = io.StringIO(msg) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2110 | #f.fileno = None # needed for addinfourl |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2111 | return addinfourl(f, headers, url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2112 | |
| 2113 | |
| 2114 | class FancyURLopener(URLopener): |
| 2115 | """Derived class with handlers for errors we can handle (perhaps).""" |
| 2116 | |
| 2117 | def __init__(self, *args, **kwargs): |
| 2118 | URLopener.__init__(self, *args, **kwargs) |
| 2119 | self.auth_cache = {} |
| 2120 | self.tries = 0 |
| 2121 | self.maxtries = 10 |
| 2122 | |
| 2123 | def http_error_default(self, url, fp, errcode, errmsg, headers): |
| 2124 | """Default error handling -- don't raise an exception.""" |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2125 | return addinfourl(fp, headers, "http:" + url, errcode) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2126 | |
| 2127 | def http_error_302(self, url, fp, errcode, errmsg, headers, data=None): |
| 2128 | """Error 302 -- relocated (temporarily).""" |
| 2129 | self.tries += 1 |
Martin Panter | a037022 | 2016-02-04 06:01:35 +0000 | [diff] [blame] | 2130 | try: |
| 2131 | if self.maxtries and self.tries >= self.maxtries: |
| 2132 | if hasattr(self, "http_error_500"): |
| 2133 | meth = self.http_error_500 |
| 2134 | else: |
| 2135 | meth = self.http_error_default |
| 2136 | return meth(url, fp, 500, |
| 2137 | "Internal Server Error: Redirect Recursion", |
| 2138 | headers) |
| 2139 | result = self.redirect_internal(url, fp, errcode, errmsg, |
| 2140 | headers, data) |
| 2141 | return result |
| 2142 | finally: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2143 | self.tries = 0 |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2144 | |
| 2145 | def redirect_internal(self, url, fp, errcode, errmsg, headers, data): |
| 2146 | if 'location' in headers: |
| 2147 | newurl = headers['location'] |
| 2148 | elif 'uri' in headers: |
| 2149 | newurl = headers['uri'] |
| 2150 | else: |
| 2151 | return |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2152 | fp.close() |
guido@google.com | a119df9 | 2011-03-29 11:41:02 -0700 | [diff] [blame] | 2153 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2154 | # In case the server sent a relative URL, join with original: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2155 | newurl = urljoin(self.type + ":" + url, newurl) |
guido@google.com | a119df9 | 2011-03-29 11:41:02 -0700 | [diff] [blame] | 2156 | |
| 2157 | urlparts = urlparse(newurl) |
| 2158 | |
| 2159 | # For security reasons, we don't allow redirection to anything other |
| 2160 | # than http, https and ftp. |
| 2161 | |
| 2162 | # We are using newer HTTPError with older redirect_internal method |
| 2163 | # This older method will get deprecated in 3.3 |
| 2164 | |
Senthil Kumaran | 6497aa3 | 2012-01-04 13:46:59 +0800 | [diff] [blame] | 2165 | if urlparts.scheme not in ('http', 'https', 'ftp', ''): |
guido@google.com | a119df9 | 2011-03-29 11:41:02 -0700 | [diff] [blame] | 2166 | raise HTTPError(newurl, errcode, |
| 2167 | errmsg + |
| 2168 | " Redirection to url '%s' is not allowed." % newurl, |
| 2169 | headers, fp) |
| 2170 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2171 | return self.open(newurl) |
| 2172 | |
| 2173 | def http_error_301(self, url, fp, errcode, errmsg, headers, data=None): |
| 2174 | """Error 301 -- also relocated (permanently).""" |
| 2175 | return self.http_error_302(url, fp, errcode, errmsg, headers, data) |
| 2176 | |
| 2177 | def http_error_303(self, url, fp, errcode, errmsg, headers, data=None): |
| 2178 | """Error 303 -- also relocated (essentially identical to 302).""" |
| 2179 | return self.http_error_302(url, fp, errcode, errmsg, headers, data) |
| 2180 | |
| 2181 | def http_error_307(self, url, fp, errcode, errmsg, headers, data=None): |
| 2182 | """Error 307 -- relocated, but turn POST into error.""" |
| 2183 | if data is None: |
| 2184 | return self.http_error_302(url, fp, errcode, errmsg, headers, data) |
| 2185 | else: |
| 2186 | return self.http_error_default(url, fp, errcode, errmsg, headers) |
| 2187 | |
Senthil Kumaran | 80f1b05 | 2010-06-18 15:08:18 +0000 | [diff] [blame] | 2188 | def http_error_401(self, url, fp, errcode, errmsg, headers, data=None, |
| 2189 | retry=False): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2190 | """Error 401 -- authentication required. |
| 2191 | This function supports Basic authentication only.""" |
Senthil Kumaran | 34d38dc | 2011-10-20 02:48:01 +0800 | [diff] [blame] | 2192 | if 'www-authenticate' not in headers: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2193 | URLopener.http_error_default(self, url, fp, |
| 2194 | errcode, errmsg, headers) |
| 2195 | stuff = headers['www-authenticate'] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2196 | match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) |
| 2197 | if not match: |
| 2198 | URLopener.http_error_default(self, url, fp, |
| 2199 | errcode, errmsg, headers) |
| 2200 | scheme, realm = match.groups() |
| 2201 | if scheme.lower() != 'basic': |
| 2202 | URLopener.http_error_default(self, url, fp, |
| 2203 | errcode, errmsg, headers) |
Senthil Kumaran | 80f1b05 | 2010-06-18 15:08:18 +0000 | [diff] [blame] | 2204 | if not retry: |
| 2205 | URLopener.http_error_default(self, url, fp, errcode, errmsg, |
| 2206 | headers) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2207 | name = 'retry_' + self.type + '_basic_auth' |
| 2208 | if data is None: |
| 2209 | return getattr(self,name)(url, realm) |
| 2210 | else: |
| 2211 | return getattr(self,name)(url, realm, data) |
| 2212 | |
Senthil Kumaran | 80f1b05 | 2010-06-18 15:08:18 +0000 | [diff] [blame] | 2213 | def http_error_407(self, url, fp, errcode, errmsg, headers, data=None, |
| 2214 | retry=False): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2215 | """Error 407 -- proxy authentication required. |
| 2216 | This function supports Basic authentication only.""" |
Senthil Kumaran | 34d38dc | 2011-10-20 02:48:01 +0800 | [diff] [blame] | 2217 | if 'proxy-authenticate' not in headers: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2218 | URLopener.http_error_default(self, url, fp, |
| 2219 | errcode, errmsg, headers) |
| 2220 | stuff = headers['proxy-authenticate'] |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2221 | match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff) |
| 2222 | if not match: |
| 2223 | URLopener.http_error_default(self, url, fp, |
| 2224 | errcode, errmsg, headers) |
| 2225 | scheme, realm = match.groups() |
| 2226 | if scheme.lower() != 'basic': |
| 2227 | URLopener.http_error_default(self, url, fp, |
| 2228 | errcode, errmsg, headers) |
Senthil Kumaran | 80f1b05 | 2010-06-18 15:08:18 +0000 | [diff] [blame] | 2229 | if not retry: |
| 2230 | URLopener.http_error_default(self, url, fp, errcode, errmsg, |
| 2231 | headers) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2232 | name = 'retry_proxy_' + self.type + '_basic_auth' |
| 2233 | if data is None: |
| 2234 | return getattr(self,name)(url, realm) |
| 2235 | else: |
| 2236 | return getattr(self,name)(url, realm, data) |
| 2237 | |
| 2238 | def retry_proxy_http_basic_auth(self, url, realm, data=None): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2239 | host, selector = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2240 | newurl = 'http://' + host + selector |
| 2241 | proxy = self.proxies['http'] |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2242 | urltype, proxyhost = splittype(proxy) |
| 2243 | proxyhost, proxyselector = splithost(proxyhost) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2244 | i = proxyhost.find('@') + 1 |
| 2245 | proxyhost = proxyhost[i:] |
| 2246 | user, passwd = self.get_user_passwd(proxyhost, realm, i) |
| 2247 | if not (user or passwd): return None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2248 | proxyhost = "%s:%s@%s" % (quote(user, safe=''), |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2249 | quote(passwd, safe=''), proxyhost) |
| 2250 | self.proxies['http'] = 'http://' + proxyhost + proxyselector |
| 2251 | if data is None: |
| 2252 | return self.open(newurl) |
| 2253 | else: |
| 2254 | return self.open(newurl, data) |
| 2255 | |
| 2256 | def retry_proxy_https_basic_auth(self, url, realm, data=None): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2257 | host, selector = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2258 | newurl = 'https://' + host + selector |
| 2259 | proxy = self.proxies['https'] |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2260 | urltype, proxyhost = splittype(proxy) |
| 2261 | proxyhost, proxyselector = splithost(proxyhost) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2262 | i = proxyhost.find('@') + 1 |
| 2263 | proxyhost = proxyhost[i:] |
| 2264 | user, passwd = self.get_user_passwd(proxyhost, realm, i) |
| 2265 | if not (user or passwd): return None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2266 | proxyhost = "%s:%s@%s" % (quote(user, safe=''), |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2267 | quote(passwd, safe=''), proxyhost) |
| 2268 | self.proxies['https'] = 'https://' + proxyhost + proxyselector |
| 2269 | if data is None: |
| 2270 | return self.open(newurl) |
| 2271 | else: |
| 2272 | return self.open(newurl, data) |
| 2273 | |
| 2274 | def retry_http_basic_auth(self, url, realm, data=None): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2275 | host, selector = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2276 | i = host.find('@') + 1 |
| 2277 | host = host[i:] |
| 2278 | user, passwd = self.get_user_passwd(host, realm, i) |
| 2279 | if not (user or passwd): return None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2280 | host = "%s:%s@%s" % (quote(user, safe=''), |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2281 | quote(passwd, safe=''), host) |
| 2282 | newurl = 'http://' + host + selector |
| 2283 | if data is None: |
| 2284 | return self.open(newurl) |
| 2285 | else: |
| 2286 | return self.open(newurl, data) |
| 2287 | |
| 2288 | def retry_https_basic_auth(self, url, realm, data=None): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2289 | host, selector = splithost(url) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2290 | i = host.find('@') + 1 |
| 2291 | host = host[i:] |
| 2292 | user, passwd = self.get_user_passwd(host, realm, i) |
| 2293 | if not (user or passwd): return None |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2294 | host = "%s:%s@%s" % (quote(user, safe=''), |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2295 | quote(passwd, safe=''), host) |
| 2296 | newurl = 'https://' + host + selector |
| 2297 | if data is None: |
| 2298 | return self.open(newurl) |
| 2299 | else: |
| 2300 | return self.open(newurl, data) |
| 2301 | |
Florent Xicluna | 757445b | 2010-05-17 17:24:07 +0000 | [diff] [blame] | 2302 | def get_user_passwd(self, host, realm, clear_cache=0): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2303 | key = realm + '@' + host.lower() |
| 2304 | if key in self.auth_cache: |
| 2305 | if clear_cache: |
| 2306 | del self.auth_cache[key] |
| 2307 | else: |
| 2308 | return self.auth_cache[key] |
| 2309 | user, passwd = self.prompt_user_passwd(host, realm) |
| 2310 | if user or passwd: self.auth_cache[key] = (user, passwd) |
| 2311 | return user, passwd |
| 2312 | |
| 2313 | def prompt_user_passwd(self, host, realm): |
| 2314 | """Override this in a GUI environment!""" |
| 2315 | import getpass |
| 2316 | try: |
| 2317 | user = input("Enter username for %s at %s: " % (realm, host)) |
| 2318 | passwd = getpass.getpass("Enter password for %s in %s at %s: " % |
| 2319 | (user, realm, host)) |
| 2320 | return user, passwd |
| 2321 | except KeyboardInterrupt: |
| 2322 | print() |
| 2323 | return None, None |
| 2324 | |
| 2325 | |
| 2326 | # Utility functions |
| 2327 | |
| 2328 | _localhost = None |
| 2329 | def localhost(): |
| 2330 | """Return the IP address of the magic hostname 'localhost'.""" |
| 2331 | global _localhost |
| 2332 | if _localhost is None: |
| 2333 | _localhost = socket.gethostbyname('localhost') |
| 2334 | return _localhost |
| 2335 | |
| 2336 | _thishost = None |
| 2337 | def thishost(): |
Senthil Kumaran | 99b2c8f | 2009-12-27 10:13:39 +0000 | [diff] [blame] | 2338 | """Return the IP addresses of the current host.""" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2339 | global _thishost |
| 2340 | if _thishost is None: |
Senthil Kumaran | dcdadfe | 2013-06-01 11:12:17 -0700 | [diff] [blame] | 2341 | try: |
| 2342 | _thishost = tuple(socket.gethostbyname_ex(socket.gethostname())[2]) |
| 2343 | except socket.gaierror: |
| 2344 | _thishost = tuple(socket.gethostbyname_ex('localhost')[2]) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2345 | return _thishost |
| 2346 | |
| 2347 | _ftperrors = None |
| 2348 | def ftperrors(): |
| 2349 | """Return the set of errors raised by the FTP class.""" |
| 2350 | global _ftperrors |
| 2351 | if _ftperrors is None: |
| 2352 | import ftplib |
| 2353 | _ftperrors = ftplib.all_errors |
| 2354 | return _ftperrors |
| 2355 | |
| 2356 | _noheaders = None |
| 2357 | def noheaders(): |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2358 | """Return an empty email Message object.""" |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2359 | global _noheaders |
| 2360 | if _noheaders is None: |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2361 | _noheaders = email.message_from_string("") |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2362 | return _noheaders |
| 2363 | |
| 2364 | |
| 2365 | # Utility classes |
| 2366 | |
| 2367 | class ftpwrapper: |
| 2368 | """Class used by open_ftp() for cache of open FTP connections.""" |
| 2369 | |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 2370 | def __init__(self, user, passwd, host, port, dirs, timeout=None, |
| 2371 | persistent=True): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2372 | self.user = user |
| 2373 | self.passwd = passwd |
| 2374 | self.host = host |
| 2375 | self.port = port |
| 2376 | self.dirs = dirs |
| 2377 | self.timeout = timeout |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 2378 | self.refcount = 0 |
| 2379 | self.keepalive = persistent |
Victor Stinner | ab73e65 | 2015-04-07 12:49:27 +0200 | [diff] [blame] | 2380 | try: |
| 2381 | self.init() |
| 2382 | except: |
| 2383 | self.close() |
| 2384 | raise |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2385 | |
| 2386 | def init(self): |
| 2387 | import ftplib |
| 2388 | self.busy = 0 |
| 2389 | self.ftp = ftplib.FTP() |
| 2390 | self.ftp.connect(self.host, self.port, self.timeout) |
| 2391 | self.ftp.login(self.user, self.passwd) |
Senthil Kumaran | caa00fe | 2013-06-02 11:59:47 -0700 | [diff] [blame] | 2392 | _target = '/'.join(self.dirs) |
| 2393 | self.ftp.cwd(_target) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2394 | |
| 2395 | def retrfile(self, file, type): |
| 2396 | import ftplib |
| 2397 | self.endtransfer() |
| 2398 | if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1 |
| 2399 | else: cmd = 'TYPE ' + type; isdir = 0 |
| 2400 | try: |
| 2401 | self.ftp.voidcmd(cmd) |
| 2402 | except ftplib.all_errors: |
| 2403 | self.init() |
| 2404 | self.ftp.voidcmd(cmd) |
| 2405 | conn = None |
| 2406 | if file and not isdir: |
| 2407 | # Try to retrieve as a file |
| 2408 | try: |
| 2409 | cmd = 'RETR ' + file |
Senthil Kumaran | 2024acd | 2011-03-24 11:46:19 +0800 | [diff] [blame] | 2410 | conn, retrlen = self.ftp.ntransfercmd(cmd) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2411 | except ftplib.error_perm as reason: |
| 2412 | if str(reason)[:3] != '550': |
Benjamin Peterson | 901a278 | 2013-05-12 19:01:52 -0500 | [diff] [blame] | 2413 | raise URLError('ftp error: %r' % reason).with_traceback( |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2414 | sys.exc_info()[2]) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2415 | if not conn: |
| 2416 | # Set transfer mode to ASCII! |
| 2417 | self.ftp.voidcmd('TYPE A') |
| 2418 | # Try a directory listing. Verify that directory exists. |
| 2419 | if file: |
| 2420 | pwd = self.ftp.pwd() |
| 2421 | try: |
| 2422 | try: |
| 2423 | self.ftp.cwd(file) |
| 2424 | except ftplib.error_perm as reason: |
Benjamin Peterson | 901a278 | 2013-05-12 19:01:52 -0500 | [diff] [blame] | 2425 | raise URLError('ftp error: %r' % reason) from reason |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2426 | finally: |
| 2427 | self.ftp.cwd(pwd) |
| 2428 | cmd = 'LIST ' + file |
| 2429 | else: |
| 2430 | cmd = 'LIST' |
Senthil Kumaran | 2024acd | 2011-03-24 11:46:19 +0800 | [diff] [blame] | 2431 | conn, retrlen = self.ftp.ntransfercmd(cmd) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2432 | self.busy = 1 |
Senthil Kumaran | 2024acd | 2011-03-24 11:46:19 +0800 | [diff] [blame] | 2433 | |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 2434 | ftpobj = addclosehook(conn.makefile('rb'), self.file_close) |
| 2435 | self.refcount += 1 |
Senthil Kumaran | 2024acd | 2011-03-24 11:46:19 +0800 | [diff] [blame] | 2436 | conn.close() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2437 | # Pass back both a suitably decorated object and a retrieval length |
Senthil Kumaran | 2024acd | 2011-03-24 11:46:19 +0800 | [diff] [blame] | 2438 | return (ftpobj, retrlen) |
| 2439 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2440 | def endtransfer(self): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2441 | self.busy = 0 |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2442 | |
| 2443 | def close(self): |
Nadeem Vawda | 08f5f7a | 2011-07-23 14:03:00 +0200 | [diff] [blame] | 2444 | self.keepalive = False |
| 2445 | if self.refcount <= 0: |
| 2446 | self.real_close() |
| 2447 | |
| 2448 | def file_close(self): |
| 2449 | self.endtransfer() |
| 2450 | self.refcount -= 1 |
| 2451 | if self.refcount <= 0 and not self.keepalive: |
| 2452 | self.real_close() |
| 2453 | |
| 2454 | def real_close(self): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2455 | self.endtransfer() |
| 2456 | try: |
| 2457 | self.ftp.close() |
| 2458 | except ftperrors(): |
| 2459 | pass |
| 2460 | |
| 2461 | # Proxy handling |
| 2462 | def getproxies_environment(): |
| 2463 | """Return a dictionary of scheme -> proxy server URL mappings. |
| 2464 | |
| 2465 | Scan the environment for variables named <scheme>_proxy; |
| 2466 | this seems to be the standard convention. If you need a |
| 2467 | different way, you can pass a proxies dictionary to the |
| 2468 | [Fancy]URLopener constructor. |
| 2469 | |
| 2470 | """ |
| 2471 | proxies = {} |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2472 | # in order to prefer lowercase variables, process environment in |
| 2473 | # two passes: first matches any, second pass matches lowercase only |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2474 | for name, value in os.environ.items(): |
| 2475 | name = name.lower() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2476 | if value and name[-6:] == '_proxy': |
| 2477 | proxies[name[:-6]] = value |
Senthil Kumaran | 4cbb23f | 2016-07-30 23:24:16 -0700 | [diff] [blame] | 2478 | # CVE-2016-1000110 - If we are running as CGI script, forget HTTP_PROXY |
| 2479 | # (non-all-lowercase) as it may be set from the web server by a "Proxy:" |
| 2480 | # header from the client |
Senthil Kumaran | 17742f2 | 2016-07-30 23:39:06 -0700 | [diff] [blame] | 2481 | # If "proxy" is lowercase, it will still be used thanks to the next block |
Senthil Kumaran | 4cbb23f | 2016-07-30 23:24:16 -0700 | [diff] [blame] | 2482 | if 'REQUEST_METHOD' in os.environ: |
| 2483 | proxies.pop('http', None) |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2484 | for name, value in os.environ.items(): |
| 2485 | if name[-6:] == '_proxy': |
| 2486 | name = name.lower() |
| 2487 | if value: |
| 2488 | proxies[name[:-6]] = value |
| 2489 | else: |
| 2490 | proxies.pop(name[:-6], None) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2491 | return proxies |
| 2492 | |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2493 | def proxy_bypass_environment(host, proxies=None): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2494 | """Test if proxies should not be used for a particular host. |
| 2495 | |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2496 | Checks the proxy dict for the value of no_proxy, which should |
| 2497 | be a list of comma separated DNS suffixes, or '*' for all hosts. |
| 2498 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2499 | """ |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2500 | if proxies is None: |
| 2501 | proxies = getproxies_environment() |
| 2502 | # don't bypass, if no_proxy isn't specified |
| 2503 | try: |
| 2504 | no_proxy = proxies['no'] |
| 2505 | except KeyError: |
| 2506 | return 0 |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2507 | # '*' is special case for always bypass |
| 2508 | if no_proxy == '*': |
| 2509 | return 1 |
| 2510 | # strip port off host |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2511 | hostonly, port = splitport(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2512 | # check if the host ends with any of the DNS suffixes |
Senthil Kumaran | 89976f1 | 2011-08-06 12:27:40 +0800 | [diff] [blame] | 2513 | no_proxy_list = [proxy.strip() for proxy in no_proxy.split(',')] |
| 2514 | for name in no_proxy_list: |
Martin Panter | aa27982 | 2016-04-30 01:03:40 +0000 | [diff] [blame] | 2515 | if name: |
Xiang Zhang | 959ff7f | 2017-01-09 11:47:55 +0800 | [diff] [blame] | 2516 | name = name.lstrip('.') # ignore leading dots |
Martin Panter | aa27982 | 2016-04-30 01:03:40 +0000 | [diff] [blame] | 2517 | name = re.escape(name) |
| 2518 | pattern = r'(.+\.)?%s$' % name |
| 2519 | if (re.match(pattern, hostonly, re.I) |
| 2520 | or re.match(pattern, host, re.I)): |
| 2521 | return 1 |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2522 | # otherwise, don't bypass |
| 2523 | return 0 |
| 2524 | |
| 2525 | |
Ronald Oussoren | e72e161 | 2011-03-14 18:15:25 -0400 | [diff] [blame] | 2526 | # This code tests an OSX specific data structure but is testable on all |
| 2527 | # platforms |
| 2528 | def _proxy_bypass_macosx_sysconf(host, proxy_settings): |
| 2529 | """ |
| 2530 | Return True iff this host shouldn't be accessed using a proxy |
| 2531 | |
| 2532 | This function uses the MacOSX framework SystemConfiguration |
| 2533 | to fetch the proxy information. |
| 2534 | |
| 2535 | proxy_settings come from _scproxy._get_proxy_settings or get mocked ie: |
| 2536 | { 'exclude_simple': bool, |
| 2537 | 'exceptions': ['foo.bar', '*.bar.com', '127.0.0.1', '10.1', '10.0/16'] |
| 2538 | } |
| 2539 | """ |
Ronald Oussoren | e72e161 | 2011-03-14 18:15:25 -0400 | [diff] [blame] | 2540 | from fnmatch import fnmatch |
| 2541 | |
| 2542 | hostonly, port = splitport(host) |
| 2543 | |
| 2544 | def ip2num(ipAddr): |
| 2545 | parts = ipAddr.split('.') |
| 2546 | parts = list(map(int, parts)) |
| 2547 | if len(parts) != 4: |
| 2548 | parts = (parts + [0, 0, 0, 0])[:4] |
| 2549 | return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3] |
| 2550 | |
| 2551 | # Check for simple host names: |
| 2552 | if '.' not in host: |
| 2553 | if proxy_settings['exclude_simple']: |
| 2554 | return True |
| 2555 | |
| 2556 | hostIP = None |
| 2557 | |
| 2558 | for value in proxy_settings.get('exceptions', ()): |
| 2559 | # Items in the list are strings like these: *.local, 169.254/16 |
| 2560 | if not value: continue |
| 2561 | |
| 2562 | m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value) |
| 2563 | if m is not None: |
| 2564 | if hostIP is None: |
| 2565 | try: |
| 2566 | hostIP = socket.gethostbyname(hostonly) |
| 2567 | hostIP = ip2num(hostIP) |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 2568 | except OSError: |
Ronald Oussoren | e72e161 | 2011-03-14 18:15:25 -0400 | [diff] [blame] | 2569 | continue |
| 2570 | |
| 2571 | base = ip2num(m.group(1)) |
| 2572 | mask = m.group(2) |
| 2573 | if mask is None: |
| 2574 | mask = 8 * (m.group(1).count('.') + 1) |
| 2575 | else: |
| 2576 | mask = int(mask[1:]) |
| 2577 | mask = 32 - mask |
| 2578 | |
| 2579 | if (hostIP >> mask) == (base >> mask): |
| 2580 | return True |
| 2581 | |
| 2582 | elif fnmatch(host, value): |
| 2583 | return True |
| 2584 | |
| 2585 | return False |
| 2586 | |
| 2587 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2588 | if sys.platform == 'darwin': |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2589 | from _scproxy import _get_proxy_settings, _get_proxies |
| 2590 | |
| 2591 | def proxy_bypass_macosx_sysconf(host): |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2592 | proxy_settings = _get_proxy_settings() |
Ronald Oussoren | e72e161 | 2011-03-14 18:15:25 -0400 | [diff] [blame] | 2593 | return _proxy_bypass_macosx_sysconf(host, proxy_settings) |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2594 | |
| 2595 | def getproxies_macosx_sysconf(): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2596 | """Return a dictionary of scheme -> proxy server URL mappings. |
| 2597 | |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2598 | This function uses the MacOSX framework SystemConfiguration |
| 2599 | to fetch the proxy information. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2600 | """ |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2601 | return _get_proxies() |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2602 | |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2603 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2604 | |
| 2605 | def proxy_bypass(host): |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2606 | """Return True, if host should be bypassed. |
| 2607 | |
| 2608 | Checks proxy settings gathered from the environment, if specified, |
| 2609 | or from the MacOSX framework SystemConfiguration. |
| 2610 | |
| 2611 | """ |
| 2612 | proxies = getproxies_environment() |
| 2613 | if proxies: |
| 2614 | return proxy_bypass_environment(host, proxies) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2615 | else: |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2616 | return proxy_bypass_macosx_sysconf(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2617 | |
| 2618 | def getproxies(): |
Ronald Oussoren | 8415120 | 2010-04-18 20:46:11 +0000 | [diff] [blame] | 2619 | return getproxies_environment() or getproxies_macosx_sysconf() |
| 2620 | |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2621 | |
| 2622 | elif os.name == 'nt': |
| 2623 | def getproxies_registry(): |
| 2624 | """Return a dictionary of scheme -> proxy server URL mappings. |
| 2625 | |
| 2626 | Win32 uses the registry to store proxies. |
| 2627 | |
| 2628 | """ |
| 2629 | proxies = {} |
| 2630 | try: |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2631 | import winreg |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 2632 | except ImportError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2633 | # Std module, so should be around - but you never know! |
| 2634 | return proxies |
| 2635 | try: |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2636 | internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2637 | r'Software\Microsoft\Windows\CurrentVersion\Internet Settings') |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2638 | proxyEnable = winreg.QueryValueEx(internetSettings, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2639 | 'ProxyEnable')[0] |
| 2640 | if proxyEnable: |
| 2641 | # Returned as Unicode but problems if not converted to ASCII |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2642 | proxyServer = str(winreg.QueryValueEx(internetSettings, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2643 | 'ProxyServer')[0]) |
| 2644 | if '=' in proxyServer: |
| 2645 | # Per-protocol settings |
| 2646 | for p in proxyServer.split(';'): |
| 2647 | protocol, address = p.split('=', 1) |
| 2648 | # See if address has a type:// prefix |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2649 | if not re.match('^([^/:]+)://', address): |
| 2650 | address = '%s://%s' % (protocol, address) |
| 2651 | proxies[protocol] = address |
| 2652 | else: |
| 2653 | # Use one setting for all protocols |
| 2654 | if proxyServer[:5] == 'http:': |
| 2655 | proxies['http'] = proxyServer |
| 2656 | else: |
| 2657 | proxies['http'] = 'http://%s' % proxyServer |
Senthil Kumaran | 04f31b8 | 2010-07-14 20:10:52 +0000 | [diff] [blame] | 2658 | proxies['https'] = 'https://%s' % proxyServer |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2659 | proxies['ftp'] = 'ftp://%s' % proxyServer |
| 2660 | internetSettings.Close() |
Andrew Svetlov | 2606a6f | 2012-12-19 14:33:35 +0200 | [diff] [blame] | 2661 | except (OSError, ValueError, TypeError): |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2662 | # Either registry key not found etc, or the value in an |
| 2663 | # unexpected format. |
| 2664 | # proxies already set up to be empty so nothing to do |
| 2665 | pass |
| 2666 | return proxies |
| 2667 | |
| 2668 | def getproxies(): |
| 2669 | """Return a dictionary of scheme -> proxy server URL mappings. |
| 2670 | |
| 2671 | Returns settings gathered from the environment, if specified, |
| 2672 | or the registry. |
| 2673 | |
| 2674 | """ |
| 2675 | return getproxies_environment() or getproxies_registry() |
| 2676 | |
| 2677 | def proxy_bypass_registry(host): |
| 2678 | try: |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2679 | import winreg |
Brett Cannon | cd171c8 | 2013-07-04 17:43:24 -0400 | [diff] [blame] | 2680 | except ImportError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2681 | # Std modules, so should be around - but you never know! |
| 2682 | return 0 |
| 2683 | try: |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2684 | internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2685 | r'Software\Microsoft\Windows\CurrentVersion\Internet Settings') |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2686 | proxyEnable = winreg.QueryValueEx(internetSettings, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2687 | 'ProxyEnable')[0] |
Georg Brandl | 4ed72ac | 2009-04-01 04:28:33 +0000 | [diff] [blame] | 2688 | proxyOverride = str(winreg.QueryValueEx(internetSettings, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2689 | 'ProxyOverride')[0]) |
| 2690 | # ^^^^ Returned as Unicode but problems if not converted to ASCII |
Andrew Svetlov | 2606a6f | 2012-12-19 14:33:35 +0200 | [diff] [blame] | 2691 | except OSError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2692 | return 0 |
| 2693 | if not proxyEnable or not proxyOverride: |
| 2694 | return 0 |
| 2695 | # try to make a host list from name and IP address. |
Georg Brandl | 13e8946 | 2008-07-01 19:56:00 +0000 | [diff] [blame] | 2696 | rawHost, port = splitport(host) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2697 | host = [rawHost] |
| 2698 | try: |
| 2699 | addr = socket.gethostbyname(rawHost) |
| 2700 | if addr != rawHost: |
| 2701 | host.append(addr) |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 2702 | except OSError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2703 | pass |
| 2704 | try: |
| 2705 | fqdn = socket.getfqdn(rawHost) |
| 2706 | if fqdn != rawHost: |
| 2707 | host.append(fqdn) |
Andrew Svetlov | 0832af6 | 2012-12-18 23:10:48 +0200 | [diff] [blame] | 2708 | except OSError: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2709 | pass |
| 2710 | # make a check value list from the registry entry: replace the |
| 2711 | # '<local>' string by the localhost entry and the corresponding |
| 2712 | # canonical entry. |
| 2713 | proxyOverride = proxyOverride.split(';') |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2714 | # now check if we match one of the registry values. |
| 2715 | for test in proxyOverride: |
Senthil Kumaran | 4947606 | 2009-05-01 06:00:23 +0000 | [diff] [blame] | 2716 | if test == '<local>': |
| 2717 | if '.' not in rawHost: |
| 2718 | return 1 |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2719 | test = test.replace(".", r"\.") # mask dots |
| 2720 | test = test.replace("*", r".*") # change glob sequence |
| 2721 | test = test.replace("?", r".") # change glob char |
| 2722 | for val in host: |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2723 | if re.match(test, val, re.I): |
| 2724 | return 1 |
| 2725 | return 0 |
| 2726 | |
| 2727 | def proxy_bypass(host): |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2728 | """Return True, if host should be bypassed. |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2729 | |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2730 | Checks proxy settings gathered from the environment, if specified, |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2731 | or the registry. |
| 2732 | |
| 2733 | """ |
Senthil Kumaran | a7c0ff2 | 2016-04-25 08:16:23 -0700 | [diff] [blame] | 2734 | proxies = getproxies_environment() |
| 2735 | if proxies: |
| 2736 | return proxy_bypass_environment(host, proxies) |
Jeremy Hylton | 1afc169 | 2008-06-18 20:49:58 +0000 | [diff] [blame] | 2737 | else: |
| 2738 | return proxy_bypass_registry(host) |
| 2739 | |
| 2740 | else: |
| 2741 | # By default use environment variables |
| 2742 | getproxies = getproxies_environment |
| 2743 | proxy_bypass = proxy_bypass_environment |