blob: d0e81a8084f71476c7e7582c5b21b0918cf9e193 [file] [log] [blame]
Guido van Rossume7b146f2000-02-04 15:28:42 +00001"""An extensible library for opening URLs using a variety of protocols
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00002
3The simplest way to use this module is to call the urlopen function,
Tim Peterse1190062001-01-15 03:34:38 +00004which accepts a string containing a URL or a Request object (described
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00005below). It opens the URL and returns the results as file-like
6object; the returned object has some extra methods described below.
7
Jeremy Hyltone1906632002-10-11 17:27:55 +00008The OpenerDirector manages a collection of Handler objects that do
Tim Peterse1190062001-01-15 03:34:38 +00009all the actual work. Each Handler implements a particular protocol or
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000010option. 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
Raymond Hettinger024aaa12003-04-24 15:32:12 +000014HTTP 301, 302, 303 and 307 redirect errors, and the HTTPDigestAuthHandler
15deals with digest authentication.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000016
Facundo Batistaca90ca82007-03-05 16:31:54 +000017urlopen(url, data=None) -- Basic usage is the same as original
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000018urllib. pass the url and optionally data to post to an HTTP URL, and
Tim Peterse1190062001-01-15 03:34:38 +000019get a file-like object back. One difference is that you can also pass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000020a 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
Facundo Batistaca90ca82007-03-05 16:31:54 +000024build_opener -- Function that creates a new OpenerDirector instance.
25Will install the default handlers. Accepts one or more Handlers as
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000026arguments, either instances or Handler classes that it will
Facundo Batistaca90ca82007-03-05 16:31:54 +000027instantiate. If one of the argument is a subclass of the default
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000028handler, the argument will be installed instead of the default.
29
Facundo Batistaca90ca82007-03-05 16:31:54 +000030install_opener -- Installs a new opener as the default opener.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000031
32objects of interest:
Senthil Kumaran51200272009-11-15 06:10:30 +000033
34OpenerDirector -- Sets up the User Agent as the Python-urllib client and manages
35the Handler classes, while dealing with requests and responses.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000036
Facundo Batistaca90ca82007-03-05 16:31:54 +000037Request -- An object that encapsulates the state of a request. The
38state can be as simple as the URL. It can also include extra HTTP
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000039headers, e.g. a User-Agent.
40
41BaseHandler --
42
43exceptions:
Facundo Batistaca90ca82007-03-05 16:31:54 +000044URLError -- A subclass of IOError, individual protocols have their own
45specific subclass.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000046
Facundo Batistaca90ca82007-03-05 16:31:54 +000047HTTPError -- Also a valid HTTP response, so you can treat an HTTP error
48as an exceptional event or valid response.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000049
50internals:
51BaseHandler and parent
52_call_chain conventions
53
54Example usage:
55
56import urllib2
57
58# set up authentication info
59authinfo = urllib2.HTTPBasicAuthHandler()
Neal Norwitz8eea9ac2007-04-24 04:53:12 +000060authinfo.add_password(realm='PDQ Application',
61 uri='https://mahler:8092/site-updates.py',
62 user='klem',
63 passwd='geheim$parole')
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000064
Moshe Zadka8a18e992001-03-01 08:40:42 +000065proxy_support = urllib2.ProxyHandler({"http" : "http://ahad-haam:3128"})
66
Tim Peterse1190062001-01-15 03:34:38 +000067# build a new opener that adds authentication and caching FTP handlers
Moshe Zadka8a18e992001-03-01 08:40:42 +000068opener = urllib2.build_opener(proxy_support, authinfo, urllib2.CacheFTPHandler)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000069
70# install it
71urllib2.install_opener(opener)
72
73f = urllib2.urlopen('http://www.python.org/')
74
75
76"""
77
78# XXX issues:
79# If an authentication error handler that tries to perform
Fred Draked5214b02001-11-08 17:19:29 +000080# authentication for some reason but fails, how should the error be
81# signalled? The client needs to know the HTTP error code. But if
82# the handler knows that the problem was, e.g., that it didn't know
83# that hash algo that requested in the challenge, it would be good to
84# pass that information along to the client, too.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000085# ftp errors aren't handled cleanly
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000086# check digest against correct (i.e. non-apache) implementation
87
Georg Brandlc5ffd912006-04-02 20:48:11 +000088# Possible extensions:
89# complex proxies XXX not sure what exactly was meant by this
90# abstract factory for opener
91
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +000092import base64
Georg Brandlbffb0bc2006-04-30 08:57:35 +000093import hashlib
Georg Brandl9d6da3e2006-05-17 15:17:00 +000094import httplib
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000095import mimetools
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +000096import os
97import posixpath
98import random
99import re
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000100import socket
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000101import sys
102import time
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000103import urlparse
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000104import bisect
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000105
106try:
107 from cStringIO import StringIO
108except ImportError:
109 from StringIO import StringIO
110
Georg Brandl7fff58c2006-04-02 21:13:13 +0000111from urllib import (unwrap, unquote, splittype, splithost, quote,
Senthil Kumaranb4ec7ee2010-08-08 11:43:45 +0000112 addinfourl, splitport, splittag,
Brett Cannon88f801d2008-08-18 00:46:22 +0000113 splitattr, ftpwrapper, splituser, splitpasswd, splitvalue)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000114
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000115# support for FileHandler, proxies via environment variables
Senthil Kumaran27468662009-10-11 02:00:07 +0000116from urllib import localhost, url2pathname, getproxies, proxy_bypass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000117
Georg Brandl720096a2006-04-02 20:45:34 +0000118# used in User-Agent header sent
119__version__ = sys.version[:3]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000120
121_opener = None
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000122def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000123 global _opener
124 if _opener is None:
125 _opener = build_opener()
Facundo Batista10951d52007-06-06 17:15:23 +0000126 return _opener.open(url, data, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000127
128def install_opener(opener):
129 global _opener
130 _opener = opener
131
132# do these error classes make sense?
Tim Peterse1190062001-01-15 03:34:38 +0000133# make sure all of the IOError stuff is overridden. we just want to be
Fred Drakea87a5212002-08-13 13:59:55 +0000134# subtypes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000135
136class URLError(IOError):
137 # URLError is a sub-type of IOError, but it doesn't share any of
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000138 # the implementation. need to override __init__ and __str__.
139 # It sets self.args for compatibility with other EnvironmentError
140 # subclasses, but args doesn't have the typical format with errno in
141 # slot 0 and strerror in slot 1. This may be better than nothing.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000142 def __init__(self, reason):
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000143 self.args = reason,
Fred Drake13a2c272000-02-10 17:17:14 +0000144 self.reason = reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000145
146 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000147 return '<urlopen error %s>' % self.reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000148
149class HTTPError(URLError, addinfourl):
150 """Raised when HTTP error occurs, but also acts like non-error return"""
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000151 __super_init = addinfourl.__init__
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000152
153 def __init__(self, url, code, msg, hdrs, fp):
Fred Drake13a2c272000-02-10 17:17:14 +0000154 self.code = code
155 self.msg = msg
156 self.hdrs = hdrs
157 self.fp = fp
Fred Drake13a2c272000-02-10 17:17:14 +0000158 self.filename = url
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000159 # The addinfourl classes depend on fp being a valid file
160 # object. In some cases, the HTTPError may not have a valid
161 # file object. If this happens, the simplest workaround is to
Tim Petersc411dba2002-07-16 21:35:23 +0000162 # not initialize the base classes.
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000163 if fp is not None:
Georg Brandl99bb5f32008-04-09 17:57:38 +0000164 self.__super_init(fp, hdrs, url, code)
Tim Peterse1190062001-01-15 03:34:38 +0000165
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000166 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000167 return 'HTTP Error %s: %s' % (self.code, self.msg)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000168
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000169# copied from cookielib.py
Neal Norwitzb678ce52006-05-18 06:51:46 +0000170_cut_port_re = re.compile(r":\d+$")
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000171def request_host(request):
172 """Return request-host, as defined by RFC 2965.
173
174 Variation from RFC: returned value is lowercased, for convenient
175 comparison.
176
177 """
178 url = request.get_full_url()
179 host = urlparse.urlparse(url)[1]
180 if host == "":
181 host = request.get_header("Host", "")
182
183 # remove port, if present
Neal Norwitzb678ce52006-05-18 06:51:46 +0000184 host = _cut_port_re.sub("", host, 1)
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000185 return host.lower()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000186
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000187class Request:
Moshe Zadka8a18e992001-03-01 08:40:42 +0000188
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000189 def __init__(self, url, data=None, headers={},
190 origin_req_host=None, unverifiable=False):
Fred Drake13a2c272000-02-10 17:17:14 +0000191 # unwrap('<URL:type://host/path>') --> 'type://host/path'
192 self.__original = unwrap(url)
Senthil Kumaranb4ec7ee2010-08-08 11:43:45 +0000193 self.__original, fragment = splittag(self.__original)
Fred Drake13a2c272000-02-10 17:17:14 +0000194 self.type = None
195 # self.__r_type is what's left after doing the splittype
196 self.host = None
197 self.port = None
Senthil Kumarane266f252009-05-24 09:14:50 +0000198 self._tunnel_host = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000199 self.data = data
Fred Drake13a2c272000-02-10 17:17:14 +0000200 self.headers = {}
Brett Cannonc8b188a2003-05-17 19:51:26 +0000201 for key, value in headers.items():
Brett Cannon86503b12003-05-12 07:29:42 +0000202 self.add_header(key, value)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000203 self.unredirected_hdrs = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000204 if origin_req_host is None:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000205 origin_req_host = request_host(self)
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000206 self.origin_req_host = origin_req_host
207 self.unverifiable = unverifiable
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000208
209 def __getattr__(self, attr):
Fred Drake13a2c272000-02-10 17:17:14 +0000210 # XXX this is a fallback mechanism to guard against these
Tim Peterse1190062001-01-15 03:34:38 +0000211 # methods getting called in a non-standard order. this may be
Fred Drake13a2c272000-02-10 17:17:14 +0000212 # too complicated and/or unnecessary.
213 # XXX should the __r_XXX attributes be public?
214 if attr[:12] == '_Request__r_':
215 name = attr[12:]
216 if hasattr(Request, 'get_' + name):
217 getattr(self, 'get_' + name)()
218 return getattr(self, attr)
219 raise AttributeError, attr
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000220
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000221 def get_method(self):
222 if self.has_data():
223 return "POST"
224 else:
225 return "GET"
226
Jeremy Hylton023518a2003-12-17 18:52:16 +0000227 # XXX these helper methods are lame
228
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000229 def add_data(self, data):
230 self.data = data
231
232 def has_data(self):
233 return self.data is not None
234
235 def get_data(self):
236 return self.data
237
238 def get_full_url(self):
239 return self.__original
240
241 def get_type(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000242 if self.type is None:
243 self.type, self.__r_type = splittype(self.__original)
Jeremy Hylton78cae612001-05-09 15:49:24 +0000244 if self.type is None:
245 raise ValueError, "unknown url type: %s" % self.__original
Fred Drake13a2c272000-02-10 17:17:14 +0000246 return self.type
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000247
248 def get_host(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000249 if self.host is None:
250 self.host, self.__r_host = splithost(self.__r_type)
251 if self.host:
252 self.host = unquote(self.host)
253 return self.host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000254
255 def get_selector(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000256 return self.__r_host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000257
Moshe Zadka8a18e992001-03-01 08:40:42 +0000258 def set_proxy(self, host, type):
Senthil Kumarane266f252009-05-24 09:14:50 +0000259 if self.type == 'https' and not self._tunnel_host:
260 self._tunnel_host = self.host
261 else:
262 self.type = type
263 self.__r_host = self.__original
264
265 self.host = host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000266
Facundo Batistaeb90b782008-08-16 14:44:07 +0000267 def has_proxy(self):
268 return self.__r_host == self.__original
269
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000270 def get_origin_req_host(self):
271 return self.origin_req_host
272
273 def is_unverifiable(self):
274 return self.unverifiable
275
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000276 def add_header(self, key, val):
Fred Drake13a2c272000-02-10 17:17:14 +0000277 # useful for something like authentication
Georg Brandl8c036cc2006-08-20 13:15:39 +0000278 self.headers[key.capitalize()] = val
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000279
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000280 def add_unredirected_header(self, key, val):
281 # will not be added to a redirected request
Georg Brandl8c036cc2006-08-20 13:15:39 +0000282 self.unredirected_hdrs[key.capitalize()] = val
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000283
284 def has_header(self, header_name):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000285 return (header_name in self.headers or
286 header_name in self.unredirected_hdrs)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000287
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000288 def get_header(self, header_name, default=None):
289 return self.headers.get(
290 header_name,
291 self.unredirected_hdrs.get(header_name, default))
292
293 def header_items(self):
294 hdrs = self.unredirected_hdrs.copy()
295 hdrs.update(self.headers)
296 return hdrs.items()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000297
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000298class OpenerDirector:
299 def __init__(self):
Georg Brandl8d457c72005-06-26 22:01:35 +0000300 client_version = "Python-urllib/%s" % __version__
Georg Brandl8c036cc2006-08-20 13:15:39 +0000301 self.addheaders = [('User-agent', client_version)]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000302 # manage the individual handlers
303 self.handlers = []
304 self.handle_open = {}
305 self.handle_error = {}
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000306 self.process_response = {}
307 self.process_request = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000308
309 def add_handler(self, handler):
Georg Brandlf91149e2007-07-12 08:05:45 +0000310 if not hasattr(handler, "add_parent"):
311 raise TypeError("expected BaseHandler instance, got %r" %
312 type(handler))
313
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000314 added = False
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000315 for meth in dir(handler):
Georg Brandl261e2512006-05-29 20:52:54 +0000316 if meth in ["redirect_request", "do_open", "proxy_open"]:
317 # oops, coincidental match
318 continue
319
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000320 i = meth.find("_")
321 protocol = meth[:i]
322 condition = meth[i+1:]
323
324 if condition.startswith("error"):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000325 j = condition.find("_") + i + 1
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000326 kind = meth[j+1:]
327 try:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000328 kind = int(kind)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000329 except ValueError:
330 pass
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000331 lookup = self.handle_error.get(protocol, {})
332 self.handle_error[protocol] = lookup
333 elif condition == "open":
334 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000335 lookup = self.handle_open
336 elif condition == "response":
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000337 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000338 lookup = self.process_response
339 elif condition == "request":
340 kind = protocol
341 lookup = self.process_request
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000342 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000343 continue
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000344
345 handlers = lookup.setdefault(kind, [])
346 if handlers:
347 bisect.insort(handlers, handler)
348 else:
349 handlers.append(handler)
350 added = True
351
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000352 if added:
Facundo Batistaca90ca82007-03-05 16:31:54 +0000353 # the handlers must work in an specific order, the order
354 # is specified in a Handler attribute
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000355 bisect.insort(self.handlers, handler)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000356 handler.add_parent(self)
Tim Peterse1190062001-01-15 03:34:38 +0000357
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000358 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000359 # Only exists for backwards compatibility.
360 pass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000361
362 def _call_chain(self, chain, kind, meth_name, *args):
Georg Brandlc5ffd912006-04-02 20:48:11 +0000363 # Handlers raise an exception if no one else should try to handle
364 # the request, or return None if they can't but another handler
365 # could. Otherwise, they return the response.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000366 handlers = chain.get(kind, ())
367 for handler in handlers:
368 func = getattr(handler, meth_name)
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000369
370 result = func(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000371 if result is not None:
372 return result
373
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000374 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Fred Drake13a2c272000-02-10 17:17:14 +0000375 # accept a URL or a Request object
Walter Dörwald65230a22002-06-03 15:58:32 +0000376 if isinstance(fullurl, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000377 req = Request(fullurl, data)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000378 else:
379 req = fullurl
380 if data is not None:
381 req.add_data(data)
Tim Peterse1190062001-01-15 03:34:38 +0000382
Facundo Batista10951d52007-06-06 17:15:23 +0000383 req.timeout = timeout
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000384 protocol = req.get_type()
385
386 # pre-process request
387 meth_name = protocol+"_request"
388 for processor in self.process_request.get(protocol, []):
389 meth = getattr(processor, meth_name)
390 req = meth(req)
391
392 response = self._open(req, data)
393
394 # post-process response
395 meth_name = protocol+"_response"
396 for processor in self.process_response.get(protocol, []):
397 meth = getattr(processor, meth_name)
398 response = meth(req, response)
399
400 return response
401
402 def _open(self, req, data=None):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000403 result = self._call_chain(self.handle_open, 'default',
Tim Peterse1190062001-01-15 03:34:38 +0000404 'default_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000405 if result:
406 return result
407
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000408 protocol = req.get_type()
409 result = self._call_chain(self.handle_open, protocol, protocol +
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000410 '_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000411 if result:
412 return result
413
414 return self._call_chain(self.handle_open, 'unknown',
415 'unknown_open', req)
416
417 def error(self, proto, *args):
Raymond Hettingerdbecd932005-02-06 06:57:08 +0000418 if proto in ('http', 'https'):
Fred Draked5214b02001-11-08 17:19:29 +0000419 # XXX http[s] protocols are special-cased
420 dict = self.handle_error['http'] # https is not different than http
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000421 proto = args[2] # YUCK!
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000422 meth_name = 'http_error_%s' % proto
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000423 http_err = 1
424 orig_args = args
425 else:
426 dict = self.handle_error
427 meth_name = proto + '_error'
428 http_err = 0
429 args = (dict, proto, meth_name) + args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000430 result = self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000431 if result:
432 return result
433
434 if http_err:
435 args = (dict, 'default', 'http_error_default') + orig_args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000436 return self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000437
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000438# XXX probably also want an abstract factory that knows when it makes
439# sense to skip a superclass in favor of a subclass and when it might
440# make sense to include both
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000441
442def build_opener(*handlers):
443 """Create an opener object from a list of handlers.
444
445 The opener will use several default handlers, including support
Senthil Kumaran51200272009-11-15 06:10:30 +0000446 for HTTP, FTP and when applicable, HTTPS.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000447
448 If any of the handlers passed as arguments are subclasses of the
449 default handlers, the default handlers will not be used.
450 """
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000451 import types
452 def isclass(obj):
Benjamin Peterson4bb96fe2009-02-12 04:17:04 +0000453 return isinstance(obj, (types.ClassType, type))
Tim Peterse1190062001-01-15 03:34:38 +0000454
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000455 opener = OpenerDirector()
456 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
457 HTTPDefaultErrorHandler, HTTPRedirectHandler,
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000458 FTPHandler, FileHandler, HTTPErrorProcessor]
Moshe Zadka8a18e992001-03-01 08:40:42 +0000459 if hasattr(httplib, 'HTTPS'):
460 default_classes.append(HTTPSHandler)
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000461 skip = set()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000462 for klass in default_classes:
463 for check in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000464 if isclass(check):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000465 if issubclass(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000466 skip.add(klass)
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000467 elif isinstance(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000468 skip.add(klass)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000469 for klass in skip:
470 default_classes.remove(klass)
471
472 for klass in default_classes:
473 opener.add_handler(klass())
474
475 for h in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000476 if isclass(h):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000477 h = h()
478 opener.add_handler(h)
479 return opener
480
481class BaseHandler:
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000482 handler_order = 500
483
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000484 def add_parent(self, parent):
485 self.parent = parent
Tim Peters58eb11c2004-01-18 20:29:55 +0000486
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000487 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000488 # Only exists for backwards compatibility
489 pass
Tim Peters58eb11c2004-01-18 20:29:55 +0000490
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000491 def __lt__(self, other):
492 if not hasattr(other, "handler_order"):
493 # Try to preserve the old behavior of having custom classes
494 # inserted after default ones (works only for custom user
495 # classes which are not aware of handler_order).
496 return True
497 return self.handler_order < other.handler_order
Tim Petersf545baa2003-06-15 23:26:30 +0000498
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000499
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000500class HTTPErrorProcessor(BaseHandler):
501 """Process HTTP error responses."""
502 handler_order = 1000 # after all other processing
503
504 def http_response(self, request, response):
505 code, msg, hdrs = response.code, response.msg, response.info()
506
Neal Norwitz0d4c06e2007-04-25 06:30:05 +0000507 # According to RFC 2616, "2xx" code indicates that the client's
Facundo Batista9fab9f12007-04-23 17:08:31 +0000508 # request was successfully received, understood, and accepted.
509 if not (200 <= code < 300):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000510 response = self.parent.error(
511 'http', request, response, code, msg, hdrs)
512
513 return response
514
515 https_response = http_response
516
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000517class HTTPDefaultErrorHandler(BaseHandler):
518 def http_error_default(self, req, fp, code, msg, hdrs):
Fred Drake13a2c272000-02-10 17:17:14 +0000519 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000520
521class HTTPRedirectHandler(BaseHandler):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000522 # maximum number of redirections to any single URL
523 # this is needed because of the state that cookies introduce
524 max_repeats = 4
525 # maximum total number of redirections (regardless of URL) before
526 # assuming we're in a loop
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000527 max_redirections = 10
528
Jeremy Hylton03892952003-05-05 04:09:13 +0000529 def redirect_request(self, req, fp, code, msg, headers, newurl):
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000530 """Return a Request or None in response to a redirect.
531
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000532 This is called by the http_error_30x methods when a
533 redirection response is received. If a redirection should
534 take place, return a new Request to allow http_error_30x to
535 perform the redirect. Otherwise, raise HTTPError if no-one
536 else should try to handle this url. Return None if you can't
537 but another Handler might.
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000538 """
Jeremy Hylton828023b2003-05-04 23:44:49 +0000539 m = req.get_method()
540 if (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
Martin v. Löwis162f0812003-07-12 07:33:32 +0000541 or code in (301, 302, 303) and m == "POST"):
542 # Strictly (according to RFC 2616), 301 or 302 in response
543 # to a POST MUST NOT cause a redirection without confirmation
Jeremy Hylton828023b2003-05-04 23:44:49 +0000544 # from the user (of urllib2, in this case). In practice,
545 # essentially all clients do redirect in this case, so we
546 # do the same.
Georg Brandlddb84d72006-03-18 11:35:18 +0000547 # be conciliant with URIs containing a space
548 newurl = newurl.replace(' ', '%20')
Facundo Batista86371d62008-02-07 19:06:52 +0000549 newheaders = dict((k,v) for k,v in req.headers.items()
550 if k.lower() not in ("content-length", "content-type")
551 )
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000552 return Request(newurl,
Facundo Batista86371d62008-02-07 19:06:52 +0000553 headers=newheaders,
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000554 origin_req_host=req.get_origin_req_host(),
555 unverifiable=True)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000556 else:
Martin v. Löwise3b67bc2003-06-14 05:51:25 +0000557 raise HTTPError(req.get_full_url(), code, msg, headers, fp)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000558
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000559 # Implementation note: To avoid the server sending us into an
560 # infinite loop, the request object needs to track what URLs we
561 # have already seen. Do this by adding a handler-specific
562 # attribute to the Request object.
563 def http_error_302(self, req, fp, code, msg, headers):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000564 # Some servers (incorrectly) return multiple Location headers
565 # (so probably same goes for URI). Use first header.
Raymond Hettinger54f02222002-06-01 14:18:47 +0000566 if 'location' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000567 newurl = headers.getheaders('location')[0]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000568 elif 'uri' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000569 newurl = headers.getheaders('uri')[0]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000570 else:
571 return
Facundo Batista94f243a2008-08-17 03:38:39 +0000572
573 # fix a possible malformed URL
574 urlparts = urlparse.urlparse(newurl)
575 if not urlparts.path:
576 urlparts = list(urlparts)
577 urlparts[2] = "/"
578 newurl = urlparse.urlunparse(urlparts)
579
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000580 newurl = urlparse.urljoin(req.get_full_url(), newurl)
581
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000582 # XXX Probably want to forget about the state of the current
583 # request, although that might interact poorly with other
584 # handlers that also use handler-specific request attributes
Jeremy Hylton03892952003-05-05 04:09:13 +0000585 new = self.redirect_request(req, fp, code, msg, headers, newurl)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000586 if new is None:
587 return
588
589 # loop detection
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000590 # .redirect_dict has a key url if url was previously visited.
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000591 if hasattr(req, 'redirect_dict'):
592 visited = new.redirect_dict = req.redirect_dict
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000593 if (visited.get(newurl, 0) >= self.max_repeats or
594 len(visited) >= self.max_redirections):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000595 raise HTTPError(req.get_full_url(), code,
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000596 self.inf_msg + msg, headers, fp)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000597 else:
598 visited = new.redirect_dict = req.redirect_dict = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000599 visited[newurl] = visited.get(newurl, 0) + 1
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000600
601 # Don't close the fp until we are sure that we won't use it
Tim Petersab9ba272001-08-09 21:40:30 +0000602 # with HTTPError.
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000603 fp.read()
604 fp.close()
605
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000606 return self.parent.open(new, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000607
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000608 http_error_301 = http_error_303 = http_error_307 = http_error_302
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000609
Martin v. Löwis162f0812003-07-12 07:33:32 +0000610 inf_msg = "The HTTP server returned a redirect error that would " \
Thomas Wouters7e474022000-07-16 12:04:32 +0000611 "lead to an infinite loop.\n" \
Martin v. Löwis162f0812003-07-12 07:33:32 +0000612 "The last 30x error message was:\n"
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000613
Georg Brandl720096a2006-04-02 20:45:34 +0000614
615def _parse_proxy(proxy):
616 """Return (scheme, user, password, host/port) given a URL or an authority.
617
618 If a URL is supplied, it must have an authority (host:port) component.
619 According to RFC 3986, having an authority component means the URL must
620 have two slashes after the scheme:
621
622 >>> _parse_proxy('file:/ftp.example.com/')
623 Traceback (most recent call last):
624 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
625
626 The first three items of the returned tuple may be None.
627
628 Examples of authority parsing:
629
630 >>> _parse_proxy('proxy.example.com')
631 (None, None, None, 'proxy.example.com')
632 >>> _parse_proxy('proxy.example.com:3128')
633 (None, None, None, 'proxy.example.com:3128')
634
635 The authority component may optionally include userinfo (assumed to be
636 username:password):
637
638 >>> _parse_proxy('joe:password@proxy.example.com')
639 (None, 'joe', 'password', 'proxy.example.com')
640 >>> _parse_proxy('joe:password@proxy.example.com:3128')
641 (None, 'joe', 'password', 'proxy.example.com:3128')
642
643 Same examples, but with URLs instead:
644
645 >>> _parse_proxy('http://proxy.example.com/')
646 ('http', None, None, 'proxy.example.com')
647 >>> _parse_proxy('http://proxy.example.com:3128/')
648 ('http', None, None, 'proxy.example.com:3128')
649 >>> _parse_proxy('http://joe:password@proxy.example.com/')
650 ('http', 'joe', 'password', 'proxy.example.com')
651 >>> _parse_proxy('http://joe:password@proxy.example.com:3128')
652 ('http', 'joe', 'password', 'proxy.example.com:3128')
653
654 Everything after the authority is ignored:
655
656 >>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
657 ('ftp', 'joe', 'password', 'proxy.example.com')
658
659 Test for no trailing '/' case:
660
661 >>> _parse_proxy('http://joe:password@proxy.example.com')
662 ('http', 'joe', 'password', 'proxy.example.com')
663
664 """
Georg Brandl720096a2006-04-02 20:45:34 +0000665 scheme, r_scheme = splittype(proxy)
666 if not r_scheme.startswith("/"):
667 # authority
668 scheme = None
669 authority = proxy
670 else:
671 # URL
672 if not r_scheme.startswith("//"):
673 raise ValueError("proxy URL with no authority: %r" % proxy)
674 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
675 # and 3.3.), path is empty or starts with '/'
676 end = r_scheme.find("/", 2)
677 if end == -1:
678 end = None
679 authority = r_scheme[2:end]
680 userinfo, hostport = splituser(authority)
681 if userinfo is not None:
682 user, password = splitpasswd(userinfo)
683 else:
684 user = password = None
685 return scheme, user, password, hostport
686
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000687class ProxyHandler(BaseHandler):
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000688 # Proxies must be in front
689 handler_order = 100
690
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000691 def __init__(self, proxies=None):
Fred Drake13a2c272000-02-10 17:17:14 +0000692 if proxies is None:
693 proxies = getproxies()
694 assert hasattr(proxies, 'has_key'), "proxies must be a mapping"
695 self.proxies = proxies
Brett Cannondf0d87a2003-05-18 02:25:07 +0000696 for type, url in proxies.items():
Tim Peterse1190062001-01-15 03:34:38 +0000697 setattr(self, '%s_open' % type,
Fred Drake13a2c272000-02-10 17:17:14 +0000698 lambda r, proxy=url, type=type, meth=self.proxy_open: \
699 meth(r, proxy, type))
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000700
701 def proxy_open(self, req, proxy, type):
Fred Drake13a2c272000-02-10 17:17:14 +0000702 orig_type = req.get_type()
Georg Brandl720096a2006-04-02 20:45:34 +0000703 proxy_type, user, password, hostport = _parse_proxy(proxy)
Senthil Kumaran27468662009-10-11 02:00:07 +0000704
Georg Brandl720096a2006-04-02 20:45:34 +0000705 if proxy_type is None:
706 proxy_type = orig_type
Senthil Kumaran27468662009-10-11 02:00:07 +0000707
708 if req.host and proxy_bypass(req.host):
709 return None
710
Georg Brandl531ceba2006-01-21 07:20:56 +0000711 if user and password:
Georg Brandl720096a2006-04-02 20:45:34 +0000712 user_pass = '%s:%s' % (unquote(user), unquote(password))
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000713 creds = base64.b64encode(user_pass).strip()
Georg Brandl8c036cc2006-08-20 13:15:39 +0000714 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl720096a2006-04-02 20:45:34 +0000715 hostport = unquote(hostport)
716 req.set_proxy(hostport, proxy_type)
Senthil Kumaran27468662009-10-11 02:00:07 +0000717
Senthil Kumarane266f252009-05-24 09:14:50 +0000718 if orig_type == proxy_type or orig_type == 'https':
Fred Drake13a2c272000-02-10 17:17:14 +0000719 # let other handlers take care of it
Fred Drake13a2c272000-02-10 17:17:14 +0000720 return None
721 else:
722 # need to start over, because the other handlers don't
723 # grok the proxy's URL type
Georg Brandl720096a2006-04-02 20:45:34 +0000724 # e.g. if we have a constructor arg proxies like so:
725 # {'http': 'ftp://proxy.example.com'}, we may end up turning
726 # a request for http://acme.example.com/a into one for
727 # ftp://proxy.example.com/a
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000728 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000729
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000730class HTTPPasswordMgr:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000731
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000732 def __init__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000733 self.passwd = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000734
735 def add_password(self, realm, uri, user, passwd):
Fred Drake13a2c272000-02-10 17:17:14 +0000736 # uri could be a single URI or a sequence
Walter Dörwald65230a22002-06-03 15:58:32 +0000737 if isinstance(uri, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000738 uri = [uri]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000739 if not realm in self.passwd:
Fred Drake13a2c272000-02-10 17:17:14 +0000740 self.passwd[realm] = {}
Georg Brandl2b330372006-05-28 20:23:12 +0000741 for default_port in True, False:
742 reduced_uri = tuple(
743 [self.reduce_uri(u, default_port) for u in uri])
744 self.passwd[realm][reduced_uri] = (user, passwd)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000745
746 def find_user_password(self, realm, authuri):
Fred Drake13a2c272000-02-10 17:17:14 +0000747 domains = self.passwd.get(realm, {})
Georg Brandl2b330372006-05-28 20:23:12 +0000748 for default_port in True, False:
749 reduced_authuri = self.reduce_uri(authuri, default_port)
750 for uris, authinfo in domains.iteritems():
751 for uri in uris:
752 if self.is_suburi(uri, reduced_authuri):
753 return authinfo
Fred Drake13a2c272000-02-10 17:17:14 +0000754 return None, None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000755
Georg Brandl2b330372006-05-28 20:23:12 +0000756 def reduce_uri(self, uri, default_port=True):
757 """Accept authority or URI and extract only the authority and path."""
758 # note HTTP URLs do not have a userinfo component
Georg Brandlfa42bd72006-04-30 07:06:11 +0000759 parts = urlparse.urlsplit(uri)
Fred Drake13a2c272000-02-10 17:17:14 +0000760 if parts[1]:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000761 # URI
Georg Brandl2b330372006-05-28 20:23:12 +0000762 scheme = parts[0]
763 authority = parts[1]
764 path = parts[2] or '/'
Fred Drake13a2c272000-02-10 17:17:14 +0000765 else:
Georg Brandl2b330372006-05-28 20:23:12 +0000766 # host or host:port
767 scheme = None
768 authority = uri
769 path = '/'
770 host, port = splitport(authority)
771 if default_port and port is None and scheme is not None:
772 dport = {"http": 80,
773 "https": 443,
774 }.get(scheme)
775 if dport is not None:
776 authority = "%s:%d" % (host, dport)
777 return authority, path
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000778
779 def is_suburi(self, base, test):
Fred Drake13a2c272000-02-10 17:17:14 +0000780 """Check if test is below base in a URI tree
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000781
Fred Drake13a2c272000-02-10 17:17:14 +0000782 Both args must be URIs in reduced form.
783 """
784 if base == test:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000785 return True
Fred Drake13a2c272000-02-10 17:17:14 +0000786 if base[0] != test[0]:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000787 return False
Moshe Zadka8a18e992001-03-01 08:40:42 +0000788 common = posixpath.commonprefix((base[1], test[1]))
Fred Drake13a2c272000-02-10 17:17:14 +0000789 if len(common) == len(base[1]):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000790 return True
791 return False
Tim Peterse1190062001-01-15 03:34:38 +0000792
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000793
Moshe Zadka8a18e992001-03-01 08:40:42 +0000794class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
795
796 def find_user_password(self, realm, authuri):
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000797 user, password = HTTPPasswordMgr.find_user_password(self, realm,
798 authuri)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000799 if user is not None:
800 return user, password
801 return HTTPPasswordMgr.find_user_password(self, None, authuri)
802
803
804class AbstractBasicAuthHandler:
805
Georg Brandl172e7252007-03-07 07:39:06 +0000806 # XXX this allows for multiple auth-schemes, but will stupidly pick
807 # the last one with a realm specified.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000808
Georg Brandl33124322008-03-21 19:54:00 +0000809 # allow for double- and single-quoted realm values
810 # (single quotes are a violation of the RFC, but appear in the wild)
811 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
812 'realm=(["\'])(.*?)\\2', re.I)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000813
Georg Brandl261e2512006-05-29 20:52:54 +0000814 # XXX could pre-emptively send auth info already accepted (RFC 2617,
815 # end of section 2, and section 1.2 immediately after "credentials"
816 # production).
817
Moshe Zadka8a18e992001-03-01 08:40:42 +0000818 def __init__(self, password_mgr=None):
819 if password_mgr is None:
820 password_mgr = HTTPPasswordMgr()
821 self.passwd = password_mgr
Fred Drake13a2c272000-02-10 17:17:14 +0000822 self.add_password = self.passwd.add_password
Senthil Kumaran4f0108b2010-06-01 12:40:07 +0000823 self.retried = 0
Tim Peterse1190062001-01-15 03:34:38 +0000824
Moshe Zadka8a18e992001-03-01 08:40:42 +0000825 def http_error_auth_reqed(self, authreq, host, req, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000826 # host may be an authority (without userinfo) or a URL with an
827 # authority
Moshe Zadka8a18e992001-03-01 08:40:42 +0000828 # XXX could be multiple headers
829 authreq = headers.get(authreq, None)
Senthil Kumaran4f0108b2010-06-01 12:40:07 +0000830
831 if self.retried > 5:
832 # retry sending the username:password 5 times before failing.
833 raise HTTPError(req.get_full_url(), 401, "basic auth failed",
834 headers, None)
835 else:
836 self.retried += 1
837
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000838 if authreq:
Martin v. Löwis65a79752004-08-03 12:59:55 +0000839 mo = AbstractBasicAuthHandler.rx.search(authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000840 if mo:
Georg Brandl33124322008-03-21 19:54:00 +0000841 scheme, quote, realm = mo.groups()
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000842 if scheme.lower() == 'basic':
Moshe Zadka8a18e992001-03-01 08:40:42 +0000843 return self.retry_http_basic_auth(host, req, realm)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000844
Moshe Zadka8a18e992001-03-01 08:40:42 +0000845 def retry_http_basic_auth(self, host, req, realm):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000846 user, pw = self.passwd.find_user_password(realm, host)
Martin v. Löwis8b3e8712004-05-06 01:41:26 +0000847 if pw is not None:
Fred Drake13a2c272000-02-10 17:17:14 +0000848 raw = "%s:%s" % (user, pw)
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000849 auth = 'Basic %s' % base64.b64encode(raw).strip()
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000850 if req.headers.get(self.auth_header, None) == auth:
851 return None
Senthil Kumaran8526adf2010-02-24 16:45:46 +0000852 req.add_unredirected_header(self.auth_header, auth)
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000853 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000854 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000855 return None
856
Georg Brandlfa42bd72006-04-30 07:06:11 +0000857
Moshe Zadka8a18e992001-03-01 08:40:42 +0000858class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000859
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000860 auth_header = 'Authorization'
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000861
Moshe Zadka8a18e992001-03-01 08:40:42 +0000862 def http_error_401(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000863 url = req.get_full_url()
Tim Peters30edd232001-03-16 08:29:48 +0000864 return self.http_error_auth_reqed('www-authenticate',
Georg Brandlfa42bd72006-04-30 07:06:11 +0000865 url, req, headers)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000866
867
868class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
869
Georg Brandl8c036cc2006-08-20 13:15:39 +0000870 auth_header = 'Proxy-authorization'
Moshe Zadka8a18e992001-03-01 08:40:42 +0000871
872 def http_error_407(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000873 # http_error_auth_reqed requires that there is no userinfo component in
874 # authority. Assume there isn't one, since urllib2 does not (and
875 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
876 # userinfo.
877 authority = req.get_host()
Tim Peters30edd232001-03-16 08:29:48 +0000878 return self.http_error_auth_reqed('proxy-authenticate',
Georg Brandlfa42bd72006-04-30 07:06:11 +0000879 authority, req, headers)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000880
881
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000882def randombytes(n):
883 """Return n random bytes."""
884 # Use /dev/urandom if it is available. Fall back to random module
885 # if not. It might be worthwhile to extend this function to use
886 # other platform-specific mechanisms for getting random bytes.
887 if os.path.exists("/dev/urandom"):
888 f = open("/dev/urandom")
889 s = f.read(n)
890 f.close()
891 return s
892 else:
893 L = [chr(random.randrange(0, 256)) for i in range(n)]
894 return "".join(L)
895
Moshe Zadka8a18e992001-03-01 08:40:42 +0000896class AbstractDigestAuthHandler:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000897 # Digest authentication is specified in RFC 2617.
898
899 # XXX The client does not inspect the Authentication-Info header
900 # in a successful response.
901
902 # XXX It should be possible to test this implementation against
903 # a mock server that just generates a static set of challenges.
904
905 # XXX qop="auth-int" supports is shaky
Moshe Zadka8a18e992001-03-01 08:40:42 +0000906
907 def __init__(self, passwd=None):
908 if passwd is None:
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000909 passwd = HTTPPasswordMgr()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000910 self.passwd = passwd
Fred Drake13a2c272000-02-10 17:17:14 +0000911 self.add_password = self.passwd.add_password
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000912 self.retried = 0
913 self.nonce_count = 0
Senthil Kumaran20eb4f02009-11-15 08:36:20 +0000914 self.last_nonce = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000915
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000916 def reset_retry_count(self):
917 self.retried = 0
918
919 def http_error_auth_reqed(self, auth_header, host, req, headers):
920 authreq = headers.get(auth_header, None)
921 if self.retried > 5:
922 # Don't fail endlessly - if we failed once, we'll probably
923 # fail a second time. Hm. Unless the Password Manager is
924 # prompting for the information. Crap. This isn't great
925 # but it's better than the current 'repeat until recursion
926 # depth exceeded' approach <wink>
Tim Peters58eb11c2004-01-18 20:29:55 +0000927 raise HTTPError(req.get_full_url(), 401, "digest auth failed",
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000928 headers, None)
929 else:
930 self.retried += 1
Fred Drake13a2c272000-02-10 17:17:14 +0000931 if authreq:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000932 scheme = authreq.split()[0]
933 if scheme.lower() == 'digest':
Fred Drake13a2c272000-02-10 17:17:14 +0000934 return self.retry_http_digest_auth(req, authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000935
936 def retry_http_digest_auth(self, req, auth):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000937 token, challenge = auth.split(' ', 1)
Fred Drake13a2c272000-02-10 17:17:14 +0000938 chal = parse_keqv_list(parse_http_list(challenge))
939 auth = self.get_authorization(req, chal)
940 if auth:
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000941 auth_val = 'Digest %s' % auth
942 if req.headers.get(self.auth_header, None) == auth_val:
943 return None
Georg Brandl852bb002006-05-03 05:05:02 +0000944 req.add_unredirected_header(self.auth_header, auth_val)
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000945 resp = self.parent.open(req, timeout=req.timeout)
Fred Drake13a2c272000-02-10 17:17:14 +0000946 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000947
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000948 def get_cnonce(self, nonce):
949 # The cnonce-value is an opaque
950 # quoted string value provided by the client and used by both client
951 # and server to avoid chosen plaintext attacks, to provide mutual
952 # authentication, and to provide some message integrity protection.
953 # This isn't a fabulous effort, but it's probably Good Enough.
Georg Brandlbffb0bc2006-04-30 08:57:35 +0000954 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
955 randombytes(8))).hexdigest()
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000956 return dig[:16]
957
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000958 def get_authorization(self, req, chal):
Fred Drake13a2c272000-02-10 17:17:14 +0000959 try:
960 realm = chal['realm']
961 nonce = chal['nonce']
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000962 qop = chal.get('qop')
Fred Drake13a2c272000-02-10 17:17:14 +0000963 algorithm = chal.get('algorithm', 'MD5')
964 # mod_digest doesn't send an opaque, even though it isn't
965 # supposed to be optional
966 opaque = chal.get('opaque', None)
967 except KeyError:
968 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000969
Fred Drake13a2c272000-02-10 17:17:14 +0000970 H, KD = self.get_algorithm_impls(algorithm)
971 if H is None:
972 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000973
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000974 user, pw = self.passwd.find_user_password(realm, req.get_full_url())
Fred Drake13a2c272000-02-10 17:17:14 +0000975 if user is None:
976 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000977
Fred Drake13a2c272000-02-10 17:17:14 +0000978 # XXX not implemented yet
979 if req.has_data():
980 entdig = self.get_entity_digest(req.get_data(), chal)
981 else:
982 entdig = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000983
Fred Drake13a2c272000-02-10 17:17:14 +0000984 A1 = "%s:%s:%s" % (user, realm, pw)
Johannes Gijsberscdd625a2005-01-09 05:51:49 +0000985 A2 = "%s:%s" % (req.get_method(),
Fred Drake13a2c272000-02-10 17:17:14 +0000986 # XXX selector: what about proxies and full urls
987 req.get_selector())
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000988 if qop == 'auth':
Senthil Kumaran20eb4f02009-11-15 08:36:20 +0000989 if nonce == self.last_nonce:
990 self.nonce_count += 1
991 else:
992 self.nonce_count = 1
993 self.last_nonce = nonce
994
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000995 ncvalue = '%08x' % self.nonce_count
996 cnonce = self.get_cnonce(nonce)
997 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
998 respdig = KD(H(A1), noncebit)
999 elif qop is None:
1000 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1001 else:
1002 # XXX handle auth-int.
Georg Brandlff871222007-06-07 13:34:10 +00001003 raise URLError("qop '%s' is not supported." % qop)
Tim Peters58eb11c2004-01-18 20:29:55 +00001004
Fred Drake13a2c272000-02-10 17:17:14 +00001005 # XXX should the partial digests be encoded too?
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001006
Fred Drake13a2c272000-02-10 17:17:14 +00001007 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
1008 'response="%s"' % (user, realm, nonce, req.get_selector(),
1009 respdig)
1010 if opaque:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001011 base += ', opaque="%s"' % opaque
Fred Drake13a2c272000-02-10 17:17:14 +00001012 if entdig:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001013 base += ', digest="%s"' % entdig
1014 base += ', algorithm="%s"' % algorithm
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001015 if qop:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001016 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
Fred Drake13a2c272000-02-10 17:17:14 +00001017 return base
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001018
1019 def get_algorithm_impls(self, algorithm):
Georg Brandl8d66dcd2008-05-04 21:40:44 +00001020 # algorithm should be case-insensitive according to RFC2617
1021 algorithm = algorithm.upper()
Fred Drake13a2c272000-02-10 17:17:14 +00001022 # lambdas assume digest modules are imported at the top level
1023 if algorithm == 'MD5':
Georg Brandlbffb0bc2006-04-30 08:57:35 +00001024 H = lambda x: hashlib.md5(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +00001025 elif algorithm == 'SHA':
Georg Brandlbffb0bc2006-04-30 08:57:35 +00001026 H = lambda x: hashlib.sha1(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +00001027 # XXX MD5-sess
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001028 KD = lambda s, d: H("%s:%s" % (s, d))
Fred Drake13a2c272000-02-10 17:17:14 +00001029 return H, KD
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001030
1031 def get_entity_digest(self, data, chal):
Fred Drake13a2c272000-02-10 17:17:14 +00001032 # XXX not implemented yet
1033 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001034
Moshe Zadka8a18e992001-03-01 08:40:42 +00001035
1036class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1037 """An authentication protocol defined by RFC 2069
1038
1039 Digest authentication improves on basic authentication because it
1040 does not transmit passwords in the clear.
1041 """
1042
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001043 auth_header = 'Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001044 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001045
1046 def http_error_401(self, req, fp, code, msg, headers):
1047 host = urlparse.urlparse(req.get_full_url())[1]
Tim Peters58eb11c2004-01-18 20:29:55 +00001048 retry = self.http_error_auth_reqed('www-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001049 host, req, headers)
1050 self.reset_retry_count()
1051 return retry
Moshe Zadka8a18e992001-03-01 08:40:42 +00001052
1053
1054class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1055
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001056 auth_header = 'Proxy-Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001057 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001058
1059 def http_error_407(self, req, fp, code, msg, headers):
1060 host = req.get_host()
Tim Peters58eb11c2004-01-18 20:29:55 +00001061 retry = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001062 host, req, headers)
1063 self.reset_retry_count()
1064 return retry
Tim Peterse1190062001-01-15 03:34:38 +00001065
Moshe Zadka8a18e992001-03-01 08:40:42 +00001066class AbstractHTTPHandler(BaseHandler):
1067
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001068 def __init__(self, debuglevel=0):
1069 self._debuglevel = debuglevel
1070
1071 def set_http_debuglevel(self, level):
1072 self._debuglevel = level
1073
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001074 def do_request_(self, request):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001075 host = request.get_host()
1076 if not host:
1077 raise URLError('no host given')
1078
1079 if request.has_data(): # POST
1080 data = request.get_data()
Georg Brandl8c036cc2006-08-20 13:15:39 +00001081 if not request.has_header('Content-type'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001082 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001083 'Content-type',
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001084 'application/x-www-form-urlencoded')
Georg Brandl8c036cc2006-08-20 13:15:39 +00001085 if not request.has_header('Content-length'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001086 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001087 'Content-length', '%d' % len(data))
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001088
Facundo Batistaeb90b782008-08-16 14:44:07 +00001089 sel_host = host
1090 if request.has_proxy():
1091 scheme, sel = splittype(request.get_selector())
1092 sel_host, sel_path = splithost(sel)
1093
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001094 if not request.has_header('Host'):
Facundo Batistaeb90b782008-08-16 14:44:07 +00001095 request.add_unredirected_header('Host', sel_host)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001096 for name, value in self.parent.addheaders:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001097 name = name.capitalize()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001098 if not request.has_header(name):
1099 request.add_unredirected_header(name, value)
1100
1101 return request
1102
Moshe Zadka8a18e992001-03-01 08:40:42 +00001103 def do_open(self, http_class, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001104 """Return an addinfourl object for the request, using http_class.
1105
1106 http_class must implement the HTTPConnection API from httplib.
1107 The addinfourl return value is a file-like object. It also
1108 has methods and attributes including:
1109 - info(): return a mimetools.Message object for the headers
1110 - geturl(): return the original request URL
1111 - code: HTTP status code
1112 """
Moshe Zadka76676802001-04-11 07:44:53 +00001113 host = req.get_host()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001114 if not host:
1115 raise URLError('no host given')
1116
Facundo Batista10951d52007-06-06 17:15:23 +00001117 h = http_class(host, timeout=req.timeout) # will parse host:port
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001118 h.set_debuglevel(self._debuglevel)
Tim Peterse1190062001-01-15 03:34:38 +00001119
Jeremy Hylton023518a2003-12-17 18:52:16 +00001120 headers = dict(req.headers)
1121 headers.update(req.unredirected_hdrs)
Jeremy Hyltonb3ee6f92004-02-24 19:40:35 +00001122 # We want to make an HTTP/1.1 request, but the addinfourl
1123 # class isn't prepared to deal with a persistent connection.
1124 # It will try to read all remaining data from the socket,
1125 # which will block while the server waits for the next request.
1126 # So make sure the connection gets closed after the (only)
1127 # request.
1128 headers["Connection"] = "close"
Georg Brandl8c036cc2006-08-20 13:15:39 +00001129 headers = dict(
1130 (name.title(), val) for name, val in headers.items())
Senthil Kumarane266f252009-05-24 09:14:50 +00001131
1132 if req._tunnel_host:
Senthil Kumaran7713acf2009-12-20 06:05:13 +00001133 tunnel_headers = {}
1134 proxy_auth_hdr = "Proxy-Authorization"
1135 if proxy_auth_hdr in headers:
1136 tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1137 # Proxy-Authorization should not be sent to origin
1138 # server.
1139 del headers[proxy_auth_hdr]
1140 h.set_tunnel(req._tunnel_host, headers=tunnel_headers)
Senthil Kumarane266f252009-05-24 09:14:50 +00001141
Jeremy Hylton828023b2003-05-04 23:44:49 +00001142 try:
Jeremy Hylton023518a2003-12-17 18:52:16 +00001143 h.request(req.get_method(), req.get_selector(), req.data, headers)
Kristján Valur Jónsson3c43fcb2009-01-11 16:23:37 +00001144 try:
1145 r = h.getresponse(buffering=True)
1146 except TypeError: #buffering kw not supported
1147 r = h.getresponse()
Jeremy Hylton023518a2003-12-17 18:52:16 +00001148 except socket.error, err: # XXX what error?
Jeremy Hylton828023b2003-05-04 23:44:49 +00001149 raise URLError(err)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001150
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001151 # Pick apart the HTTPResponse object to get the addinfourl
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001152 # object initialized properly.
1153
1154 # Wrap the HTTPResponse object in socket's file object adapter
1155 # for Windows. That adapter calls recv(), so delegate recv()
1156 # to read(). This weird wrapping allows the returned object to
1157 # have readline() and readlines() methods.
Tim Peters9ca3f852004-08-08 01:05:14 +00001158
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001159 # XXX It might be better to extract the read buffering code
1160 # out of socket._fileobject() and into a base class.
Tim Peters9ca3f852004-08-08 01:05:14 +00001161
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001162 r.recv = r.read
Georg Brandldd7b0522007-01-21 10:35:10 +00001163 fp = socket._fileobject(r, close=True)
Tim Peters9ca3f852004-08-08 01:05:14 +00001164
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001165 resp = addinfourl(fp, r.msg, req.get_full_url())
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001166 resp.code = r.status
1167 resp.msg = r.reason
1168 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001169
Moshe Zadka8a18e992001-03-01 08:40:42 +00001170
1171class HTTPHandler(AbstractHTTPHandler):
1172
1173 def http_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001174 return self.do_open(httplib.HTTPConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001175
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001176 http_request = AbstractHTTPHandler.do_request_
Moshe Zadka8a18e992001-03-01 08:40:42 +00001177
1178if hasattr(httplib, 'HTTPS'):
1179 class HTTPSHandler(AbstractHTTPHandler):
1180
1181 def https_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001182 return self.do_open(httplib.HTTPSConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001183
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001184 https_request = AbstractHTTPHandler.do_request_
1185
1186class HTTPCookieProcessor(BaseHandler):
1187 def __init__(self, cookiejar=None):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001188 import cookielib
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001189 if cookiejar is None:
Neal Norwitz1cdd3632004-06-07 03:49:50 +00001190 cookiejar = cookielib.CookieJar()
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001191 self.cookiejar = cookiejar
1192
1193 def http_request(self, request):
1194 self.cookiejar.add_cookie_header(request)
1195 return request
1196
1197 def http_response(self, request, response):
1198 self.cookiejar.extract_cookies(response, request)
1199 return response
1200
1201 https_request = http_request
1202 https_response = http_response
Moshe Zadka8a18e992001-03-01 08:40:42 +00001203
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001204class UnknownHandler(BaseHandler):
1205 def unknown_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001206 type = req.get_type()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001207 raise URLError('unknown url type: %s' % type)
1208
1209def parse_keqv_list(l):
1210 """Parse list of key=value strings where keys are not duplicated."""
1211 parsed = {}
1212 for elt in l:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001213 k, v = elt.split('=', 1)
Fred Drake13a2c272000-02-10 17:17:14 +00001214 if v[0] == '"' and v[-1] == '"':
1215 v = v[1:-1]
1216 parsed[k] = v
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001217 return parsed
1218
1219def parse_http_list(s):
1220 """Parse lists as described by RFC 2068 Section 2.
Tim Peters9e34c042005-08-26 15:20:46 +00001221
Andrew M. Kuchling22ab06e2004-04-06 19:43:03 +00001222 In particular, parse comma-separated lists where the elements of
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001223 the list may include quoted-strings. A quoted-string could
Georg Brandle1b13d22005-08-24 22:20:32 +00001224 contain a comma. A non-quoted string could have quotes in the
1225 middle. Neither commas nor quotes count if they are escaped.
1226 Only double-quotes count, not single-quotes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001227 """
Georg Brandle1b13d22005-08-24 22:20:32 +00001228 res = []
1229 part = ''
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001230
Georg Brandle1b13d22005-08-24 22:20:32 +00001231 escape = quote = False
1232 for cur in s:
1233 if escape:
1234 part += cur
1235 escape = False
1236 continue
1237 if quote:
1238 if cur == '\\':
1239 escape = True
Fred Drake13a2c272000-02-10 17:17:14 +00001240 continue
Georg Brandle1b13d22005-08-24 22:20:32 +00001241 elif cur == '"':
1242 quote = False
1243 part += cur
1244 continue
1245
1246 if cur == ',':
1247 res.append(part)
1248 part = ''
1249 continue
1250
1251 if cur == '"':
1252 quote = True
Tim Peters9e34c042005-08-26 15:20:46 +00001253
Georg Brandle1b13d22005-08-24 22:20:32 +00001254 part += cur
1255
1256 # append last part
1257 if part:
1258 res.append(part)
1259
1260 return [part.strip() for part in res]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001261
1262class FileHandler(BaseHandler):
1263 # Use local file or FTP depending on form of URL
1264 def file_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001265 url = req.get_selector()
Senthil Kumaran87ed31a2010-07-11 03:18:51 +00001266 if url[:2] == '//' and url[2:3] != '/' and (req.host and
1267 req.host != 'localhost'):
Fred Drake13a2c272000-02-10 17:17:14 +00001268 req.type = 'ftp'
1269 return self.parent.open(req)
1270 else:
1271 return self.open_local_file(req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001272
1273 # names for the localhost
1274 names = None
1275 def get_names(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001276 if FileHandler.names is None:
Georg Brandl4eb521e2006-04-02 20:37:17 +00001277 try:
Senthil Kumaran13c2ef92009-12-27 09:11:09 +00001278 FileHandler.names = tuple(
1279 socket.gethostbyname_ex('localhost')[2] +
1280 socket.gethostbyname_ex(socket.gethostname())[2])
Georg Brandl4eb521e2006-04-02 20:37:17 +00001281 except socket.gaierror:
1282 FileHandler.names = (socket.gethostbyname('localhost'),)
Fred Drake13a2c272000-02-10 17:17:14 +00001283 return FileHandler.names
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001284
1285 # not entirely sure what the rules are here
1286 def open_local_file(self, req):
Georg Brandl5a096e12007-01-22 19:40:21 +00001287 import email.utils
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001288 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001289 host = req.get_host()
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001290 filename = req.get_selector()
1291 localfile = url2pathname(filename)
Georg Brandlceede5c2007-03-13 08:14:27 +00001292 try:
1293 stats = os.stat(localfile)
1294 size = stats.st_size
1295 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001296 mtype = mimetypes.guess_type(filename)[0]
Georg Brandlceede5c2007-03-13 08:14:27 +00001297 headers = mimetools.Message(StringIO(
1298 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1299 (mtype or 'text/plain', size, modified)))
1300 if host:
1301 host, port = splitport(host)
1302 if not host or \
1303 (not port and socket.gethostbyname(host) in self.get_names()):
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001304 if host:
1305 origurl = 'file://' + host + filename
1306 else:
1307 origurl = 'file://' + filename
1308 return addinfourl(open(localfile, 'rb'), headers, origurl)
Georg Brandlceede5c2007-03-13 08:14:27 +00001309 except OSError, msg:
1310 # urllib2 users shouldn't expect OSErrors coming from urlopen()
1311 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001312 raise URLError('file not on local host')
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001313
1314class FTPHandler(BaseHandler):
1315 def ftp_open(self, req):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001316 import ftplib
1317 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001318 host = req.get_host()
1319 if not host:
Neal Norwitz70700942008-01-24 07:40:51 +00001320 raise URLError('ftp error: no host given')
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001321 host, port = splitport(host)
1322 if port is None:
1323 port = ftplib.FTP_PORT
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001324 else:
1325 port = int(port)
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001326
1327 # username/password handling
1328 user, host = splituser(host)
1329 if user:
1330 user, passwd = splitpasswd(user)
1331 else:
1332 passwd = None
1333 host = unquote(host)
1334 user = unquote(user or '')
1335 passwd = unquote(passwd or '')
1336
Jeremy Hylton73574ee2000-10-12 18:54:18 +00001337 try:
1338 host = socket.gethostbyname(host)
1339 except socket.error, msg:
1340 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001341 path, attrs = splitattr(req.get_selector())
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001342 dirs = path.split('/')
Martin v. Löwis7db04e72004-02-15 20:51:39 +00001343 dirs = map(unquote, dirs)
Fred Drake13a2c272000-02-10 17:17:14 +00001344 dirs, file = dirs[:-1], dirs[-1]
1345 if dirs and not dirs[0]:
1346 dirs = dirs[1:]
Fred Drake13a2c272000-02-10 17:17:14 +00001347 try:
Facundo Batista10951d52007-06-06 17:15:23 +00001348 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
Fred Drake13a2c272000-02-10 17:17:14 +00001349 type = file and 'I' or 'D'
1350 for attr in attrs:
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001351 attr, value = splitvalue(attr)
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001352 if attr.lower() == 'type' and \
Fred Drake13a2c272000-02-10 17:17:14 +00001353 value in ('a', 'A', 'i', 'I', 'd', 'D'):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001354 type = value.upper()
Fred Drake13a2c272000-02-10 17:17:14 +00001355 fp, retrlen = fw.retrfile(file, type)
Guido van Rossum833a8d82001-08-24 13:10:13 +00001356 headers = ""
1357 mtype = mimetypes.guess_type(req.get_full_url())[0]
1358 if mtype:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001359 headers += "Content-type: %s\n" % mtype
Fred Drake13a2c272000-02-10 17:17:14 +00001360 if retrlen is not None and retrlen >= 0:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001361 headers += "Content-length: %d\n" % retrlen
Guido van Rossum833a8d82001-08-24 13:10:13 +00001362 sf = StringIO(headers)
1363 headers = mimetools.Message(sf)
Fred Drake13a2c272000-02-10 17:17:14 +00001364 return addinfourl(fp, headers, req.get_full_url())
1365 except ftplib.all_errors, msg:
Neal Norwitz70700942008-01-24 07:40:51 +00001366 raise URLError, ('ftp error: %s' % msg), sys.exc_info()[2]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001367
Facundo Batista10951d52007-06-06 17:15:23 +00001368 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1369 fw = ftpwrapper(user, passwd, host, port, dirs, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001370## fw.ftp.set_debuglevel(1)
1371 return fw
1372
1373class CacheFTPHandler(FTPHandler):
1374 # XXX would be nice to have pluggable cache strategies
1375 # XXX this stuff is definitely not thread safe
1376 def __init__(self):
1377 self.cache = {}
1378 self.timeout = {}
1379 self.soonest = 0
1380 self.delay = 60
Fred Drake13a2c272000-02-10 17:17:14 +00001381 self.max_conns = 16
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001382
1383 def setTimeout(self, t):
1384 self.delay = t
1385
1386 def setMaxConns(self, m):
Fred Drake13a2c272000-02-10 17:17:14 +00001387 self.max_conns = m
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001388
Facundo Batista10951d52007-06-06 17:15:23 +00001389 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1390 key = user, host, port, '/'.join(dirs), timeout
Raymond Hettinger54f02222002-06-01 14:18:47 +00001391 if key in self.cache:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001392 self.timeout[key] = time.time() + self.delay
1393 else:
Facundo Batista10951d52007-06-06 17:15:23 +00001394 self.cache[key] = ftpwrapper(user, passwd, host, port, dirs, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001395 self.timeout[key] = time.time() + self.delay
Fred Drake13a2c272000-02-10 17:17:14 +00001396 self.check_cache()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001397 return self.cache[key]
1398
1399 def check_cache(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001400 # first check for old ones
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001401 t = time.time()
1402 if self.soonest <= t:
Raymond Hettinger4ec4fa22003-05-23 08:51:51 +00001403 for k, v in self.timeout.items():
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001404 if v < t:
1405 self.cache[k].close()
1406 del self.cache[k]
1407 del self.timeout[k]
1408 self.soonest = min(self.timeout.values())
1409
1410 # then check the size
Fred Drake13a2c272000-02-10 17:17:14 +00001411 if len(self.cache) == self.max_conns:
Brett Cannonc8b188a2003-05-17 19:51:26 +00001412 for k, v in self.timeout.items():
Fred Drake13a2c272000-02-10 17:17:14 +00001413 if v == self.soonest:
1414 del self.cache[k]
1415 del self.timeout[k]
1416 break
1417 self.soonest = min(self.timeout.values())