blob: 464f84709bfef91c5f1898ba375208f1c2e6cc22 [file] [log] [blame]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001"""An extensible library for opening URLs using a variety of protocols
2
3The simplest way to use this module is to call the urlopen function,
4which accepts a string containing a URL or a Request object (described
5below). It opens the URL and returns the results as file-like
6object; the returned object has some extra methods described below.
7
8The OpenerDirector manages a collection of Handler objects that do
9all the actual work. Each Handler implements a particular protocol or
10option. The OpenerDirector is a composite object that invokes the
11Handlers needed to open the requested URL. For example, the
12HTTPHandler performs HTTP GET and POST requests and deals with
13non-error returns. The HTTPRedirectHandler automatically deals with
14HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
15deals with digest authentication.
16
17urlopen(url, data=None) -- Basic usage is the same as original
18urllib. pass the url and optionally data to post to an HTTP URL, and
19get a file-like object back. One difference is that you can also pass
20a Request instance instead of URL. Raises a URLError (subclass of
21IOError); for HTTP errors, raises an HTTPError, which can also be
22treated as a valid response.
23
24build_opener -- Function that creates a new OpenerDirector instance.
25Will install the default handlers. Accepts one or more Handlers as
26arguments, either instances or Handler classes that it will
27instantiate. If one of the argument is a subclass of the default
28handler, the argument will be installed instead of the default.
29
30install_opener -- Installs a new opener as the default opener.
31
32objects of interest:
Senthil Kumaran04454cd2009-11-15 07:27:02 +000033
Senthil Kumaran4b9fbeb2009-12-20 07:18:22 +000034OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
35the Handler classes, while dealing with requests and responses.
Jeremy Hylton1afc1692008-06-18 20:49:58 +000036
37Request -- An object that encapsulates the state of a request. The
38state can be as simple as the URL. It can also include extra HTTP
39headers, e.g. a User-Agent.
40
41BaseHandler --
42
43internals:
44BaseHandler and parent
45_call_chain conventions
46
47Example usage:
48
Georg Brandl029986a2008-06-23 11:44:14 +000049import urllib.request
Jeremy Hylton1afc1692008-06-18 20:49:58 +000050
51# set up authentication info
Georg Brandl029986a2008-06-23 11:44:14 +000052authinfo = urllib.request.HTTPBasicAuthHandler()
Jeremy Hylton1afc1692008-06-18 20:49:58 +000053authinfo.add_password(realm='PDQ Application',
54 uri='https://mahler:8092/site-updates.py',
55 user='klem',
56 passwd='geheim$parole')
57
Georg Brandl029986a2008-06-23 11:44:14 +000058proxy_support = urllib.request.ProxyHandler({"http" : "http://ahad-haam:3128"})
Jeremy Hylton1afc1692008-06-18 20:49:58 +000059
60# build a new opener that adds authentication and caching FTP handlers
Georg Brandl029986a2008-06-23 11:44:14 +000061opener = urllib.request.build_opener(proxy_support, authinfo,
62 urllib.request.CacheFTPHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000063
64# install it
Georg Brandl029986a2008-06-23 11:44:14 +000065urllib.request.install_opener(opener)
Jeremy Hylton1afc1692008-06-18 20:49:58 +000066
Georg Brandl029986a2008-06-23 11:44:14 +000067f = urllib.request.urlopen('http://www.python.org/')
Jeremy Hylton1afc1692008-06-18 20:49:58 +000068"""
69
70# XXX issues:
71# If an authentication error handler that tries to perform
72# authentication for some reason but fails, how should the error be
73# signalled? The client needs to know the HTTP error code. But if
74# the handler knows that the problem was, e.g., that it didn't know
75# that hash algo that requested in the challenge, it would be good to
76# pass that information along to the client, too.
77# ftp errors aren't handled cleanly
78# check digest against correct (i.e. non-apache) implementation
79
80# Possible extensions:
81# complex proxies XXX not sure what exactly was meant by this
82# abstract factory for opener
83
84import base64
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +000085import bisect
Jeremy Hylton1afc1692008-06-18 20:49:58 +000086import email
87import hashlib
88import http.client
89import io
90import os
91import posixpath
92import random
93import re
94import socket
95import sys
96import time
Jeremy Hylton1afc1692008-06-18 20:49:58 +000097
Georg Brandl13e89462008-07-01 19:56:00 +000098from urllib.error import URLError, HTTPError, ContentTooShortError
99from urllib.parse import (
100 urlparse, urlsplit, urljoin, unwrap, quote, unquote,
101 splittype, splithost, splitport, splituser, splitpasswd,
Senthil Kumaran4c88db72010-08-08 11:30:58 +0000102 splitattr, splitquery, splitvalue, splittag, to_bytes, urlunparse)
Georg Brandl13e89462008-07-01 19:56:00 +0000103from urllib.response import addinfourl, addclosehook
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000104
105# check for SSL
106try:
107 import ssl
108except:
109 _have_ssl = False
110else:
111 _have_ssl = True
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000112
113# used in User-Agent header sent
114__version__ = sys.version[:3]
115
116_opener = None
117def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
118 global _opener
119 if _opener is None:
120 _opener = build_opener()
121 return _opener.open(url, data, timeout)
122
123def install_opener(opener):
124 global _opener
125 _opener = opener
126
127# TODO(jhylton): Make this work with the same global opener.
128_urlopener = None
129def urlretrieve(url, filename=None, reporthook=None, data=None):
130 global _urlopener
131 if not _urlopener:
132 _urlopener = FancyURLopener()
133 return _urlopener.retrieve(url, filename, reporthook, data)
134
135def urlcleanup():
136 if _urlopener:
137 _urlopener.cleanup()
138 global _opener
139 if _opener:
140 _opener = None
141
142# copied from cookielib.py
Antoine Pitroufd036452008-08-19 17:56:33 +0000143_cut_port_re = re.compile(r":\d+$", re.ASCII)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000144def request_host(request):
145 """Return request-host, as defined by RFC 2965.
146
147 Variation from RFC: returned value is lowercased, for convenient
148 comparison.
149
150 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000151 url = request.full_url
Georg Brandl13e89462008-07-01 19:56:00 +0000152 host = urlparse(url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000153 if host == "":
154 host = request.get_header("Host", "")
155
156 # remove port, if present
157 host = _cut_port_re.sub("", host, 1)
158 return host.lower()
159
160class Request:
161
162 def __init__(self, url, data=None, headers={},
163 origin_req_host=None, unverifiable=False):
164 # unwrap('<URL:type://host/path>') --> 'type://host/path'
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000165 self.full_url = unwrap(url)
Senthil Kumaran4c88db72010-08-08 11:30:58 +0000166 self.full_url, fragment = splittag(self.full_url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000167 self.data = data
168 self.headers = {}
Senthil Kumaran0ac1f832009-07-26 12:39:47 +0000169 self._tunnel_host = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000170 for key, value in headers.items():
171 self.add_header(key, value)
172 self.unredirected_hdrs = {}
173 if origin_req_host is None:
174 origin_req_host = request_host(self)
175 self.origin_req_host = origin_req_host
176 self.unverifiable = unverifiable
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000177 self._parse()
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000178
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000179 def _parse(self):
180 self.type, rest = splittype(self.full_url)
181 if self.type is None:
182 raise ValueError("unknown url type: %s" % self.full_url)
183 self.host, self.selector = splithost(rest)
184 if self.host:
185 self.host = unquote(self.host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000186
187 def get_method(self):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000188 if self.data is not None:
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000189 return "POST"
190 else:
191 return "GET"
192
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000193 # Begin deprecated methods
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000194
195 def add_data(self, data):
196 self.data = data
197
198 def has_data(self):
199 return self.data is not None
200
201 def get_data(self):
202 return self.data
203
204 def get_full_url(self):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000205 return self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000206
207 def get_type(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000208 return self.type
209
210 def get_host(self):
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000211 return self.host
212
213 def get_selector(self):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000214 return self.selector
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000215
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000216 def is_unverifiable(self):
217 return self.unverifiable
Facundo Batista72dc1ea2008-08-16 14:44:32 +0000218
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000219 def get_origin_req_host(self):
220 return self.origin_req_host
221
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000222 # End deprecated methods
223
224 def set_proxy(self, host, type):
Senthil Kumaran0ac1f832009-07-26 12:39:47 +0000225 if self.type == 'https' and not self._tunnel_host:
226 self._tunnel_host = self.host
227 else:
228 self.type= type
229 self.selector = self.full_url
230 self.host = host
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000231
232 def has_proxy(self):
233 return self.selector == self.full_url
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000234
235 def add_header(self, key, val):
236 # useful for something like authentication
237 self.headers[key.capitalize()] = val
238
239 def add_unredirected_header(self, key, val):
240 # will not be added to a redirected request
241 self.unredirected_hdrs[key.capitalize()] = val
242
243 def has_header(self, header_name):
244 return (header_name in self.headers or
245 header_name in self.unredirected_hdrs)
246
247 def get_header(self, header_name, default=None):
248 return self.headers.get(
249 header_name,
250 self.unredirected_hdrs.get(header_name, default))
251
252 def header_items(self):
253 hdrs = self.unredirected_hdrs.copy()
254 hdrs.update(self.headers)
255 return list(hdrs.items())
256
257class OpenerDirector:
258 def __init__(self):
259 client_version = "Python-urllib/%s" % __version__
260 self.addheaders = [('User-agent', client_version)]
261 # manage the individual handlers
262 self.handlers = []
263 self.handle_open = {}
264 self.handle_error = {}
265 self.process_response = {}
266 self.process_request = {}
267
268 def add_handler(self, handler):
269 if not hasattr(handler, "add_parent"):
270 raise TypeError("expected BaseHandler instance, got %r" %
271 type(handler))
272
273 added = False
274 for meth in dir(handler):
275 if meth in ["redirect_request", "do_open", "proxy_open"]:
276 # oops, coincidental match
277 continue
278
279 i = meth.find("_")
280 protocol = meth[:i]
281 condition = meth[i+1:]
282
283 if condition.startswith("error"):
284 j = condition.find("_") + i + 1
285 kind = meth[j+1:]
286 try:
287 kind = int(kind)
288 except ValueError:
289 pass
290 lookup = self.handle_error.get(protocol, {})
291 self.handle_error[protocol] = lookup
292 elif condition == "open":
293 kind = protocol
294 lookup = self.handle_open
295 elif condition == "response":
296 kind = protocol
297 lookup = self.process_response
298 elif condition == "request":
299 kind = protocol
300 lookup = self.process_request
301 else:
302 continue
303
304 handlers = lookup.setdefault(kind, [])
305 if handlers:
306 bisect.insort(handlers, handler)
307 else:
308 handlers.append(handler)
309 added = True
310
311 if added:
312 # the handlers must work in an specific order, the order
313 # is specified in a Handler attribute
314 bisect.insort(self.handlers, handler)
315 handler.add_parent(self)
316
317 def close(self):
318 # Only exists for backwards compatibility.
319 pass
320
321 def _call_chain(self, chain, kind, meth_name, *args):
322 # Handlers raise an exception if no one else should try to handle
323 # the request, or return None if they can't but another handler
324 # could. Otherwise, they return the response.
325 handlers = chain.get(kind, ())
326 for handler in handlers:
327 func = getattr(handler, meth_name)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000328 result = func(*args)
329 if result is not None:
330 return result
331
332 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
333 # accept a URL or a Request object
334 if isinstance(fullurl, str):
335 req = Request(fullurl, data)
336 else:
337 req = fullurl
338 if data is not None:
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000339 req.data = data
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000340
341 req.timeout = timeout
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000342 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000343
344 # pre-process request
345 meth_name = protocol+"_request"
346 for processor in self.process_request.get(protocol, []):
347 meth = getattr(processor, meth_name)
348 req = meth(req)
349
350 response = self._open(req, data)
351
352 # post-process response
353 meth_name = protocol+"_response"
354 for processor in self.process_response.get(protocol, []):
355 meth = getattr(processor, meth_name)
356 response = meth(req, response)
357
358 return response
359
360 def _open(self, req, data=None):
361 result = self._call_chain(self.handle_open, 'default',
362 'default_open', req)
363 if result:
364 return result
365
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000366 protocol = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000367 result = self._call_chain(self.handle_open, protocol, protocol +
368 '_open', req)
369 if result:
370 return result
371
372 return self._call_chain(self.handle_open, 'unknown',
373 'unknown_open', req)
374
375 def error(self, proto, *args):
376 if proto in ('http', 'https'):
377 # XXX http[s] protocols are special-cased
378 dict = self.handle_error['http'] # https is not different than http
379 proto = args[2] # YUCK!
380 meth_name = 'http_error_%s' % proto
381 http_err = 1
382 orig_args = args
383 else:
384 dict = self.handle_error
385 meth_name = proto + '_error'
386 http_err = 0
387 args = (dict, proto, meth_name) + args
388 result = self._call_chain(*args)
389 if result:
390 return result
391
392 if http_err:
393 args = (dict, 'default', 'http_error_default') + orig_args
394 return self._call_chain(*args)
395
396# XXX probably also want an abstract factory that knows when it makes
397# sense to skip a superclass in favor of a subclass and when it might
398# make sense to include both
399
400def build_opener(*handlers):
401 """Create an opener object from a list of handlers.
402
403 The opener will use several default handlers, including support
Senthil Kumaran04454cd2009-11-15 07:27:02 +0000404 for HTTP, FTP and when applicable HTTPS.
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000405
406 If any of the handlers passed as arguments are subclasses of the
407 default handlers, the default handlers will not be used.
408 """
409 def isclass(obj):
410 return isinstance(obj, type) or hasattr(obj, "__bases__")
411
412 opener = OpenerDirector()
413 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
414 HTTPDefaultErrorHandler, HTTPRedirectHandler,
415 FTPHandler, FileHandler, HTTPErrorProcessor]
416 if hasattr(http.client, "HTTPSConnection"):
417 default_classes.append(HTTPSHandler)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000418 skip = set()
419 for klass in default_classes:
420 for check in handlers:
421 if isclass(check):
422 if issubclass(check, klass):
423 skip.add(klass)
424 elif isinstance(check, klass):
425 skip.add(klass)
426 for klass in skip:
427 default_classes.remove(klass)
428
429 for klass in default_classes:
430 opener.add_handler(klass())
431
432 for h in handlers:
433 if isclass(h):
434 h = h()
435 opener.add_handler(h)
436 return opener
437
438class BaseHandler:
439 handler_order = 500
440
441 def add_parent(self, parent):
442 self.parent = parent
443
444 def close(self):
445 # Only exists for backwards compatibility
446 pass
447
448 def __lt__(self, other):
449 if not hasattr(other, "handler_order"):
450 # Try to preserve the old behavior of having custom classes
451 # inserted after default ones (works only for custom user
452 # classes which are not aware of handler_order).
453 return True
454 return self.handler_order < other.handler_order
455
456
457class HTTPErrorProcessor(BaseHandler):
458 """Process HTTP error responses."""
459 handler_order = 1000 # after all other processing
460
461 def http_response(self, request, response):
462 code, msg, hdrs = response.code, response.msg, response.info()
463
464 # According to RFC 2616, "2xx" code indicates that the client's
465 # request was successfully received, understood, and accepted.
466 if not (200 <= code < 300):
467 response = self.parent.error(
468 'http', request, response, code, msg, hdrs)
469
470 return response
471
472 https_response = http_response
473
474class HTTPDefaultErrorHandler(BaseHandler):
475 def http_error_default(self, req, fp, code, msg, hdrs):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000476 raise HTTPError(req.full_url, code, msg, hdrs, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000477
478class HTTPRedirectHandler(BaseHandler):
479 # maximum number of redirections to any single URL
480 # this is needed because of the state that cookies introduce
481 max_repeats = 4
482 # maximum total number of redirections (regardless of URL) before
483 # assuming we're in a loop
484 max_redirections = 10
485
486 def redirect_request(self, req, fp, code, msg, headers, newurl):
487 """Return a Request or None in response to a redirect.
488
489 This is called by the http_error_30x methods when a
490 redirection response is received. If a redirection should
491 take place, return a new Request to allow http_error_30x to
492 perform the redirect. Otherwise, raise HTTPError if no-one
493 else should try to handle this url. Return None if you can't
494 but another Handler might.
495 """
496 m = req.get_method()
497 if (not (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
498 or code in (301, 302, 303) and m == "POST")):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000499 raise HTTPError(req.full_url, code, msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000500
501 # Strictly (according to RFC 2616), 301 or 302 in response to
502 # a POST MUST NOT cause a redirection without confirmation
Georg Brandl029986a2008-06-23 11:44:14 +0000503 # from the user (of urllib.request, in this case). In practice,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000504 # essentially all clients do redirect in this case, so we do
505 # the same.
506 # be conciliant with URIs containing a space
507 newurl = newurl.replace(' ', '%20')
508 CONTENT_HEADERS = ("content-length", "content-type")
509 newheaders = dict((k, v) for k, v in req.headers.items()
510 if k.lower() not in CONTENT_HEADERS)
511 return Request(newurl,
512 headers=newheaders,
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000513 origin_req_host=req.origin_req_host,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000514 unverifiable=True)
515
516 # Implementation note: To avoid the server sending us into an
517 # infinite loop, the request object needs to track what URLs we
518 # have already seen. Do this by adding a handler-specific
519 # attribute to the Request object.
520 def http_error_302(self, req, fp, code, msg, headers):
521 # Some servers (incorrectly) return multiple Location headers
522 # (so probably same goes for URI). Use first header.
523 if "location" in headers:
524 newurl = headers["location"]
525 elif "uri" in headers:
526 newurl = headers["uri"]
527 else:
528 return
Facundo Batistaf24802c2008-08-17 03:36:03 +0000529
530 # fix a possible malformed URL
531 urlparts = urlparse(newurl)
532 if not urlparts.path:
533 urlparts = list(urlparts)
534 urlparts[2] = "/"
535 newurl = urlunparse(urlparts)
536
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000537 newurl = urljoin(req.full_url, newurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000538
539 # XXX Probably want to forget about the state of the current
540 # request, although that might interact poorly with other
541 # handlers that also use handler-specific request attributes
542 new = self.redirect_request(req, fp, code, msg, headers, newurl)
543 if new is None:
544 return
545
546 # loop detection
547 # .redirect_dict has a key url if url was previously visited.
548 if hasattr(req, 'redirect_dict'):
549 visited = new.redirect_dict = req.redirect_dict
550 if (visited.get(newurl, 0) >= self.max_repeats or
551 len(visited) >= self.max_redirections):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000552 raise HTTPError(req.full_url, code,
Georg Brandl13e89462008-07-01 19:56:00 +0000553 self.inf_msg + msg, headers, fp)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000554 else:
555 visited = new.redirect_dict = req.redirect_dict = {}
556 visited[newurl] = visited.get(newurl, 0) + 1
557
558 # Don't close the fp until we are sure that we won't use it
559 # with HTTPError.
560 fp.read()
561 fp.close()
562
Senthil Kumarane9da06f2009-07-19 04:20:12 +0000563 return self.parent.open(new, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000564
565 http_error_301 = http_error_303 = http_error_307 = http_error_302
566
567 inf_msg = "The HTTP server returned a redirect error that would " \
568 "lead to an infinite loop.\n" \
569 "The last 30x error message was:\n"
570
571
572def _parse_proxy(proxy):
573 """Return (scheme, user, password, host/port) given a URL or an authority.
574
575 If a URL is supplied, it must have an authority (host:port) component.
576 According to RFC 3986, having an authority component means the URL must
577 have two slashes after the scheme:
578
579 >>> _parse_proxy('file:/ftp.example.com/')
580 Traceback (most recent call last):
581 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
582
583 The first three items of the returned tuple may be None.
584
585 Examples of authority parsing:
586
587 >>> _parse_proxy('proxy.example.com')
588 (None, None, None, 'proxy.example.com')
589 >>> _parse_proxy('proxy.example.com:3128')
590 (None, None, None, 'proxy.example.com:3128')
591
592 The authority component may optionally include userinfo (assumed to be
593 username:password):
594
595 >>> _parse_proxy('joe:password@proxy.example.com')
596 (None, 'joe', 'password', 'proxy.example.com')
597 >>> _parse_proxy('joe:password@proxy.example.com:3128')
598 (None, 'joe', 'password', 'proxy.example.com:3128')
599
600 Same examples, but with URLs instead:
601
602 >>> _parse_proxy('http://proxy.example.com/')
603 ('http', None, None, 'proxy.example.com')
604 >>> _parse_proxy('http://proxy.example.com:3128/')
605 ('http', None, None, 'proxy.example.com:3128')
606 >>> _parse_proxy('http://joe:password@proxy.example.com/')
607 ('http', 'joe', 'password', 'proxy.example.com')
608 >>> _parse_proxy('http://joe:password@proxy.example.com:3128')
609 ('http', 'joe', 'password', 'proxy.example.com:3128')
610
611 Everything after the authority is ignored:
612
613 >>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
614 ('ftp', 'joe', 'password', 'proxy.example.com')
615
616 Test for no trailing '/' case:
617
618 >>> _parse_proxy('http://joe:password@proxy.example.com')
619 ('http', 'joe', 'password', 'proxy.example.com')
620
621 """
Georg Brandl13e89462008-07-01 19:56:00 +0000622 scheme, r_scheme = splittype(proxy)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000623 if not r_scheme.startswith("/"):
624 # authority
625 scheme = None
626 authority = proxy
627 else:
628 # URL
629 if not r_scheme.startswith("//"):
630 raise ValueError("proxy URL with no authority: %r" % proxy)
631 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
632 # and 3.3.), path is empty or starts with '/'
633 end = r_scheme.find("/", 2)
634 if end == -1:
635 end = None
636 authority = r_scheme[2:end]
Georg Brandl13e89462008-07-01 19:56:00 +0000637 userinfo, hostport = splituser(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000638 if userinfo is not None:
Georg Brandl13e89462008-07-01 19:56:00 +0000639 user, password = splitpasswd(userinfo)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000640 else:
641 user = password = None
642 return scheme, user, password, hostport
643
644class ProxyHandler(BaseHandler):
645 # Proxies must be in front
646 handler_order = 100
647
648 def __init__(self, proxies=None):
649 if proxies is None:
650 proxies = getproxies()
651 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
652 self.proxies = proxies
653 for type, url in proxies.items():
654 setattr(self, '%s_open' % type,
655 lambda r, proxy=url, type=type, meth=self.proxy_open: \
656 meth(r, proxy, type))
657
658 def proxy_open(self, req, proxy, type):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000659 orig_type = req.type
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000660 proxy_type, user, password, hostport = _parse_proxy(proxy)
661 if proxy_type is None:
662 proxy_type = orig_type
Senthil Kumaran11301632009-10-11 06:07:46 +0000663
664 if req.host and proxy_bypass(req.host):
665 return None
666
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000667 if user and password:
Georg Brandl13e89462008-07-01 19:56:00 +0000668 user_pass = '%s:%s' % (unquote(user),
669 unquote(password))
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000670 creds = base64.b64encode(user_pass.encode()).decode("ascii")
671 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl13e89462008-07-01 19:56:00 +0000672 hostport = unquote(hostport)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000673 req.set_proxy(hostport, proxy_type)
Senthil Kumaran0ac1f832009-07-26 12:39:47 +0000674 if orig_type == proxy_type or orig_type == 'https':
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000675 # let other handlers take care of it
676 return None
677 else:
678 # need to start over, because the other handlers don't
679 # grok the proxy's URL type
680 # e.g. if we have a constructor arg proxies like so:
681 # {'http': 'ftp://proxy.example.com'}, we may end up turning
682 # a request for http://acme.example.com/a into one for
683 # ftp://proxy.example.com/a
Senthil Kumarane9da06f2009-07-19 04:20:12 +0000684 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000685
686class HTTPPasswordMgr:
687
688 def __init__(self):
689 self.passwd = {}
690
691 def add_password(self, realm, uri, user, passwd):
692 # uri could be a single URI or a sequence
693 if isinstance(uri, str):
694 uri = [uri]
695 if not realm in self.passwd:
696 self.passwd[realm] = {}
697 for default_port in True, False:
698 reduced_uri = tuple(
699 [self.reduce_uri(u, default_port) for u in uri])
700 self.passwd[realm][reduced_uri] = (user, passwd)
701
702 def find_user_password(self, realm, authuri):
703 domains = self.passwd.get(realm, {})
704 for default_port in True, False:
705 reduced_authuri = self.reduce_uri(authuri, default_port)
706 for uris, authinfo in domains.items():
707 for uri in uris:
708 if self.is_suburi(uri, reduced_authuri):
709 return authinfo
710 return None, None
711
712 def reduce_uri(self, uri, default_port=True):
713 """Accept authority or URI and extract only the authority and path."""
714 # note HTTP URLs do not have a userinfo component
Georg Brandl13e89462008-07-01 19:56:00 +0000715 parts = urlsplit(uri)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000716 if parts[1]:
717 # URI
718 scheme = parts[0]
719 authority = parts[1]
720 path = parts[2] or '/'
721 else:
722 # host or host:port
723 scheme = None
724 authority = uri
725 path = '/'
Georg Brandl13e89462008-07-01 19:56:00 +0000726 host, port = splitport(authority)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000727 if default_port and port is None and scheme is not None:
728 dport = {"http": 80,
729 "https": 443,
730 }.get(scheme)
731 if dport is not None:
732 authority = "%s:%d" % (host, dport)
733 return authority, path
734
735 def is_suburi(self, base, test):
736 """Check if test is below base in a URI tree
737
738 Both args must be URIs in reduced form.
739 """
740 if base == test:
741 return True
742 if base[0] != test[0]:
743 return False
744 common = posixpath.commonprefix((base[1], test[1]))
745 if len(common) == len(base[1]):
746 return True
747 return False
748
749
750class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
751
752 def find_user_password(self, realm, authuri):
753 user, password = HTTPPasswordMgr.find_user_password(self, realm,
754 authuri)
755 if user is not None:
756 return user, password
757 return HTTPPasswordMgr.find_user_password(self, None, authuri)
758
759
760class AbstractBasicAuthHandler:
761
762 # XXX this allows for multiple auth-schemes, but will stupidly pick
763 # the last one with a realm specified.
764
765 # allow for double- and single-quoted realm values
766 # (single quotes are a violation of the RFC, but appear in the wild)
767 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
768 'realm=(["\'])(.*?)\\2', re.I)
769
770 # XXX could pre-emptively send auth info already accepted (RFC 2617,
771 # end of section 2, and section 1.2 immediately after "credentials"
772 # production).
773
774 def __init__(self, password_mgr=None):
775 if password_mgr is None:
776 password_mgr = HTTPPasswordMgr()
777 self.passwd = password_mgr
778 self.add_password = self.passwd.add_password
Senthil Kumaranefafdc72010-06-01 12:56:17 +0000779 self.retried = 0
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000780
Senthil Kumarancb39d6c2010-08-19 17:54:33 +0000781 def reset_retry_count(self):
782 self.retried = 0
783
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000784 def http_error_auth_reqed(self, authreq, host, req, headers):
785 # host may be an authority (without userinfo) or a URL with an
786 # authority
787 # XXX could be multiple headers
788 authreq = headers.get(authreq, None)
Senthil Kumaranefafdc72010-06-01 12:56:17 +0000789
790 if self.retried > 5:
791 # retry sending the username:password 5 times before failing.
792 raise HTTPError(req.get_full_url(), 401, "basic auth failed",
793 headers, None)
794 else:
795 self.retried += 1
796
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000797 if authreq:
798 mo = AbstractBasicAuthHandler.rx.search(authreq)
799 if mo:
800 scheme, quote, realm = mo.groups()
801 if scheme.lower() == 'basic':
Senthil Kumaran06509382010-08-26 06:24:04 +0000802 response = self.retry_http_basic_auth(host, req, realm)
803 if response and response.code != 401:
804 self.retried = 0
805 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000806
807 def retry_http_basic_auth(self, host, req, realm):
808 user, pw = self.passwd.find_user_password(realm, host)
809 if pw is not None:
810 raw = "%s:%s" % (user, pw)
811 auth = "Basic " + base64.b64encode(raw.encode()).decode("ascii")
812 if req.headers.get(self.auth_header, None) == auth:
813 return None
Senthil Kumaranefcd8832010-02-24 16:56:20 +0000814 req.add_unredirected_header(self.auth_header, auth)
Senthil Kumarane9da06f2009-07-19 04:20:12 +0000815 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000816 else:
817 return None
818
819
820class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
821
822 auth_header = 'Authorization'
823
824 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000825 url = req.full_url
Senthil Kumarancb39d6c2010-08-19 17:54:33 +0000826 response = self.http_error_auth_reqed('www-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000827 url, req, headers)
Senthil Kumarancb39d6c2010-08-19 17:54:33 +0000828 self.reset_retry_count()
829 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000830
831
832class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
833
834 auth_header = 'Proxy-authorization'
835
836 def http_error_407(self, req, fp, code, msg, headers):
837 # http_error_auth_reqed requires that there is no userinfo component in
Georg Brandl029986a2008-06-23 11:44:14 +0000838 # authority. Assume there isn't one, since urllib.request does not (and
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000839 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
840 # userinfo.
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000841 authority = req.host
Senthil Kumarancb39d6c2010-08-19 17:54:33 +0000842 response = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000843 authority, req, headers)
Senthil Kumarancb39d6c2010-08-19 17:54:33 +0000844 self.reset_retry_count()
845 return response
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000846
847
848def randombytes(n):
849 """Return n random bytes."""
850 return os.urandom(n)
851
852class AbstractDigestAuthHandler:
853 # Digest authentication is specified in RFC 2617.
854
855 # XXX The client does not inspect the Authentication-Info header
856 # in a successful response.
857
858 # XXX It should be possible to test this implementation against
859 # a mock server that just generates a static set of challenges.
860
861 # XXX qop="auth-int" supports is shaky
862
863 def __init__(self, passwd=None):
864 if passwd is None:
865 passwd = HTTPPasswordMgr()
866 self.passwd = passwd
867 self.add_password = self.passwd.add_password
868 self.retried = 0
869 self.nonce_count = 0
Senthil Kumaranb58474f2009-11-15 08:45:27 +0000870 self.last_nonce = None
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000871
872 def reset_retry_count(self):
873 self.retried = 0
874
875 def http_error_auth_reqed(self, auth_header, host, req, headers):
876 authreq = headers.get(auth_header, None)
877 if self.retried > 5:
878 # Don't fail endlessly - if we failed once, we'll probably
879 # fail a second time. Hm. Unless the Password Manager is
880 # prompting for the information. Crap. This isn't great
881 # but it's better than the current 'repeat until recursion
882 # depth exceeded' approach <wink>
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000883 raise HTTPError(req.full_url, 401, "digest auth failed",
Georg Brandl13e89462008-07-01 19:56:00 +0000884 headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000885 else:
886 self.retried += 1
887 if authreq:
888 scheme = authreq.split()[0]
889 if scheme.lower() == 'digest':
890 return self.retry_http_digest_auth(req, authreq)
891
892 def retry_http_digest_auth(self, req, auth):
893 token, challenge = auth.split(' ', 1)
894 chal = parse_keqv_list(filter(None, parse_http_list(challenge)))
895 auth = self.get_authorization(req, chal)
896 if auth:
897 auth_val = 'Digest %s' % auth
898 if req.headers.get(self.auth_header, None) == auth_val:
899 return None
900 req.add_unredirected_header(self.auth_header, auth_val)
Senthil Kumarane9da06f2009-07-19 04:20:12 +0000901 resp = self.parent.open(req, timeout=req.timeout)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000902 return resp
903
904 def get_cnonce(self, nonce):
905 # The cnonce-value is an opaque
906 # quoted string value provided by the client and used by both client
907 # and server to avoid chosen plaintext attacks, to provide mutual
908 # authentication, and to provide some message integrity protection.
909 # This isn't a fabulous effort, but it's probably Good Enough.
910 s = "%s:%s:%s:" % (self.nonce_count, nonce, time.ctime())
911 b = s.encode("ascii") + randombytes(8)
912 dig = hashlib.sha1(b).hexdigest()
913 return dig[:16]
914
915 def get_authorization(self, req, chal):
916 try:
917 realm = chal['realm']
918 nonce = chal['nonce']
919 qop = chal.get('qop')
920 algorithm = chal.get('algorithm', 'MD5')
921 # mod_digest doesn't send an opaque, even though it isn't
922 # supposed to be optional
923 opaque = chal.get('opaque', None)
924 except KeyError:
925 return None
926
927 H, KD = self.get_algorithm_impls(algorithm)
928 if H is None:
929 return None
930
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000931 user, pw = self.passwd.find_user_password(realm, req.full_url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000932 if user is None:
933 return None
934
935 # XXX not implemented yet
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000936 if req.data is not None:
937 entdig = self.get_entity_digest(req.data, chal)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000938 else:
939 entdig = None
940
941 A1 = "%s:%s:%s" % (user, realm, pw)
942 A2 = "%s:%s" % (req.get_method(),
943 # XXX selector: what about proxies and full urls
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000944 req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000945 if qop == 'auth':
Senthil Kumaranb58474f2009-11-15 08:45:27 +0000946 if nonce == self.last_nonce:
947 self.nonce_count += 1
948 else:
949 self.nonce_count = 1
950 self.last_nonce = nonce
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000951 ncvalue = '%08x' % self.nonce_count
952 cnonce = self.get_cnonce(nonce)
953 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
954 respdig = KD(H(A1), noncebit)
955 elif qop is None:
956 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
957 else:
958 # XXX handle auth-int.
Georg Brandl13e89462008-07-01 19:56:00 +0000959 raise URLError("qop '%s' is not supported." % qop)
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000960
961 # XXX should the partial digests be encoded too?
962
963 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +0000964 'response="%s"' % (user, realm, nonce, req.selector,
Jeremy Hylton1afc1692008-06-18 20:49:58 +0000965 respdig)
966 if opaque:
967 base += ', opaque="%s"' % opaque
968 if entdig:
969 base += ', digest="%s"' % entdig
970 base += ', algorithm="%s"' % algorithm
971 if qop:
972 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
973 return base
974
975 def get_algorithm_impls(self, algorithm):
976 # lambdas assume digest modules are imported at the top level
977 if algorithm == 'MD5':
978 H = lambda x: hashlib.md5(x.encode("ascii")).hexdigest()
979 elif algorithm == 'SHA':
980 H = lambda x: hashlib.sha1(x.encode("ascii")).hexdigest()
981 # XXX MD5-sess
982 KD = lambda s, d: H("%s:%s" % (s, d))
983 return H, KD
984
985 def get_entity_digest(self, data, chal):
986 # XXX not implemented yet
987 return None
988
989
990class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
991 """An authentication protocol defined by RFC 2069
992
993 Digest authentication improves on basic authentication because it
994 does not transmit passwords in the clear.
995 """
996
997 auth_header = 'Authorization'
998 handler_order = 490 # before Basic auth
999
1000 def http_error_401(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001001 host = urlparse(req.full_url)[1]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001002 retry = self.http_error_auth_reqed('www-authenticate',
1003 host, req, headers)
1004 self.reset_retry_count()
1005 return retry
1006
1007
1008class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1009
1010 auth_header = 'Proxy-Authorization'
1011 handler_order = 490 # before Basic auth
1012
1013 def http_error_407(self, req, fp, code, msg, headers):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001014 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001015 retry = self.http_error_auth_reqed('proxy-authenticate',
1016 host, req, headers)
1017 self.reset_retry_count()
1018 return retry
1019
1020class AbstractHTTPHandler(BaseHandler):
1021
1022 def __init__(self, debuglevel=0):
1023 self._debuglevel = debuglevel
1024
1025 def set_http_debuglevel(self, level):
1026 self._debuglevel = level
1027
1028 def do_request_(self, request):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001029 host = request.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001030 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001031 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001032
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001033 if request.data is not None: # POST
1034 data = request.data
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001035 if not request.has_header('Content-type'):
1036 request.add_unredirected_header(
1037 'Content-type',
1038 'application/x-www-form-urlencoded')
1039 if not request.has_header('Content-length'):
1040 request.add_unredirected_header(
1041 'Content-length', '%d' % len(data))
1042
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001043 sel_host = host
1044 if request.has_proxy():
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001045 scheme, sel = splittype(request.selector)
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001046 sel_host, sel_path = splithost(sel)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001047 if not request.has_header('Host'):
Facundo Batista72dc1ea2008-08-16 14:44:32 +00001048 request.add_unredirected_header('Host', sel_host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001049 for name, value in self.parent.addheaders:
1050 name = name.capitalize()
1051 if not request.has_header(name):
1052 request.add_unredirected_header(name, value)
1053
1054 return request
1055
1056 def do_open(self, http_class, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001057 """Return an HTTPResponse object for the request, using http_class.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001058
1059 http_class must implement the HTTPConnection API from http.client.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001060 """
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001061 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001062 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001063 raise URLError('no host given')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001064
1065 h = http_class(host, timeout=req.timeout) # will parse host:port
Senthil Kumaran603ca412010-09-27 01:28:10 +00001066
1067 headers = dict(req.unredirected_hdrs)
1068 headers.update(dict((k, v) for k, v in req.headers.items()
1069 if k not in headers))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001070
1071 # TODO(jhylton): Should this be redesigned to handle
1072 # persistent connections?
1073
1074 # We want to make an HTTP/1.1 request, but the addinfourl
1075 # class isn't prepared to deal with a persistent connection.
1076 # It will try to read all remaining data from the socket,
1077 # which will block while the server waits for the next request.
1078 # So make sure the connection gets closed after the (only)
1079 # request.
1080 headers["Connection"] = "close"
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001081 headers = dict((name.title(), val) for name, val in headers.items())
Senthil Kumaran0ac1f832009-07-26 12:39:47 +00001082
1083 if req._tunnel_host:
Senthil Kumaran4b9fbeb2009-12-20 07:18:22 +00001084 tunnel_headers = {}
1085 proxy_auth_hdr = "Proxy-Authorization"
1086 if proxy_auth_hdr in headers:
1087 tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1088 # Proxy-Authorization should not be sent to origin
1089 # server.
1090 del headers[proxy_auth_hdr]
1091 h._set_tunnel(req._tunnel_host, headers=tunnel_headers)
Senthil Kumaran0ac1f832009-07-26 12:39:47 +00001092
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001093 try:
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001094 h.request(req.get_method(), req.selector, req.data, headers)
1095 r = h.getresponse() # an HTTPResponse instance
1096 except socket.error as err:
Georg Brandl13e89462008-07-01 19:56:00 +00001097 raise URLError(err)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001098
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001099 r.url = req.full_url
1100 # This line replaces the .msg attribute of the HTTPResponse
1101 # with .headers, because urllib clients expect the response to
1102 # have the reason in .msg. It would be good to mark this
1103 # attribute is deprecated and get then to use info() or
1104 # .headers.
1105 r.msg = r.reason
1106 return r
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001107
1108
1109class HTTPHandler(AbstractHTTPHandler):
1110
1111 def http_open(self, req):
1112 return self.do_open(http.client.HTTPConnection, req)
1113
1114 http_request = AbstractHTTPHandler.do_request_
1115
1116if hasattr(http.client, 'HTTPSConnection'):
1117 class HTTPSHandler(AbstractHTTPHandler):
1118
1119 def https_open(self, req):
1120 return self.do_open(http.client.HTTPSConnection, req)
1121
1122 https_request = AbstractHTTPHandler.do_request_
1123
1124class HTTPCookieProcessor(BaseHandler):
1125 def __init__(self, cookiejar=None):
1126 import http.cookiejar
1127 if cookiejar is None:
1128 cookiejar = http.cookiejar.CookieJar()
1129 self.cookiejar = cookiejar
1130
1131 def http_request(self, request):
1132 self.cookiejar.add_cookie_header(request)
1133 return request
1134
1135 def http_response(self, request, response):
1136 self.cookiejar.extract_cookies(response, request)
1137 return response
1138
1139 https_request = http_request
1140 https_response = http_response
1141
1142class UnknownHandler(BaseHandler):
1143 def unknown_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001144 type = req.type
Georg Brandl13e89462008-07-01 19:56:00 +00001145 raise URLError('unknown url type: %s' % type)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001146
1147def parse_keqv_list(l):
1148 """Parse list of key=value strings where keys are not duplicated."""
1149 parsed = {}
1150 for elt in l:
1151 k, v = elt.split('=', 1)
1152 if v[0] == '"' and v[-1] == '"':
1153 v = v[1:-1]
1154 parsed[k] = v
1155 return parsed
1156
1157def parse_http_list(s):
1158 """Parse lists as described by RFC 2068 Section 2.
1159
1160 In particular, parse comma-separated lists where the elements of
1161 the list may include quoted-strings. A quoted-string could
1162 contain a comma. A non-quoted string could have quotes in the
1163 middle. Neither commas nor quotes count if they are escaped.
1164 Only double-quotes count, not single-quotes.
1165 """
1166 res = []
1167 part = ''
1168
1169 escape = quote = False
1170 for cur in s:
1171 if escape:
1172 part += cur
1173 escape = False
1174 continue
1175 if quote:
1176 if cur == '\\':
1177 escape = True
1178 continue
1179 elif cur == '"':
1180 quote = False
1181 part += cur
1182 continue
1183
1184 if cur == ',':
1185 res.append(part)
1186 part = ''
1187 continue
1188
1189 if cur == '"':
1190 quote = True
1191
1192 part += cur
1193
1194 # append last part
1195 if part:
1196 res.append(part)
1197
1198 return [part.strip() for part in res]
1199
1200class FileHandler(BaseHandler):
1201 # Use local file or FTP depending on form of URL
1202 def file_open(self, req):
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001203 url = req.selector
Senthil Kumaran34024142010-07-11 03:15:25 +00001204 if url[:2] == '//' and url[2:3] != '/' and (req.host and
1205 req.host != 'localhost'):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001206 req.type = 'ftp'
1207 return self.parent.open(req)
1208 else:
1209 return self.open_local_file(req)
1210
1211 # names for the localhost
1212 names = None
1213 def get_names(self):
1214 if FileHandler.names is None:
1215 try:
Senthil Kumaran88a495d2009-12-27 10:15:45 +00001216 FileHandler.names = tuple(
1217 socket.gethostbyname_ex('localhost')[2] +
1218 socket.gethostbyname_ex(socket.gethostname())[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001219 except socket.gaierror:
1220 FileHandler.names = (socket.gethostbyname('localhost'),)
1221 return FileHandler.names
1222
1223 # not entirely sure what the rules are here
1224 def open_local_file(self, req):
1225 import email.utils
1226 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001227 host = req.host
Senthil Kumaran1e72bd32010-05-08 05:14:29 +00001228 filename = req.selector
1229 localfile = url2pathname(filename)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001230 try:
1231 stats = os.stat(localfile)
1232 size = stats.st_size
1233 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
Senthil Kumaran1e72bd32010-05-08 05:14:29 +00001234 mtype = mimetypes.guess_type(filename)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001235 headers = email.message_from_string(
1236 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1237 (mtype or 'text/plain', size, modified))
1238 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001239 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001240 if not host or \
1241 (not port and _safe_gethostbyname(host) in self.get_names()):
Senthil Kumaran1e72bd32010-05-08 05:14:29 +00001242 if host:
1243 origurl = 'file://' + host + filename
1244 else:
1245 origurl = 'file://' + filename
1246 return addinfourl(open(localfile, 'rb'), headers, origurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001247 except OSError as msg:
Georg Brandl029986a2008-06-23 11:44:14 +00001248 # users shouldn't expect OSErrors coming from urlopen()
Georg Brandl13e89462008-07-01 19:56:00 +00001249 raise URLError(msg)
1250 raise URLError('file not on local host')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001251
1252def _safe_gethostbyname(host):
1253 try:
1254 return socket.gethostbyname(host)
1255 except socket.gaierror:
1256 return None
1257
1258class FTPHandler(BaseHandler):
1259 def ftp_open(self, req):
1260 import ftplib
1261 import mimetypes
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001262 host = req.host
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001263 if not host:
Georg Brandl13e89462008-07-01 19:56:00 +00001264 raise URLError('ftp error: no host given')
1265 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001266 if port is None:
1267 port = ftplib.FTP_PORT
1268 else:
1269 port = int(port)
1270
1271 # username/password handling
Georg Brandl13e89462008-07-01 19:56:00 +00001272 user, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001273 if user:
Georg Brandl13e89462008-07-01 19:56:00 +00001274 user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001275 else:
1276 passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00001277 host = unquote(host)
1278 user = unquote(user or '')
1279 passwd = unquote(passwd or '')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001280
1281 try:
1282 host = socket.gethostbyname(host)
1283 except socket.error as msg:
Georg Brandl13e89462008-07-01 19:56:00 +00001284 raise URLError(msg)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001285 path, attrs = splitattr(req.selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001286 dirs = path.split('/')
Georg Brandl13e89462008-07-01 19:56:00 +00001287 dirs = list(map(unquote, dirs))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001288 dirs, file = dirs[:-1], dirs[-1]
1289 if dirs and not dirs[0]:
1290 dirs = dirs[1:]
1291 try:
1292 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
1293 type = file and 'I' or 'D'
1294 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00001295 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001296 if attr.lower() == 'type' and \
1297 value in ('a', 'A', 'i', 'I', 'd', 'D'):
1298 type = value.upper()
1299 fp, retrlen = fw.retrfile(file, type)
1300 headers = ""
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001301 mtype = mimetypes.guess_type(req.full_url)[0]
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001302 if mtype:
1303 headers += "Content-type: %s\n" % mtype
1304 if retrlen is not None and retrlen >= 0:
1305 headers += "Content-length: %d\n" % retrlen
1306 headers = email.message_from_string(headers)
Jeremy Hylton6c5e28c2009-03-31 14:35:53 +00001307 return addinfourl(fp, headers, req.full_url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001308 except ftplib.all_errors as msg:
Georg Brandl13e89462008-07-01 19:56:00 +00001309 exc = URLError('ftp error: %s' % msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001310 raise exc.with_traceback(sys.exc_info()[2])
1311
1312 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1313 fw = ftpwrapper(user, passwd, host, port, dirs, timeout)
1314 return fw
1315
1316class CacheFTPHandler(FTPHandler):
1317 # XXX would be nice to have pluggable cache strategies
1318 # XXX this stuff is definitely not thread safe
1319 def __init__(self):
1320 self.cache = {}
1321 self.timeout = {}
1322 self.soonest = 0
1323 self.delay = 60
1324 self.max_conns = 16
1325
1326 def setTimeout(self, t):
1327 self.delay = t
1328
1329 def setMaxConns(self, m):
1330 self.max_conns = m
1331
1332 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1333 key = user, host, port, '/'.join(dirs), timeout
1334 if key in self.cache:
1335 self.timeout[key] = time.time() + self.delay
1336 else:
1337 self.cache[key] = ftpwrapper(user, passwd, host, port,
1338 dirs, timeout)
1339 self.timeout[key] = time.time() + self.delay
1340 self.check_cache()
1341 return self.cache[key]
1342
1343 def check_cache(self):
1344 # first check for old ones
1345 t = time.time()
1346 if self.soonest <= t:
1347 for k, v in list(self.timeout.items()):
1348 if v < t:
1349 self.cache[k].close()
1350 del self.cache[k]
1351 del self.timeout[k]
1352 self.soonest = min(list(self.timeout.values()))
1353
1354 # then check the size
1355 if len(self.cache) == self.max_conns:
1356 for k, v in list(self.timeout.items()):
1357 if v == self.soonest:
1358 del self.cache[k]
1359 del self.timeout[k]
1360 break
1361 self.soonest = min(list(self.timeout.values()))
1362
1363# Code move from the old urllib module
1364
1365MAXFTPCACHE = 10 # Trim the ftp cache beyond this size
1366
1367# Helper for non-unix systems
1368if os.name == 'mac':
1369 from macurl2path import url2pathname, pathname2url
1370elif os.name == 'nt':
1371 from nturl2path import url2pathname, pathname2url
1372else:
1373 def url2pathname(pathname):
1374 """OS-specific conversion from a relative URL of the 'file' scheme
1375 to a file system path; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001376 return unquote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001377
1378 def pathname2url(pathname):
1379 """OS-specific conversion from a file system path to a relative URL
1380 of the 'file' scheme; not recommended for general use."""
Georg Brandl13e89462008-07-01 19:56:00 +00001381 return quote(pathname)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001382
1383# This really consists of two pieces:
1384# (1) a class which handles opening of all sorts of URLs
1385# (plus assorted utilities etc.)
1386# (2) a set of functions for parsing URLs
1387# XXX Should these be separated out into different modules?
1388
1389
1390ftpcache = {}
1391class URLopener:
1392 """Class to open URLs.
1393 This is a class rather than just a subroutine because we may need
1394 more than one set of global protocol-specific options.
1395 Note -- this is a base class for those who don't want the
1396 automatic handling of errors type 302 (relocated) and 401
1397 (authorization needed)."""
1398
1399 __tempfiles = None
1400
1401 version = "Python-urllib/%s" % __version__
1402
1403 # Constructor
1404 def __init__(self, proxies=None, **x509):
1405 if proxies is None:
1406 proxies = getproxies()
1407 assert hasattr(proxies, 'keys'), "proxies must be a mapping"
1408 self.proxies = proxies
1409 self.key_file = x509.get('key_file')
1410 self.cert_file = x509.get('cert_file')
1411 self.addheaders = [('User-Agent', self.version)]
1412 self.__tempfiles = []
1413 self.__unlink = os.unlink # See cleanup()
1414 self.tempcache = None
1415 # Undocumented feature: if you assign {} to tempcache,
1416 # it is used to cache files retrieved with
1417 # self.retrieve(). This is not enabled by default
1418 # since it does not work for changing documents (and I
1419 # haven't got the logic to check expiration headers
1420 # yet).
1421 self.ftpcache = ftpcache
1422 # Undocumented feature: you can use a different
1423 # ftp cache by assigning to the .ftpcache member;
1424 # in case you want logically independent URL openers
1425 # XXX This is not threadsafe. Bah.
1426
1427 def __del__(self):
1428 self.close()
1429
1430 def close(self):
1431 self.cleanup()
1432
1433 def cleanup(self):
1434 # This code sometimes runs when the rest of this module
1435 # has already been deleted, so it can't use any globals
1436 # or import anything.
1437 if self.__tempfiles:
1438 for file in self.__tempfiles:
1439 try:
1440 self.__unlink(file)
1441 except OSError:
1442 pass
1443 del self.__tempfiles[:]
1444 if self.tempcache:
1445 self.tempcache.clear()
1446
1447 def addheader(self, *args):
1448 """Add a header to be used by the HTTP interface only
1449 e.g. u.addheader('Accept', 'sound/basic')"""
1450 self.addheaders.append(args)
1451
1452 # External interface
1453 def open(self, fullurl, data=None):
1454 """Use URLopener().open(file) instead of open(file, 'r')."""
Georg Brandl13e89462008-07-01 19:56:00 +00001455 fullurl = unwrap(to_bytes(fullurl))
Senthil Kumaran0e7e9ae2010-02-20 22:30:21 +00001456 fullurl = quote(fullurl, safe="%/:=&?~#+!$,;'@()*[]|")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001457 if self.tempcache and fullurl in self.tempcache:
1458 filename, headers = self.tempcache[fullurl]
1459 fp = open(filename, 'rb')
Georg Brandl13e89462008-07-01 19:56:00 +00001460 return addinfourl(fp, headers, fullurl)
1461 urltype, url = splittype(fullurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001462 if not urltype:
1463 urltype = 'file'
1464 if urltype in self.proxies:
1465 proxy = self.proxies[urltype]
Georg Brandl13e89462008-07-01 19:56:00 +00001466 urltype, proxyhost = splittype(proxy)
1467 host, selector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001468 url = (host, fullurl) # Signal special case to open_*()
1469 else:
1470 proxy = None
1471 name = 'open_' + urltype
1472 self.type = urltype
1473 name = name.replace('-', '_')
1474 if not hasattr(self, name):
1475 if proxy:
1476 return self.open_unknown_proxy(proxy, fullurl, data)
1477 else:
1478 return self.open_unknown(fullurl, data)
1479 try:
1480 if data is None:
1481 return getattr(self, name)(url)
1482 else:
1483 return getattr(self, name)(url, data)
1484 except socket.error as msg:
1485 raise IOError('socket error', msg).with_traceback(sys.exc_info()[2])
1486
1487 def open_unknown(self, fullurl, data=None):
1488 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001489 type, url = splittype(fullurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001490 raise IOError('url error', 'unknown url type', type)
1491
1492 def open_unknown_proxy(self, proxy, fullurl, data=None):
1493 """Overridable interface to open unknown URL type."""
Georg Brandl13e89462008-07-01 19:56:00 +00001494 type, url = splittype(fullurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001495 raise IOError('url error', 'invalid proxy for %s' % type, proxy)
1496
1497 # External interface
1498 def retrieve(self, url, filename=None, reporthook=None, data=None):
1499 """retrieve(url) returns (filename, headers) for a local object
1500 or (tempfilename, headers) for a remote object."""
Georg Brandl13e89462008-07-01 19:56:00 +00001501 url = unwrap(to_bytes(url))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001502 if self.tempcache and url in self.tempcache:
1503 return self.tempcache[url]
Georg Brandl13e89462008-07-01 19:56:00 +00001504 type, url1 = splittype(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001505 if filename is None and (not type or type == 'file'):
1506 try:
1507 fp = self.open_local_file(url1)
1508 hdrs = fp.info()
1509 del fp
Georg Brandl13e89462008-07-01 19:56:00 +00001510 return url2pathname(splithost(url1)[1]), hdrs
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001511 except IOError as msg:
1512 pass
1513 fp = self.open(url, data)
Benjamin Peterson5f28b7b2009-03-26 21:49:58 +00001514 try:
1515 headers = fp.info()
1516 if filename:
1517 tfp = open(filename, 'wb')
1518 else:
1519 import tempfile
1520 garbage, path = splittype(url)
1521 garbage, path = splithost(path or "")
1522 path, garbage = splitquery(path or "")
1523 path, garbage = splitattr(path or "")
1524 suffix = os.path.splitext(path)[1]
1525 (fd, filename) = tempfile.mkstemp(suffix)
1526 self.__tempfiles.append(filename)
1527 tfp = os.fdopen(fd, 'wb')
1528 try:
1529 result = filename, headers
1530 if self.tempcache is not None:
1531 self.tempcache[url] = result
1532 bs = 1024*8
1533 size = -1
1534 read = 0
1535 blocknum = 0
1536 if reporthook:
1537 if "content-length" in headers:
1538 size = int(headers["Content-Length"])
1539 reporthook(blocknum, bs, size)
1540 while 1:
1541 block = fp.read(bs)
1542 if not block:
1543 break
1544 read += len(block)
1545 tfp.write(block)
1546 blocknum += 1
1547 if reporthook:
1548 reporthook(blocknum, bs, size)
1549 finally:
1550 tfp.close()
1551 finally:
1552 fp.close()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001553 del fp
1554 del tfp
1555
1556 # raise exception if actual size does not match content-length header
1557 if size >= 0 and read < size:
Georg Brandl13e89462008-07-01 19:56:00 +00001558 raise ContentTooShortError(
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001559 "retrieval incomplete: got only %i out of %i bytes"
1560 % (read, size), result)
1561
1562 return result
1563
1564 # Each method named open_<type> knows how to open that type of URL
1565
1566 def _open_generic_http(self, connection_factory, url, data):
1567 """Make an HTTP connection using connection_class.
1568
1569 This is an internal method that should be called from
1570 open_http() or open_https().
1571
1572 Arguments:
1573 - connection_factory should take a host name and return an
1574 HTTPConnection instance.
1575 - url is the url to retrieval or a host, relative-path pair.
1576 - data is payload for a POST request or None.
1577 """
1578
1579 user_passwd = None
1580 proxy_passwd= None
1581 if isinstance(url, str):
Georg Brandl13e89462008-07-01 19:56:00 +00001582 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001583 if host:
Georg Brandl13e89462008-07-01 19:56:00 +00001584 user_passwd, host = splituser(host)
1585 host = unquote(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001586 realhost = host
1587 else:
1588 host, selector = url
1589 # check whether the proxy contains authorization information
Georg Brandl13e89462008-07-01 19:56:00 +00001590 proxy_passwd, host = splituser(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001591 # now we proceed with the url we want to obtain
Georg Brandl13e89462008-07-01 19:56:00 +00001592 urltype, rest = splittype(selector)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001593 url = rest
1594 user_passwd = None
1595 if urltype.lower() != 'http':
1596 realhost = None
1597 else:
Georg Brandl13e89462008-07-01 19:56:00 +00001598 realhost, rest = splithost(rest)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001599 if realhost:
Georg Brandl13e89462008-07-01 19:56:00 +00001600 user_passwd, realhost = splituser(realhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001601 if user_passwd:
1602 selector = "%s://%s%s" % (urltype, realhost, rest)
1603 if proxy_bypass(realhost):
1604 host = realhost
1605
1606 #print "proxy via http:", host, selector
1607 if not host: raise IOError('http error', 'no host given')
1608
1609 if proxy_passwd:
1610 import base64
Senthil Kumaranfe2f4ec2010-08-04 17:49:13 +00001611 proxy_auth = base64.b64encode(proxy_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001612 else:
1613 proxy_auth = None
1614
1615 if user_passwd:
1616 import base64
Senthil Kumaranfe2f4ec2010-08-04 17:49:13 +00001617 auth = base64.b64encode(user_passwd.encode()).decode('ascii')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001618 else:
1619 auth = None
1620 http_conn = connection_factory(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001621 headers = {}
1622 if proxy_auth:
1623 headers["Proxy-Authorization"] = "Basic %s" % proxy_auth
1624 if auth:
1625 headers["Authorization"] = "Basic %s" % auth
1626 if realhost:
1627 headers["Host"] = realhost
1628 for header, value in self.addheaders:
1629 headers[header] = value
1630
1631 if data is not None:
1632 headers["Content-Type"] = "application/x-www-form-urlencoded"
1633 http_conn.request("POST", selector, data, headers)
1634 else:
1635 http_conn.request("GET", selector, headers=headers)
1636
1637 try:
1638 response = http_conn.getresponse()
1639 except http.client.BadStatusLine:
1640 # something went wrong with the HTTP status line
Georg Brandl13e89462008-07-01 19:56:00 +00001641 raise URLError("http protocol error: bad status line")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001642
1643 # According to RFC 2616, "2xx" code indicates that the client's
1644 # request was successfully received, understood, and accepted.
1645 if 200 <= response.status < 300:
Antoine Pitroub353c122009-02-11 00:39:14 +00001646 return addinfourl(response, response.msg, "http:" + url,
Georg Brandl13e89462008-07-01 19:56:00 +00001647 response.status)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001648 else:
1649 return self.http_error(
1650 url, response.fp,
1651 response.status, response.reason, response.msg, data)
1652
1653 def open_http(self, url, data=None):
1654 """Use HTTP protocol."""
1655 return self._open_generic_http(http.client.HTTPConnection, url, data)
1656
1657 def http_error(self, url, fp, errcode, errmsg, headers, data=None):
1658 """Handle http errors.
1659
1660 Derived class can override this, or provide specific handlers
1661 named http_error_DDD where DDD is the 3-digit error code."""
1662 # First check if there's a specific handler for this error
1663 name = 'http_error_%d' % errcode
1664 if hasattr(self, name):
1665 method = getattr(self, name)
1666 if data is None:
1667 result = method(url, fp, errcode, errmsg, headers)
1668 else:
1669 result = method(url, fp, errcode, errmsg, headers, data)
1670 if result: return result
1671 return self.http_error_default(url, fp, errcode, errmsg, headers)
1672
1673 def http_error_default(self, url, fp, errcode, errmsg, headers):
1674 """Default error handler: close the connection and raise IOError."""
1675 void = fp.read()
1676 fp.close()
Georg Brandl13e89462008-07-01 19:56:00 +00001677 raise HTTPError(url, errcode, errmsg, headers, None)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001678
1679 if _have_ssl:
1680 def _https_connection(self, host):
1681 return http.client.HTTPSConnection(host,
1682 key_file=self.key_file,
1683 cert_file=self.cert_file)
1684
1685 def open_https(self, url, data=None):
1686 """Use HTTPS protocol."""
1687 return self._open_generic_http(self._https_connection, url, data)
1688
1689 def open_file(self, url):
1690 """Use local file or FTP depending on form of URL."""
1691 if not isinstance(url, str):
1692 raise URLError('file error', 'proxy support for file protocol currently not implemented')
1693 if url[:2] == '//' and url[2:3] != '/' and url[2:12].lower() != 'localhost/':
1694 return self.open_ftp(url)
1695 else:
1696 return self.open_local_file(url)
1697
1698 def open_local_file(self, url):
1699 """Use local file."""
1700 import mimetypes, email.utils
1701 from io import StringIO
Georg Brandl13e89462008-07-01 19:56:00 +00001702 host, file = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001703 localname = url2pathname(file)
1704 try:
1705 stats = os.stat(localname)
1706 except OSError as e:
1707 raise URLError(e.errno, e.strerror, e.filename)
1708 size = stats.st_size
1709 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1710 mtype = mimetypes.guess_type(url)[0]
1711 headers = email.message_from_string(
1712 'Content-Type: %s\nContent-Length: %d\nLast-modified: %s\n' %
1713 (mtype or 'text/plain', size, modified))
1714 if not host:
1715 urlfile = file
1716 if file[:1] == '/':
1717 urlfile = 'file://' + file
Georg Brandl13e89462008-07-01 19:56:00 +00001718 return addinfourl(open(localname, 'rb'), headers, urlfile)
1719 host, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001720 if (not port
Senthil Kumaran88a495d2009-12-27 10:15:45 +00001721 and socket.gethostbyname(host) in (localhost() + thishost())):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001722 urlfile = file
1723 if file[:1] == '/':
1724 urlfile = 'file://' + file
Georg Brandl13e89462008-07-01 19:56:00 +00001725 return addinfourl(open(localname, 'rb'), headers, urlfile)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001726 raise URLError('local file error', 'not on local host')
1727
1728 def open_ftp(self, url):
1729 """Use FTP protocol."""
1730 if not isinstance(url, str):
1731 raise URLError('ftp error', 'proxy support for ftp protocol currently not implemented')
1732 import mimetypes
1733 from io import StringIO
Georg Brandl13e89462008-07-01 19:56:00 +00001734 host, path = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001735 if not host: raise URLError('ftp error', 'no host given')
Georg Brandl13e89462008-07-01 19:56:00 +00001736 host, port = splitport(host)
1737 user, host = splituser(host)
1738 if user: user, passwd = splitpasswd(user)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001739 else: passwd = None
Georg Brandl13e89462008-07-01 19:56:00 +00001740 host = unquote(host)
1741 user = unquote(user or '')
1742 passwd = unquote(passwd or '')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001743 host = socket.gethostbyname(host)
1744 if not port:
1745 import ftplib
1746 port = ftplib.FTP_PORT
1747 else:
1748 port = int(port)
Georg Brandl13e89462008-07-01 19:56:00 +00001749 path, attrs = splitattr(path)
1750 path = unquote(path)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001751 dirs = path.split('/')
1752 dirs, file = dirs[:-1], dirs[-1]
1753 if dirs and not dirs[0]: dirs = dirs[1:]
1754 if dirs and not dirs[0]: dirs[0] = '/'
1755 key = user, host, port, '/'.join(dirs)
1756 # XXX thread unsafe!
1757 if len(self.ftpcache) > MAXFTPCACHE:
1758 # Prune the cache, rather arbitrarily
1759 for k in self.ftpcache.keys():
1760 if k != key:
1761 v = self.ftpcache[k]
1762 del self.ftpcache[k]
1763 v.close()
1764 try:
1765 if not key in self.ftpcache:
1766 self.ftpcache[key] = \
1767 ftpwrapper(user, passwd, host, port, dirs)
1768 if not file: type = 'D'
1769 else: type = 'I'
1770 for attr in attrs:
Georg Brandl13e89462008-07-01 19:56:00 +00001771 attr, value = splitvalue(attr)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001772 if attr.lower() == 'type' and \
1773 value in ('a', 'A', 'i', 'I', 'd', 'D'):
1774 type = value.upper()
1775 (fp, retrlen) = self.ftpcache[key].retrfile(file, type)
1776 mtype = mimetypes.guess_type("ftp:" + url)[0]
1777 headers = ""
1778 if mtype:
1779 headers += "Content-Type: %s\n" % mtype
1780 if retrlen is not None and retrlen >= 0:
1781 headers += "Content-Length: %d\n" % retrlen
1782 headers = email.message_from_string(headers)
Georg Brandl13e89462008-07-01 19:56:00 +00001783 return addinfourl(fp, headers, "ftp:" + url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001784 except ftperrors() as msg:
1785 raise URLError('ftp error', msg).with_traceback(sys.exc_info()[2])
1786
1787 def open_data(self, url, data=None):
1788 """Use "data" URL."""
1789 if not isinstance(url, str):
1790 raise URLError('data error', 'proxy support for data protocol currently not implemented')
1791 # ignore POSTed data
1792 #
1793 # syntax of data URLs:
1794 # dataurl := "data:" [ mediatype ] [ ";base64" ] "," data
1795 # mediatype := [ type "/" subtype ] *( ";" parameter )
1796 # data := *urlchar
1797 # parameter := attribute "=" value
1798 try:
1799 [type, data] = url.split(',', 1)
1800 except ValueError:
1801 raise IOError('data error', 'bad data URL')
1802 if not type:
1803 type = 'text/plain;charset=US-ASCII'
1804 semi = type.rfind(';')
1805 if semi >= 0 and '=' not in type[semi:]:
1806 encoding = type[semi+1:]
1807 type = type[:semi]
1808 else:
1809 encoding = ''
1810 msg = []
Senthil Kumaran5a3bc652010-05-01 08:32:23 +00001811 msg.append('Date: %s'%time.strftime('%a, %d %b %Y %H:%M:%S GMT',
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001812 time.gmtime(time.time())))
1813 msg.append('Content-type: %s' % type)
1814 if encoding == 'base64':
1815 import base64
Georg Brandl706824f2009-06-04 09:42:55 +00001816 # XXX is this encoding/decoding ok?
1817 data = base64.decodebytes(data.encode('ascii')).decode('latin1')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001818 else:
Georg Brandl13e89462008-07-01 19:56:00 +00001819 data = unquote(data)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001820 msg.append('Content-Length: %d' % len(data))
1821 msg.append('')
1822 msg.append(data)
1823 msg = '\n'.join(msg)
Georg Brandl13e89462008-07-01 19:56:00 +00001824 headers = email.message_from_string(msg)
1825 f = io.StringIO(msg)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001826 #f.fileno = None # needed for addinfourl
Georg Brandl13e89462008-07-01 19:56:00 +00001827 return addinfourl(f, headers, url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001828
1829
1830class FancyURLopener(URLopener):
1831 """Derived class with handlers for errors we can handle (perhaps)."""
1832
1833 def __init__(self, *args, **kwargs):
1834 URLopener.__init__(self, *args, **kwargs)
1835 self.auth_cache = {}
1836 self.tries = 0
1837 self.maxtries = 10
1838
1839 def http_error_default(self, url, fp, errcode, errmsg, headers):
1840 """Default error handling -- don't raise an exception."""
Georg Brandl13e89462008-07-01 19:56:00 +00001841 return addinfourl(fp, headers, "http:" + url, errcode)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001842
1843 def http_error_302(self, url, fp, errcode, errmsg, headers, data=None):
1844 """Error 302 -- relocated (temporarily)."""
1845 self.tries += 1
1846 if self.maxtries and self.tries >= self.maxtries:
1847 if hasattr(self, "http_error_500"):
1848 meth = self.http_error_500
1849 else:
1850 meth = self.http_error_default
1851 self.tries = 0
1852 return meth(url, fp, 500,
1853 "Internal Server Error: Redirect Recursion", headers)
1854 result = self.redirect_internal(url, fp, errcode, errmsg, headers,
1855 data)
1856 self.tries = 0
1857 return result
1858
1859 def redirect_internal(self, url, fp, errcode, errmsg, headers, data):
1860 if 'location' in headers:
1861 newurl = headers['location']
1862 elif 'uri' in headers:
1863 newurl = headers['uri']
1864 else:
1865 return
1866 void = fp.read()
1867 fp.close()
1868 # In case the server sent a relative URL, join with original:
Georg Brandl13e89462008-07-01 19:56:00 +00001869 newurl = urljoin(self.type + ":" + url, newurl)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001870 return self.open(newurl)
1871
1872 def http_error_301(self, url, fp, errcode, errmsg, headers, data=None):
1873 """Error 301 -- also relocated (permanently)."""
1874 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
1875
1876 def http_error_303(self, url, fp, errcode, errmsg, headers, data=None):
1877 """Error 303 -- also relocated (essentially identical to 302)."""
1878 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
1879
1880 def http_error_307(self, url, fp, errcode, errmsg, headers, data=None):
1881 """Error 307 -- relocated, but turn POST into error."""
1882 if data is None:
1883 return self.http_error_302(url, fp, errcode, errmsg, headers, data)
1884 else:
1885 return self.http_error_default(url, fp, errcode, errmsg, headers)
1886
Senthil Kumaranb4d1c2c2010-06-18 15:12:48 +00001887 def http_error_401(self, url, fp, errcode, errmsg, headers, data=None,
1888 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001889 """Error 401 -- authentication required.
1890 This function supports Basic authentication only."""
1891 if not 'www-authenticate' in headers:
1892 URLopener.http_error_default(self, url, fp,
1893 errcode, errmsg, headers)
1894 stuff = headers['www-authenticate']
1895 import re
1896 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
1897 if not match:
1898 URLopener.http_error_default(self, url, fp,
1899 errcode, errmsg, headers)
1900 scheme, realm = match.groups()
1901 if scheme.lower() != 'basic':
1902 URLopener.http_error_default(self, url, fp,
1903 errcode, errmsg, headers)
Senthil Kumaranb4d1c2c2010-06-18 15:12:48 +00001904 if not retry:
1905 URLopener.http_error_default(self, url, fp, errcode, errmsg,
1906 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001907 name = 'retry_' + self.type + '_basic_auth'
1908 if data is None:
1909 return getattr(self,name)(url, realm)
1910 else:
1911 return getattr(self,name)(url, realm, data)
1912
Senthil Kumaranb4d1c2c2010-06-18 15:12:48 +00001913 def http_error_407(self, url, fp, errcode, errmsg, headers, data=None,
1914 retry=False):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001915 """Error 407 -- proxy authentication required.
1916 This function supports Basic authentication only."""
1917 if not 'proxy-authenticate' in headers:
1918 URLopener.http_error_default(self, url, fp,
1919 errcode, errmsg, headers)
1920 stuff = headers['proxy-authenticate']
1921 import re
1922 match = re.match('[ \t]*([^ \t]+)[ \t]+realm="([^"]*)"', stuff)
1923 if not match:
1924 URLopener.http_error_default(self, url, fp,
1925 errcode, errmsg, headers)
1926 scheme, realm = match.groups()
1927 if scheme.lower() != 'basic':
1928 URLopener.http_error_default(self, url, fp,
1929 errcode, errmsg, headers)
Senthil Kumaranb4d1c2c2010-06-18 15:12:48 +00001930 if not retry:
1931 URLopener.http_error_default(self, url, fp, errcode, errmsg,
1932 headers)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001933 name = 'retry_proxy_' + self.type + '_basic_auth'
1934 if data is None:
1935 return getattr(self,name)(url, realm)
1936 else:
1937 return getattr(self,name)(url, realm, data)
1938
1939 def retry_proxy_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00001940 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001941 newurl = 'http://' + host + selector
1942 proxy = self.proxies['http']
Georg Brandl13e89462008-07-01 19:56:00 +00001943 urltype, proxyhost = splittype(proxy)
1944 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001945 i = proxyhost.find('@') + 1
1946 proxyhost = proxyhost[i:]
1947 user, passwd = self.get_user_passwd(proxyhost, realm, i)
1948 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00001949 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001950 quote(passwd, safe=''), proxyhost)
1951 self.proxies['http'] = 'http://' + proxyhost + proxyselector
1952 if data is None:
1953 return self.open(newurl)
1954 else:
1955 return self.open(newurl, data)
1956
1957 def retry_proxy_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00001958 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001959 newurl = 'https://' + host + selector
1960 proxy = self.proxies['https']
Georg Brandl13e89462008-07-01 19:56:00 +00001961 urltype, proxyhost = splittype(proxy)
1962 proxyhost, proxyselector = splithost(proxyhost)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001963 i = proxyhost.find('@') + 1
1964 proxyhost = proxyhost[i:]
1965 user, passwd = self.get_user_passwd(proxyhost, realm, i)
1966 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00001967 proxyhost = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001968 quote(passwd, safe=''), proxyhost)
1969 self.proxies['https'] = 'https://' + proxyhost + proxyselector
1970 if data is None:
1971 return self.open(newurl)
1972 else:
1973 return self.open(newurl, data)
1974
1975 def retry_http_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00001976 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001977 i = host.find('@') + 1
1978 host = host[i:]
1979 user, passwd = self.get_user_passwd(host, realm, i)
1980 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00001981 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001982 quote(passwd, safe=''), host)
1983 newurl = 'http://' + host + selector
1984 if data is None:
1985 return self.open(newurl)
1986 else:
1987 return self.open(newurl, data)
1988
1989 def retry_https_basic_auth(self, url, realm, data=None):
Georg Brandl13e89462008-07-01 19:56:00 +00001990 host, selector = splithost(url)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001991 i = host.find('@') + 1
1992 host = host[i:]
1993 user, passwd = self.get_user_passwd(host, realm, i)
1994 if not (user or passwd): return None
Georg Brandl13e89462008-07-01 19:56:00 +00001995 host = "%s:%s@%s" % (quote(user, safe=''),
Jeremy Hylton1afc1692008-06-18 20:49:58 +00001996 quote(passwd, safe=''), host)
1997 newurl = 'https://' + host + selector
1998 if data is None:
1999 return self.open(newurl)
2000 else:
2001 return self.open(newurl, data)
2002
Florent Xicluna37ddbb82010-08-14 21:06:29 +00002003 def get_user_passwd(self, host, realm, clear_cache=0):
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002004 key = realm + '@' + host.lower()
2005 if key in self.auth_cache:
2006 if clear_cache:
2007 del self.auth_cache[key]
2008 else:
2009 return self.auth_cache[key]
2010 user, passwd = self.prompt_user_passwd(host, realm)
2011 if user or passwd: self.auth_cache[key] = (user, passwd)
2012 return user, passwd
2013
2014 def prompt_user_passwd(self, host, realm):
2015 """Override this in a GUI environment!"""
2016 import getpass
2017 try:
2018 user = input("Enter username for %s at %s: " % (realm, host))
2019 passwd = getpass.getpass("Enter password for %s in %s at %s: " %
2020 (user, realm, host))
2021 return user, passwd
2022 except KeyboardInterrupt:
2023 print()
2024 return None, None
2025
2026
2027# Utility functions
2028
2029_localhost = None
2030def localhost():
2031 """Return the IP address of the magic hostname 'localhost'."""
2032 global _localhost
2033 if _localhost is None:
2034 _localhost = socket.gethostbyname('localhost')
2035 return _localhost
2036
2037_thishost = None
2038def thishost():
Senthil Kumaran88a495d2009-12-27 10:15:45 +00002039 """Return the IP addresses of the current host."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002040 global _thishost
2041 if _thishost is None:
Senthil Kumaran88a495d2009-12-27 10:15:45 +00002042 _thishost = tuple(socket.gethostbyname_ex(socket.gethostname()[2]))
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002043 return _thishost
2044
2045_ftperrors = None
2046def ftperrors():
2047 """Return the set of errors raised by the FTP class."""
2048 global _ftperrors
2049 if _ftperrors is None:
2050 import ftplib
2051 _ftperrors = ftplib.all_errors
2052 return _ftperrors
2053
2054_noheaders = None
2055def noheaders():
Georg Brandl13e89462008-07-01 19:56:00 +00002056 """Return an empty email Message object."""
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002057 global _noheaders
2058 if _noheaders is None:
Georg Brandl13e89462008-07-01 19:56:00 +00002059 _noheaders = email.message_from_string("")
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002060 return _noheaders
2061
2062
2063# Utility classes
2064
2065class ftpwrapper:
2066 """Class used by open_ftp() for cache of open FTP connections."""
2067
2068 def __init__(self, user, passwd, host, port, dirs, timeout=None):
2069 self.user = user
2070 self.passwd = passwd
2071 self.host = host
2072 self.port = port
2073 self.dirs = dirs
2074 self.timeout = timeout
2075 self.init()
2076
2077 def init(self):
2078 import ftplib
2079 self.busy = 0
2080 self.ftp = ftplib.FTP()
2081 self.ftp.connect(self.host, self.port, self.timeout)
2082 self.ftp.login(self.user, self.passwd)
2083 for dir in self.dirs:
2084 self.ftp.cwd(dir)
2085
2086 def retrfile(self, file, type):
2087 import ftplib
2088 self.endtransfer()
2089 if type in ('d', 'D'): cmd = 'TYPE A'; isdir = 1
2090 else: cmd = 'TYPE ' + type; isdir = 0
2091 try:
2092 self.ftp.voidcmd(cmd)
2093 except ftplib.all_errors:
2094 self.init()
2095 self.ftp.voidcmd(cmd)
2096 conn = None
2097 if file and not isdir:
2098 # Try to retrieve as a file
2099 try:
2100 cmd = 'RETR ' + file
2101 conn = self.ftp.ntransfercmd(cmd)
2102 except ftplib.error_perm as reason:
2103 if str(reason)[:3] != '550':
Georg Brandl13e89462008-07-01 19:56:00 +00002104 raise URLError('ftp error', reason).with_traceback(
2105 sys.exc_info()[2])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002106 if not conn:
2107 # Set transfer mode to ASCII!
2108 self.ftp.voidcmd('TYPE A')
2109 # Try a directory listing. Verify that directory exists.
2110 if file:
2111 pwd = self.ftp.pwd()
2112 try:
2113 try:
2114 self.ftp.cwd(file)
2115 except ftplib.error_perm as reason:
Georg Brandl13e89462008-07-01 19:56:00 +00002116 raise URLError('ftp error', reason) from reason
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002117 finally:
2118 self.ftp.cwd(pwd)
2119 cmd = 'LIST ' + file
2120 else:
2121 cmd = 'LIST'
2122 conn = self.ftp.ntransfercmd(cmd)
2123 self.busy = 1
2124 # Pass back both a suitably decorated object and a retrieval length
Georg Brandl13e89462008-07-01 19:56:00 +00002125 return (addclosehook(conn[0].makefile('rb'), self.endtransfer), conn[1])
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002126 def endtransfer(self):
2127 if not self.busy:
2128 return
2129 self.busy = 0
2130 try:
2131 self.ftp.voidresp()
2132 except ftperrors():
2133 pass
2134
2135 def close(self):
2136 self.endtransfer()
2137 try:
2138 self.ftp.close()
2139 except ftperrors():
2140 pass
2141
2142# Proxy handling
2143def getproxies_environment():
2144 """Return a dictionary of scheme -> proxy server URL mappings.
2145
2146 Scan the environment for variables named <scheme>_proxy;
2147 this seems to be the standard convention. If you need a
2148 different way, you can pass a proxies dictionary to the
2149 [Fancy]URLopener constructor.
2150
2151 """
2152 proxies = {}
2153 for name, value in os.environ.items():
2154 name = name.lower()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002155 if value and name[-6:] == '_proxy':
2156 proxies[name[:-6]] = value
2157 return proxies
2158
2159def proxy_bypass_environment(host):
2160 """Test if proxies should not be used for a particular host.
2161
2162 Checks the environment for a variable named no_proxy, which should
2163 be a list of DNS suffixes separated by commas, or '*' for all hosts.
2164 """
2165 no_proxy = os.environ.get('no_proxy', '') or os.environ.get('NO_PROXY', '')
2166 # '*' is special case for always bypass
2167 if no_proxy == '*':
2168 return 1
2169 # strip port off host
Georg Brandl13e89462008-07-01 19:56:00 +00002170 hostonly, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002171 # check if the host ends with any of the DNS suffixes
2172 for name in no_proxy.split(','):
2173 if name and (hostonly.endswith(name) or host.endswith(name)):
2174 return 1
2175 # otherwise, don't bypass
2176 return 0
2177
2178
2179if sys.platform == 'darwin':
Ronald Oussoren218cc582010-04-18 20:49:34 +00002180 from _scproxy import _get_proxy_settings, _get_proxies
2181
2182 def proxy_bypass_macosx_sysconf(host):
2183 """
2184 Return True iff this host shouldn't be accessed using a proxy
2185
2186 This function uses the MacOSX framework SystemConfiguration
2187 to fetch the proxy information.
2188 """
2189 import re
2190 import socket
2191 from fnmatch import fnmatch
2192
2193 hostonly, port = splitport(host)
2194
2195 def ip2num(ipAddr):
2196 parts = ipAddr.split('.')
Mark Dickinsonb7d94362010-05-09 12:17:58 +00002197 parts = list(map(int, parts))
Ronald Oussoren218cc582010-04-18 20:49:34 +00002198 if len(parts) != 4:
2199 parts = (parts + [0, 0, 0, 0])[:4]
2200 return (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8) | parts[3]
2201
2202 proxy_settings = _get_proxy_settings()
2203
2204 # Check for simple host names:
2205 if '.' not in host:
2206 if proxy_settings['exclude_simple']:
2207 return True
2208
2209 hostIP = None
2210
2211 for value in proxy_settings.get('exceptions', ()):
2212 # Items in the list are strings like these: *.local, 169.254/16
2213 if not value: continue
2214
2215 m = re.match(r"(\d+(?:\.\d+)*)(/\d+)?", value)
2216 if m is not None:
2217 if hostIP is None:
2218 try:
2219 hostIP = socket.gethostbyname(hostonly)
2220 hostIP = ip2num(hostIP)
2221 except socket.error:
2222 continue
2223
2224 base = ip2num(m.group(1))
Ronald Oussorenddb62e92010-06-27 14:27:27 +00002225 mask = m.group(2)
2226 if mask is None:
2227 mask = 8 * (m.group(1).count('.') + 1)
2228
2229 else:
2230 mask = int(mask[1:])
2231 mask = 32 - mask
Ronald Oussoren218cc582010-04-18 20:49:34 +00002232
2233 if (hostIP >> mask) == (base >> mask):
2234 return True
2235
2236 elif fnmatch(host, value):
2237 return True
2238
2239 return False
2240
2241
2242 def getproxies_macosx_sysconf():
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002243 """Return a dictionary of scheme -> proxy server URL mappings.
2244
Ronald Oussoren218cc582010-04-18 20:49:34 +00002245 This function uses the MacOSX framework SystemConfiguration
2246 to fetch the proxy information.
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002247 """
Ronald Oussoren218cc582010-04-18 20:49:34 +00002248 return _get_proxies()
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002249
Ronald Oussoren218cc582010-04-18 20:49:34 +00002250
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002251
2252 def proxy_bypass(host):
2253 if getproxies_environment():
2254 return proxy_bypass_environment(host)
2255 else:
Ronald Oussoren218cc582010-04-18 20:49:34 +00002256 return proxy_bypass_macosx_sysconf(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002257
2258 def getproxies():
Ronald Oussoren218cc582010-04-18 20:49:34 +00002259 return getproxies_environment() or getproxies_macosx_sysconf()
2260
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002261
2262elif os.name == 'nt':
2263 def getproxies_registry():
2264 """Return a dictionary of scheme -> proxy server URL mappings.
2265
2266 Win32 uses the registry to store proxies.
2267
2268 """
2269 proxies = {}
2270 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002271 import winreg
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002272 except ImportError:
2273 # Std module, so should be around - but you never know!
2274 return proxies
2275 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002276 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002277 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002278 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002279 'ProxyEnable')[0]
2280 if proxyEnable:
2281 # Returned as Unicode but problems if not converted to ASCII
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002282 proxyServer = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002283 'ProxyServer')[0])
2284 if '=' in proxyServer:
2285 # Per-protocol settings
2286 for p in proxyServer.split(';'):
2287 protocol, address = p.split('=', 1)
2288 # See if address has a type:// prefix
2289 import re
2290 if not re.match('^([^/:]+)://', address):
2291 address = '%s://%s' % (protocol, address)
2292 proxies[protocol] = address
2293 else:
2294 # Use one setting for all protocols
2295 if proxyServer[:5] == 'http:':
2296 proxies['http'] = proxyServer
2297 else:
2298 proxies['http'] = 'http://%s' % proxyServer
Senthil Kumaran1ea57a62010-07-14 20:13:28 +00002299 proxies['https'] = 'https://%s' % proxyServer
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002300 proxies['ftp'] = 'ftp://%s' % proxyServer
2301 internetSettings.Close()
2302 except (WindowsError, ValueError, TypeError):
2303 # Either registry key not found etc, or the value in an
2304 # unexpected format.
2305 # proxies already set up to be empty so nothing to do
2306 pass
2307 return proxies
2308
2309 def getproxies():
2310 """Return a dictionary of scheme -> proxy server URL mappings.
2311
2312 Returns settings gathered from the environment, if specified,
2313 or the registry.
2314
2315 """
2316 return getproxies_environment() or getproxies_registry()
2317
2318 def proxy_bypass_registry(host):
2319 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002320 import winreg
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002321 import re
2322 except ImportError:
2323 # Std modules, so should be around - but you never know!
2324 return 0
2325 try:
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002326 internetSettings = winreg.OpenKey(winreg.HKEY_CURRENT_USER,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002327 r'Software\Microsoft\Windows\CurrentVersion\Internet Settings')
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002328 proxyEnable = winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002329 'ProxyEnable')[0]
Georg Brandl4ed72ac2009-04-01 04:28:33 +00002330 proxyOverride = str(winreg.QueryValueEx(internetSettings,
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002331 'ProxyOverride')[0])
2332 # ^^^^ Returned as Unicode but problems if not converted to ASCII
2333 except WindowsError:
2334 return 0
2335 if not proxyEnable or not proxyOverride:
2336 return 0
2337 # try to make a host list from name and IP address.
Georg Brandl13e89462008-07-01 19:56:00 +00002338 rawHost, port = splitport(host)
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002339 host = [rawHost]
2340 try:
2341 addr = socket.gethostbyname(rawHost)
2342 if addr != rawHost:
2343 host.append(addr)
2344 except socket.error:
2345 pass
2346 try:
2347 fqdn = socket.getfqdn(rawHost)
2348 if fqdn != rawHost:
2349 host.append(fqdn)
2350 except socket.error:
2351 pass
2352 # make a check value list from the registry entry: replace the
2353 # '<local>' string by the localhost entry and the corresponding
2354 # canonical entry.
2355 proxyOverride = proxyOverride.split(';')
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002356 # now check if we match one of the registry values.
2357 for test in proxyOverride:
Senthil Kumaran49476062009-05-01 06:00:23 +00002358 if test == '<local>':
2359 if '.' not in rawHost:
2360 return 1
Jeremy Hylton1afc1692008-06-18 20:49:58 +00002361 test = test.replace(".", r"\.") # mask dots
2362 test = test.replace("*", r".*") # change glob sequence
2363 test = test.replace("?", r".") # change glob char
2364 for val in host:
2365 # print "%s <--> %s" %( test, val )
2366 if re.match(test, val, re.I):
2367 return 1
2368 return 0
2369
2370 def proxy_bypass(host):
2371 """Return a dictionary of scheme -> proxy server URL mappings.
2372
2373 Returns settings gathered from the environment, if specified,
2374 or the registry.
2375
2376 """
2377 if getproxies_environment():
2378 return proxy_bypass_environment(host)
2379 else:
2380 return proxy_bypass_registry(host)
2381
2382else:
2383 # By default use environment variables
2384 getproxies = getproxies_environment
2385 proxy_bypass = proxy_bypass_environment