blob: 121685c0a8dae48c174023552f8ed901adfecb3f [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:
Tim Petersea5962f2007-03-12 18:07:52 +000033OpenerDirector --
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000034
Facundo Batistaca90ca82007-03-05 16:31:54 +000035Request -- An object that encapsulates the state of a request. The
36state can be as simple as the URL. It can also include extra HTTP
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000037headers, e.g. a User-Agent.
38
39BaseHandler --
40
41exceptions:
Facundo Batistaca90ca82007-03-05 16:31:54 +000042URLError -- A subclass of IOError, individual protocols have their own
43specific subclass.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000044
Facundo Batistaca90ca82007-03-05 16:31:54 +000045HTTPError -- Also a valid HTTP response, so you can treat an HTTP error
46as an exceptional event or valid response.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000047
48internals:
49BaseHandler and parent
50_call_chain conventions
51
52Example usage:
53
54import urllib2
55
56# set up authentication info
57authinfo = urllib2.HTTPBasicAuthHandler()
Neal Norwitz8eea9ac2007-04-24 04:53:12 +000058authinfo.add_password(realm='PDQ Application',
59 uri='https://mahler:8092/site-updates.py',
60 user='klem',
61 passwd='geheim$parole')
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000062
Moshe Zadka8a18e992001-03-01 08:40:42 +000063proxy_support = urllib2.ProxyHandler({"http" : "http://ahad-haam:3128"})
64
Tim Peterse1190062001-01-15 03:34:38 +000065# build a new opener that adds authentication and caching FTP handlers
Moshe Zadka8a18e992001-03-01 08:40:42 +000066opener = urllib2.build_opener(proxy_support, authinfo, urllib2.CacheFTPHandler)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000067
68# install it
69urllib2.install_opener(opener)
70
71f = urllib2.urlopen('http://www.python.org/')
72
73
74"""
75
76# XXX issues:
77# If an authentication error handler that tries to perform
Fred Draked5214b02001-11-08 17:19:29 +000078# authentication for some reason but fails, how should the error be
79# signalled? The client needs to know the HTTP error code. But if
80# the handler knows that the problem was, e.g., that it didn't know
81# that hash algo that requested in the challenge, it would be good to
82# pass that information along to the client, too.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000083# ftp errors aren't handled cleanly
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000084# check digest against correct (i.e. non-apache) implementation
85
Georg Brandlc5ffd912006-04-02 20:48:11 +000086# Possible extensions:
87# complex proxies XXX not sure what exactly was meant by this
88# abstract factory for opener
89
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +000090import base64
Georg Brandlbffb0bc2006-04-30 08:57:35 +000091import hashlib
Georg Brandl9d6da3e2006-05-17 15:17:00 +000092import httplib
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000093import mimetools
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +000094import os
95import posixpath
96import random
97import re
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +000098import socket
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +000099import sys
100import time
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000101import urlparse
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000102import bisect
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000103
104try:
105 from cStringIO import StringIO
106except ImportError:
107 from StringIO import StringIO
108
Georg Brandl7fff58c2006-04-02 21:13:13 +0000109from urllib import (unwrap, unquote, splittype, splithost, quote,
Brett Cannond75f0432007-05-16 22:42:29 +0000110 addinfourl, splitport, splitquery,
Andrew M. Kuchling33ad28b2004-08-31 11:38:12 +0000111 splitattr, ftpwrapper, noheaders, splituser, splitpasswd, splitvalue)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000112
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000113# support for FileHandler, proxies via environment variables
114from urllib import localhost, url2pathname, getproxies
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000115
Georg Brandl720096a2006-04-02 20:45:34 +0000116# used in User-Agent header sent
117__version__ = sys.version[:3]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000118
119_opener = None
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000120def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000121 global _opener
122 if _opener is None:
123 _opener = build_opener()
Facundo Batista10951d52007-06-06 17:15:23 +0000124 return _opener.open(url, data, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000125
126def install_opener(opener):
127 global _opener
128 _opener = opener
129
130# do these error classes make sense?
Tim Peterse1190062001-01-15 03:34:38 +0000131# make sure all of the IOError stuff is overridden. we just want to be
Fred Drakea87a5212002-08-13 13:59:55 +0000132# subtypes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000133
134class URLError(IOError):
135 # URLError is a sub-type of IOError, but it doesn't share any of
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000136 # the implementation. need to override __init__ and __str__.
137 # It sets self.args for compatibility with other EnvironmentError
138 # subclasses, but args doesn't have the typical format with errno in
139 # slot 0 and strerror in slot 1. This may be better than nothing.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000140 def __init__(self, reason):
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000141 self.args = reason,
Fred Drake13a2c272000-02-10 17:17:14 +0000142 self.reason = reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000143
144 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000145 return '<urlopen error %s>' % self.reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000146
147class HTTPError(URLError, addinfourl):
148 """Raised when HTTP error occurs, but also acts like non-error return"""
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000149 __super_init = addinfourl.__init__
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000150
151 def __init__(self, url, code, msg, hdrs, fp):
Fred Drake13a2c272000-02-10 17:17:14 +0000152 self.code = code
153 self.msg = msg
154 self.hdrs = hdrs
155 self.fp = fp
Fred Drake13a2c272000-02-10 17:17:14 +0000156 self.filename = url
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000157 # The addinfourl classes depend on fp being a valid file
158 # object. In some cases, the HTTPError may not have a valid
159 # file object. If this happens, the simplest workaround is to
Tim Petersc411dba2002-07-16 21:35:23 +0000160 # not initialize the base classes.
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000161 if fp is not None:
Georg Brandl99bb5f32008-04-09 17:57:38 +0000162 self.__super_init(fp, hdrs, url, code)
Tim Peterse1190062001-01-15 03:34:38 +0000163
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000164 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000165 return 'HTTP Error %s: %s' % (self.code, self.msg)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000166
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000167# copied from cookielib.py
Neal Norwitzb678ce52006-05-18 06:51:46 +0000168_cut_port_re = re.compile(r":\d+$")
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000169def request_host(request):
170 """Return request-host, as defined by RFC 2965.
171
172 Variation from RFC: returned value is lowercased, for convenient
173 comparison.
174
175 """
176 url = request.get_full_url()
177 host = urlparse.urlparse(url)[1]
178 if host == "":
179 host = request.get_header("Host", "")
180
181 # remove port, if present
Neal Norwitzb678ce52006-05-18 06:51:46 +0000182 host = _cut_port_re.sub("", host, 1)
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000183 return host.lower()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000184
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000185class Request:
Moshe Zadka8a18e992001-03-01 08:40:42 +0000186
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000187 def __init__(self, url, data=None, headers={},
188 origin_req_host=None, unverifiable=False):
Fred Drake13a2c272000-02-10 17:17:14 +0000189 # unwrap('<URL:type://host/path>') --> 'type://host/path'
190 self.__original = unwrap(url)
191 self.type = None
192 # self.__r_type is what's left after doing the splittype
193 self.host = None
194 self.port = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000195 self.data = data
Fred Drake13a2c272000-02-10 17:17:14 +0000196 self.headers = {}
Brett Cannonc8b188a2003-05-17 19:51:26 +0000197 for key, value in headers.items():
Brett Cannon86503b12003-05-12 07:29:42 +0000198 self.add_header(key, value)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000199 self.unredirected_hdrs = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000200 if origin_req_host is None:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000201 origin_req_host = request_host(self)
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000202 self.origin_req_host = origin_req_host
203 self.unverifiable = unverifiable
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000204
205 def __getattr__(self, attr):
Fred Drake13a2c272000-02-10 17:17:14 +0000206 # XXX this is a fallback mechanism to guard against these
Tim Peterse1190062001-01-15 03:34:38 +0000207 # methods getting called in a non-standard order. this may be
Fred Drake13a2c272000-02-10 17:17:14 +0000208 # too complicated and/or unnecessary.
209 # XXX should the __r_XXX attributes be public?
210 if attr[:12] == '_Request__r_':
211 name = attr[12:]
212 if hasattr(Request, 'get_' + name):
213 getattr(self, 'get_' + name)()
214 return getattr(self, attr)
215 raise AttributeError, attr
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000216
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000217 def get_method(self):
218 if self.has_data():
219 return "POST"
220 else:
221 return "GET"
222
Jeremy Hylton023518a2003-12-17 18:52:16 +0000223 # XXX these helper methods are lame
224
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000225 def add_data(self, data):
226 self.data = data
227
228 def has_data(self):
229 return self.data is not None
230
231 def get_data(self):
232 return self.data
233
234 def get_full_url(self):
235 return self.__original
236
237 def get_type(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000238 if self.type is None:
239 self.type, self.__r_type = splittype(self.__original)
Jeremy Hylton78cae612001-05-09 15:49:24 +0000240 if self.type is None:
241 raise ValueError, "unknown url type: %s" % self.__original
Fred Drake13a2c272000-02-10 17:17:14 +0000242 return self.type
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000243
244 def get_host(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000245 if self.host is None:
246 self.host, self.__r_host = splithost(self.__r_type)
247 if self.host:
248 self.host = unquote(self.host)
249 return self.host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000250
251 def get_selector(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000252 return self.__r_host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000253
Moshe Zadka8a18e992001-03-01 08:40:42 +0000254 def set_proxy(self, host, type):
255 self.host, self.type = host, type
Fred Drake13a2c272000-02-10 17:17:14 +0000256 self.__r_host = self.__original
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000257
Facundo Batistaeb90b782008-08-16 14:44:07 +0000258 def has_proxy(self):
259 return self.__r_host == self.__original
260
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000261 def get_origin_req_host(self):
262 return self.origin_req_host
263
264 def is_unverifiable(self):
265 return self.unverifiable
266
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000267 def add_header(self, key, val):
Fred Drake13a2c272000-02-10 17:17:14 +0000268 # useful for something like authentication
Georg Brandl8c036cc2006-08-20 13:15:39 +0000269 self.headers[key.capitalize()] = val
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000270
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000271 def add_unredirected_header(self, key, val):
272 # will not be added to a redirected request
Georg Brandl8c036cc2006-08-20 13:15:39 +0000273 self.unredirected_hdrs[key.capitalize()] = val
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000274
275 def has_header(self, header_name):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000276 return (header_name in self.headers or
277 header_name in self.unredirected_hdrs)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000278
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000279 def get_header(self, header_name, default=None):
280 return self.headers.get(
281 header_name,
282 self.unredirected_hdrs.get(header_name, default))
283
284 def header_items(self):
285 hdrs = self.unredirected_hdrs.copy()
286 hdrs.update(self.headers)
287 return hdrs.items()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000288
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000289class OpenerDirector:
290 def __init__(self):
Georg Brandl8d457c72005-06-26 22:01:35 +0000291 client_version = "Python-urllib/%s" % __version__
Georg Brandl8c036cc2006-08-20 13:15:39 +0000292 self.addheaders = [('User-agent', client_version)]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000293 # manage the individual handlers
294 self.handlers = []
295 self.handle_open = {}
296 self.handle_error = {}
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000297 self.process_response = {}
298 self.process_request = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000299
300 def add_handler(self, handler):
Georg Brandlf91149e2007-07-12 08:05:45 +0000301 if not hasattr(handler, "add_parent"):
302 raise TypeError("expected BaseHandler instance, got %r" %
303 type(handler))
304
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000305 added = False
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000306 for meth in dir(handler):
Georg Brandl261e2512006-05-29 20:52:54 +0000307 if meth in ["redirect_request", "do_open", "proxy_open"]:
308 # oops, coincidental match
309 continue
310
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000311 i = meth.find("_")
312 protocol = meth[:i]
313 condition = meth[i+1:]
314
315 if condition.startswith("error"):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000316 j = condition.find("_") + i + 1
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000317 kind = meth[j+1:]
318 try:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000319 kind = int(kind)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000320 except ValueError:
321 pass
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000322 lookup = self.handle_error.get(protocol, {})
323 self.handle_error[protocol] = lookup
324 elif condition == "open":
325 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000326 lookup = self.handle_open
327 elif condition == "response":
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000328 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000329 lookup = self.process_response
330 elif condition == "request":
331 kind = protocol
332 lookup = self.process_request
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000333 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000334 continue
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000335
336 handlers = lookup.setdefault(kind, [])
337 if handlers:
338 bisect.insort(handlers, handler)
339 else:
340 handlers.append(handler)
341 added = True
342
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000343 if added:
Facundo Batistaca90ca82007-03-05 16:31:54 +0000344 # the handlers must work in an specific order, the order
345 # is specified in a Handler attribute
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000346 bisect.insort(self.handlers, handler)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000347 handler.add_parent(self)
Tim Peterse1190062001-01-15 03:34:38 +0000348
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000349 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000350 # Only exists for backwards compatibility.
351 pass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000352
353 def _call_chain(self, chain, kind, meth_name, *args):
Georg Brandlc5ffd912006-04-02 20:48:11 +0000354 # Handlers raise an exception if no one else should try to handle
355 # the request, or return None if they can't but another handler
356 # could. Otherwise, they return the response.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000357 handlers = chain.get(kind, ())
358 for handler in handlers:
359 func = getattr(handler, meth_name)
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000360
361 result = func(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000362 if result is not None:
363 return result
364
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000365 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Fred Drake13a2c272000-02-10 17:17:14 +0000366 # accept a URL or a Request object
Walter Dörwald65230a22002-06-03 15:58:32 +0000367 if isinstance(fullurl, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000368 req = Request(fullurl, data)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000369 else:
370 req = fullurl
371 if data is not None:
372 req.add_data(data)
Tim Peterse1190062001-01-15 03:34:38 +0000373
Facundo Batista10951d52007-06-06 17:15:23 +0000374 req.timeout = timeout
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000375 protocol = req.get_type()
376
377 # pre-process request
378 meth_name = protocol+"_request"
379 for processor in self.process_request.get(protocol, []):
380 meth = getattr(processor, meth_name)
381 req = meth(req)
382
383 response = self._open(req, data)
384
385 # post-process response
386 meth_name = protocol+"_response"
387 for processor in self.process_response.get(protocol, []):
388 meth = getattr(processor, meth_name)
389 response = meth(req, response)
390
391 return response
392
393 def _open(self, req, data=None):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000394 result = self._call_chain(self.handle_open, 'default',
Tim Peterse1190062001-01-15 03:34:38 +0000395 'default_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000396 if result:
397 return result
398
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000399 protocol = req.get_type()
400 result = self._call_chain(self.handle_open, protocol, protocol +
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000401 '_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000402 if result:
403 return result
404
405 return self._call_chain(self.handle_open, 'unknown',
406 'unknown_open', req)
407
408 def error(self, proto, *args):
Raymond Hettingerdbecd932005-02-06 06:57:08 +0000409 if proto in ('http', 'https'):
Fred Draked5214b02001-11-08 17:19:29 +0000410 # XXX http[s] protocols are special-cased
411 dict = self.handle_error['http'] # https is not different than http
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000412 proto = args[2] # YUCK!
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000413 meth_name = 'http_error_%s' % proto
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000414 http_err = 1
415 orig_args = args
416 else:
417 dict = self.handle_error
418 meth_name = proto + '_error'
419 http_err = 0
420 args = (dict, proto, meth_name) + args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000421 result = self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000422 if result:
423 return result
424
425 if http_err:
426 args = (dict, 'default', 'http_error_default') + orig_args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000427 return self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000428
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000429# XXX probably also want an abstract factory that knows when it makes
430# sense to skip a superclass in favor of a subclass and when it might
431# make sense to include both
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000432
433def build_opener(*handlers):
434 """Create an opener object from a list of handlers.
435
436 The opener will use several default handlers, including support
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000437 for HTTP and FTP.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000438
439 If any of the handlers passed as arguments are subclasses of the
440 default handlers, the default handlers will not be used.
441 """
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000442 import types
443 def isclass(obj):
444 return isinstance(obj, types.ClassType) or hasattr(obj, "__bases__")
Tim Peterse1190062001-01-15 03:34:38 +0000445
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000446 opener = OpenerDirector()
447 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
448 HTTPDefaultErrorHandler, HTTPRedirectHandler,
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000449 FTPHandler, FileHandler, HTTPErrorProcessor]
Moshe Zadka8a18e992001-03-01 08:40:42 +0000450 if hasattr(httplib, 'HTTPS'):
451 default_classes.append(HTTPSHandler)
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000452 skip = set()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000453 for klass in default_classes:
454 for check in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000455 if isclass(check):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000456 if issubclass(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000457 skip.add(klass)
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000458 elif isinstance(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000459 skip.add(klass)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000460 for klass in skip:
461 default_classes.remove(klass)
462
463 for klass in default_classes:
464 opener.add_handler(klass())
465
466 for h in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000467 if isclass(h):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000468 h = h()
469 opener.add_handler(h)
470 return opener
471
472class BaseHandler:
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000473 handler_order = 500
474
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000475 def add_parent(self, parent):
476 self.parent = parent
Tim Peters58eb11c2004-01-18 20:29:55 +0000477
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000478 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000479 # Only exists for backwards compatibility
480 pass
Tim Peters58eb11c2004-01-18 20:29:55 +0000481
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000482 def __lt__(self, other):
483 if not hasattr(other, "handler_order"):
484 # Try to preserve the old behavior of having custom classes
485 # inserted after default ones (works only for custom user
486 # classes which are not aware of handler_order).
487 return True
488 return self.handler_order < other.handler_order
Tim Petersf545baa2003-06-15 23:26:30 +0000489
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000490
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000491class HTTPErrorProcessor(BaseHandler):
492 """Process HTTP error responses."""
493 handler_order = 1000 # after all other processing
494
495 def http_response(self, request, response):
496 code, msg, hdrs = response.code, response.msg, response.info()
497
Neal Norwitz0d4c06e2007-04-25 06:30:05 +0000498 # According to RFC 2616, "2xx" code indicates that the client's
Facundo Batista9fab9f12007-04-23 17:08:31 +0000499 # request was successfully received, understood, and accepted.
500 if not (200 <= code < 300):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000501 response = self.parent.error(
502 'http', request, response, code, msg, hdrs)
503
504 return response
505
506 https_response = http_response
507
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000508class HTTPDefaultErrorHandler(BaseHandler):
509 def http_error_default(self, req, fp, code, msg, hdrs):
Fred Drake13a2c272000-02-10 17:17:14 +0000510 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000511
512class HTTPRedirectHandler(BaseHandler):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000513 # maximum number of redirections to any single URL
514 # this is needed because of the state that cookies introduce
515 max_repeats = 4
516 # maximum total number of redirections (regardless of URL) before
517 # assuming we're in a loop
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000518 max_redirections = 10
519
Jeremy Hylton03892952003-05-05 04:09:13 +0000520 def redirect_request(self, req, fp, code, msg, headers, newurl):
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000521 """Return a Request or None in response to a redirect.
522
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000523 This is called by the http_error_30x methods when a
524 redirection response is received. If a redirection should
525 take place, return a new Request to allow http_error_30x to
526 perform the redirect. Otherwise, raise HTTPError if no-one
527 else should try to handle this url. Return None if you can't
528 but another Handler might.
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000529 """
Jeremy Hylton828023b2003-05-04 23:44:49 +0000530 m = req.get_method()
531 if (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
Martin v. Löwis162f0812003-07-12 07:33:32 +0000532 or code in (301, 302, 303) and m == "POST"):
533 # Strictly (according to RFC 2616), 301 or 302 in response
534 # to a POST MUST NOT cause a redirection without confirmation
Jeremy Hylton828023b2003-05-04 23:44:49 +0000535 # from the user (of urllib2, in this case). In practice,
536 # essentially all clients do redirect in this case, so we
537 # do the same.
Georg Brandlddb84d72006-03-18 11:35:18 +0000538 # be conciliant with URIs containing a space
539 newurl = newurl.replace(' ', '%20')
Facundo Batista86371d62008-02-07 19:06:52 +0000540 newheaders = dict((k,v) for k,v in req.headers.items()
541 if k.lower() not in ("content-length", "content-type")
542 )
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000543 return Request(newurl,
Facundo Batista86371d62008-02-07 19:06:52 +0000544 headers=newheaders,
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000545 origin_req_host=req.get_origin_req_host(),
546 unverifiable=True)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000547 else:
Martin v. Löwise3b67bc2003-06-14 05:51:25 +0000548 raise HTTPError(req.get_full_url(), code, msg, headers, fp)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000549
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000550 # Implementation note: To avoid the server sending us into an
551 # infinite loop, the request object needs to track what URLs we
552 # have already seen. Do this by adding a handler-specific
553 # attribute to the Request object.
554 def http_error_302(self, req, fp, code, msg, headers):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000555 # Some servers (incorrectly) return multiple Location headers
556 # (so probably same goes for URI). Use first header.
Raymond Hettinger54f02222002-06-01 14:18:47 +0000557 if 'location' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000558 newurl = headers.getheaders('location')[0]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000559 elif 'uri' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000560 newurl = headers.getheaders('uri')[0]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000561 else:
562 return
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000563 newurl = urlparse.urljoin(req.get_full_url(), newurl)
564
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000565 # XXX Probably want to forget about the state of the current
566 # request, although that might interact poorly with other
567 # handlers that also use handler-specific request attributes
Jeremy Hylton03892952003-05-05 04:09:13 +0000568 new = self.redirect_request(req, fp, code, msg, headers, newurl)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000569 if new is None:
570 return
571
572 # loop detection
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000573 # .redirect_dict has a key url if url was previously visited.
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000574 if hasattr(req, 'redirect_dict'):
575 visited = new.redirect_dict = req.redirect_dict
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000576 if (visited.get(newurl, 0) >= self.max_repeats or
577 len(visited) >= self.max_redirections):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000578 raise HTTPError(req.get_full_url(), code,
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000579 self.inf_msg + msg, headers, fp)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000580 else:
581 visited = new.redirect_dict = req.redirect_dict = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000582 visited[newurl] = visited.get(newurl, 0) + 1
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000583
584 # Don't close the fp until we are sure that we won't use it
Tim Petersab9ba272001-08-09 21:40:30 +0000585 # with HTTPError.
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000586 fp.read()
587 fp.close()
588
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000589 return self.parent.open(new)
590
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000591 http_error_301 = http_error_303 = http_error_307 = http_error_302
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000592
Martin v. Löwis162f0812003-07-12 07:33:32 +0000593 inf_msg = "The HTTP server returned a redirect error that would " \
Thomas Wouters7e474022000-07-16 12:04:32 +0000594 "lead to an infinite loop.\n" \
Martin v. Löwis162f0812003-07-12 07:33:32 +0000595 "The last 30x error message was:\n"
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000596
Georg Brandl720096a2006-04-02 20:45:34 +0000597
598def _parse_proxy(proxy):
599 """Return (scheme, user, password, host/port) given a URL or an authority.
600
601 If a URL is supplied, it must have an authority (host:port) component.
602 According to RFC 3986, having an authority component means the URL must
603 have two slashes after the scheme:
604
605 >>> _parse_proxy('file:/ftp.example.com/')
606 Traceback (most recent call last):
607 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
608
609 The first three items of the returned tuple may be None.
610
611 Examples of authority parsing:
612
613 >>> _parse_proxy('proxy.example.com')
614 (None, None, None, 'proxy.example.com')
615 >>> _parse_proxy('proxy.example.com:3128')
616 (None, None, None, 'proxy.example.com:3128')
617
618 The authority component may optionally include userinfo (assumed to be
619 username:password):
620
621 >>> _parse_proxy('joe:password@proxy.example.com')
622 (None, 'joe', 'password', 'proxy.example.com')
623 >>> _parse_proxy('joe:password@proxy.example.com:3128')
624 (None, 'joe', 'password', 'proxy.example.com:3128')
625
626 Same examples, but with URLs instead:
627
628 >>> _parse_proxy('http://proxy.example.com/')
629 ('http', None, None, 'proxy.example.com')
630 >>> _parse_proxy('http://proxy.example.com:3128/')
631 ('http', None, None, 'proxy.example.com:3128')
632 >>> _parse_proxy('http://joe:password@proxy.example.com/')
633 ('http', 'joe', 'password', 'proxy.example.com')
634 >>> _parse_proxy('http://joe:password@proxy.example.com:3128')
635 ('http', 'joe', 'password', 'proxy.example.com:3128')
636
637 Everything after the authority is ignored:
638
639 >>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
640 ('ftp', 'joe', 'password', 'proxy.example.com')
641
642 Test for no trailing '/' case:
643
644 >>> _parse_proxy('http://joe:password@proxy.example.com')
645 ('http', 'joe', 'password', 'proxy.example.com')
646
647 """
Georg Brandl720096a2006-04-02 20:45:34 +0000648 scheme, r_scheme = splittype(proxy)
649 if not r_scheme.startswith("/"):
650 # authority
651 scheme = None
652 authority = proxy
653 else:
654 # URL
655 if not r_scheme.startswith("//"):
656 raise ValueError("proxy URL with no authority: %r" % proxy)
657 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
658 # and 3.3.), path is empty or starts with '/'
659 end = r_scheme.find("/", 2)
660 if end == -1:
661 end = None
662 authority = r_scheme[2:end]
663 userinfo, hostport = splituser(authority)
664 if userinfo is not None:
665 user, password = splitpasswd(userinfo)
666 else:
667 user = password = None
668 return scheme, user, password, hostport
669
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000670class ProxyHandler(BaseHandler):
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000671 # Proxies must be in front
672 handler_order = 100
673
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000674 def __init__(self, proxies=None):
Fred Drake13a2c272000-02-10 17:17:14 +0000675 if proxies is None:
676 proxies = getproxies()
677 assert hasattr(proxies, 'has_key'), "proxies must be a mapping"
678 self.proxies = proxies
Brett Cannondf0d87a2003-05-18 02:25:07 +0000679 for type, url in proxies.items():
Tim Peterse1190062001-01-15 03:34:38 +0000680 setattr(self, '%s_open' % type,
Fred Drake13a2c272000-02-10 17:17:14 +0000681 lambda r, proxy=url, type=type, meth=self.proxy_open: \
682 meth(r, proxy, type))
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000683
684 def proxy_open(self, req, proxy, type):
Fred Drake13a2c272000-02-10 17:17:14 +0000685 orig_type = req.get_type()
Georg Brandl720096a2006-04-02 20:45:34 +0000686 proxy_type, user, password, hostport = _parse_proxy(proxy)
687 if proxy_type is None:
688 proxy_type = orig_type
Georg Brandl531ceba2006-01-21 07:20:56 +0000689 if user and password:
Georg Brandl720096a2006-04-02 20:45:34 +0000690 user_pass = '%s:%s' % (unquote(user), unquote(password))
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000691 creds = base64.b64encode(user_pass).strip()
Georg Brandl8c036cc2006-08-20 13:15:39 +0000692 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl720096a2006-04-02 20:45:34 +0000693 hostport = unquote(hostport)
694 req.set_proxy(hostport, proxy_type)
695 if orig_type == proxy_type:
Fred Drake13a2c272000-02-10 17:17:14 +0000696 # let other handlers take care of it
Fred Drake13a2c272000-02-10 17:17:14 +0000697 return None
698 else:
699 # need to start over, because the other handlers don't
700 # grok the proxy's URL type
Georg Brandl720096a2006-04-02 20:45:34 +0000701 # e.g. if we have a constructor arg proxies like so:
702 # {'http': 'ftp://proxy.example.com'}, we may end up turning
703 # a request for http://acme.example.com/a into one for
704 # ftp://proxy.example.com/a
Fred Drake13a2c272000-02-10 17:17:14 +0000705 return self.parent.open(req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000706
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000707class HTTPPasswordMgr:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000708
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000709 def __init__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000710 self.passwd = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000711
712 def add_password(self, realm, uri, user, passwd):
Fred Drake13a2c272000-02-10 17:17:14 +0000713 # uri could be a single URI or a sequence
Walter Dörwald65230a22002-06-03 15:58:32 +0000714 if isinstance(uri, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000715 uri = [uri]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000716 if not realm in self.passwd:
Fred Drake13a2c272000-02-10 17:17:14 +0000717 self.passwd[realm] = {}
Georg Brandl2b330372006-05-28 20:23:12 +0000718 for default_port in True, False:
719 reduced_uri = tuple(
720 [self.reduce_uri(u, default_port) for u in uri])
721 self.passwd[realm][reduced_uri] = (user, passwd)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000722
723 def find_user_password(self, realm, authuri):
Fred Drake13a2c272000-02-10 17:17:14 +0000724 domains = self.passwd.get(realm, {})
Georg Brandl2b330372006-05-28 20:23:12 +0000725 for default_port in True, False:
726 reduced_authuri = self.reduce_uri(authuri, default_port)
727 for uris, authinfo in domains.iteritems():
728 for uri in uris:
729 if self.is_suburi(uri, reduced_authuri):
730 return authinfo
Fred Drake13a2c272000-02-10 17:17:14 +0000731 return None, None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000732
Georg Brandl2b330372006-05-28 20:23:12 +0000733 def reduce_uri(self, uri, default_port=True):
734 """Accept authority or URI and extract only the authority and path."""
735 # note HTTP URLs do not have a userinfo component
Georg Brandlfa42bd72006-04-30 07:06:11 +0000736 parts = urlparse.urlsplit(uri)
Fred Drake13a2c272000-02-10 17:17:14 +0000737 if parts[1]:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000738 # URI
Georg Brandl2b330372006-05-28 20:23:12 +0000739 scheme = parts[0]
740 authority = parts[1]
741 path = parts[2] or '/'
Fred Drake13a2c272000-02-10 17:17:14 +0000742 else:
Georg Brandl2b330372006-05-28 20:23:12 +0000743 # host or host:port
744 scheme = None
745 authority = uri
746 path = '/'
747 host, port = splitport(authority)
748 if default_port and port is None and scheme is not None:
749 dport = {"http": 80,
750 "https": 443,
751 }.get(scheme)
752 if dport is not None:
753 authority = "%s:%d" % (host, dport)
754 return authority, path
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000755
756 def is_suburi(self, base, test):
Fred Drake13a2c272000-02-10 17:17:14 +0000757 """Check if test is below base in a URI tree
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000758
Fred Drake13a2c272000-02-10 17:17:14 +0000759 Both args must be URIs in reduced form.
760 """
761 if base == test:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000762 return True
Fred Drake13a2c272000-02-10 17:17:14 +0000763 if base[0] != test[0]:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000764 return False
Moshe Zadka8a18e992001-03-01 08:40:42 +0000765 common = posixpath.commonprefix((base[1], test[1]))
Fred Drake13a2c272000-02-10 17:17:14 +0000766 if len(common) == len(base[1]):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000767 return True
768 return False
Tim Peterse1190062001-01-15 03:34:38 +0000769
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000770
Moshe Zadka8a18e992001-03-01 08:40:42 +0000771class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
772
773 def find_user_password(self, realm, authuri):
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000774 user, password = HTTPPasswordMgr.find_user_password(self, realm,
775 authuri)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000776 if user is not None:
777 return user, password
778 return HTTPPasswordMgr.find_user_password(self, None, authuri)
779
780
781class AbstractBasicAuthHandler:
782
Georg Brandl172e7252007-03-07 07:39:06 +0000783 # XXX this allows for multiple auth-schemes, but will stupidly pick
784 # the last one with a realm specified.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000785
Georg Brandl33124322008-03-21 19:54:00 +0000786 # allow for double- and single-quoted realm values
787 # (single quotes are a violation of the RFC, but appear in the wild)
788 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
789 'realm=(["\'])(.*?)\\2', re.I)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000790
Georg Brandl261e2512006-05-29 20:52:54 +0000791 # XXX could pre-emptively send auth info already accepted (RFC 2617,
792 # end of section 2, and section 1.2 immediately after "credentials"
793 # production).
794
Moshe Zadka8a18e992001-03-01 08:40:42 +0000795 def __init__(self, password_mgr=None):
796 if password_mgr is None:
797 password_mgr = HTTPPasswordMgr()
798 self.passwd = password_mgr
Fred Drake13a2c272000-02-10 17:17:14 +0000799 self.add_password = self.passwd.add_password
Tim Peterse1190062001-01-15 03:34:38 +0000800
Moshe Zadka8a18e992001-03-01 08:40:42 +0000801 def http_error_auth_reqed(self, authreq, host, req, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000802 # host may be an authority (without userinfo) or a URL with an
803 # authority
Moshe Zadka8a18e992001-03-01 08:40:42 +0000804 # XXX could be multiple headers
805 authreq = headers.get(authreq, None)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000806 if authreq:
Martin v. Löwis65a79752004-08-03 12:59:55 +0000807 mo = AbstractBasicAuthHandler.rx.search(authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000808 if mo:
Georg Brandl33124322008-03-21 19:54:00 +0000809 scheme, quote, realm = mo.groups()
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000810 if scheme.lower() == 'basic':
Moshe Zadka8a18e992001-03-01 08:40:42 +0000811 return self.retry_http_basic_auth(host, req, realm)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000812
Moshe Zadka8a18e992001-03-01 08:40:42 +0000813 def retry_http_basic_auth(self, host, req, realm):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000814 user, pw = self.passwd.find_user_password(realm, host)
Martin v. Löwis8b3e8712004-05-06 01:41:26 +0000815 if pw is not None:
Fred Drake13a2c272000-02-10 17:17:14 +0000816 raw = "%s:%s" % (user, pw)
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000817 auth = 'Basic %s' % base64.b64encode(raw).strip()
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000818 if req.headers.get(self.auth_header, None) == auth:
819 return None
820 req.add_header(self.auth_header, auth)
821 return self.parent.open(req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000822 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000823 return None
824
Georg Brandlfa42bd72006-04-30 07:06:11 +0000825
Moshe Zadka8a18e992001-03-01 08:40:42 +0000826class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000827
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000828 auth_header = 'Authorization'
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000829
Moshe Zadka8a18e992001-03-01 08:40:42 +0000830 def http_error_401(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000831 url = req.get_full_url()
Tim Peters30edd232001-03-16 08:29:48 +0000832 return self.http_error_auth_reqed('www-authenticate',
Georg Brandlfa42bd72006-04-30 07:06:11 +0000833 url, req, headers)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000834
835
836class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
837
Georg Brandl8c036cc2006-08-20 13:15:39 +0000838 auth_header = 'Proxy-authorization'
Moshe Zadka8a18e992001-03-01 08:40:42 +0000839
840 def http_error_407(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000841 # http_error_auth_reqed requires that there is no userinfo component in
842 # authority. Assume there isn't one, since urllib2 does not (and
843 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
844 # userinfo.
845 authority = req.get_host()
Tim Peters30edd232001-03-16 08:29:48 +0000846 return self.http_error_auth_reqed('proxy-authenticate',
Georg Brandlfa42bd72006-04-30 07:06:11 +0000847 authority, req, headers)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000848
849
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000850def randombytes(n):
851 """Return n random bytes."""
852 # Use /dev/urandom if it is available. Fall back to random module
853 # if not. It might be worthwhile to extend this function to use
854 # other platform-specific mechanisms for getting random bytes.
855 if os.path.exists("/dev/urandom"):
856 f = open("/dev/urandom")
857 s = f.read(n)
858 f.close()
859 return s
860 else:
861 L = [chr(random.randrange(0, 256)) for i in range(n)]
862 return "".join(L)
863
Moshe Zadka8a18e992001-03-01 08:40:42 +0000864class AbstractDigestAuthHandler:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000865 # Digest authentication is specified in RFC 2617.
866
867 # XXX The client does not inspect the Authentication-Info header
868 # in a successful response.
869
870 # XXX It should be possible to test this implementation against
871 # a mock server that just generates a static set of challenges.
872
873 # XXX qop="auth-int" supports is shaky
Moshe Zadka8a18e992001-03-01 08:40:42 +0000874
875 def __init__(self, passwd=None):
876 if passwd is None:
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000877 passwd = HTTPPasswordMgr()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000878 self.passwd = passwd
Fred Drake13a2c272000-02-10 17:17:14 +0000879 self.add_password = self.passwd.add_password
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000880 self.retried = 0
881 self.nonce_count = 0
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000882
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000883 def reset_retry_count(self):
884 self.retried = 0
885
886 def http_error_auth_reqed(self, auth_header, host, req, headers):
887 authreq = headers.get(auth_header, None)
888 if self.retried > 5:
889 # Don't fail endlessly - if we failed once, we'll probably
890 # fail a second time. Hm. Unless the Password Manager is
891 # prompting for the information. Crap. This isn't great
892 # but it's better than the current 'repeat until recursion
893 # depth exceeded' approach <wink>
Tim Peters58eb11c2004-01-18 20:29:55 +0000894 raise HTTPError(req.get_full_url(), 401, "digest auth failed",
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000895 headers, None)
896 else:
897 self.retried += 1
Fred Drake13a2c272000-02-10 17:17:14 +0000898 if authreq:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000899 scheme = authreq.split()[0]
900 if scheme.lower() == 'digest':
Fred Drake13a2c272000-02-10 17:17:14 +0000901 return self.retry_http_digest_auth(req, authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000902
903 def retry_http_digest_auth(self, req, auth):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000904 token, challenge = auth.split(' ', 1)
Fred Drake13a2c272000-02-10 17:17:14 +0000905 chal = parse_keqv_list(parse_http_list(challenge))
906 auth = self.get_authorization(req, chal)
907 if auth:
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000908 auth_val = 'Digest %s' % auth
909 if req.headers.get(self.auth_header, None) == auth_val:
910 return None
Georg Brandl852bb002006-05-03 05:05:02 +0000911 req.add_unredirected_header(self.auth_header, auth_val)
Fred Drake13a2c272000-02-10 17:17:14 +0000912 resp = self.parent.open(req)
Fred Drake13a2c272000-02-10 17:17:14 +0000913 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000914
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000915 def get_cnonce(self, nonce):
916 # The cnonce-value is an opaque
917 # quoted string value provided by the client and used by both client
918 # and server to avoid chosen plaintext attacks, to provide mutual
919 # authentication, and to provide some message integrity protection.
920 # This isn't a fabulous effort, but it's probably Good Enough.
Georg Brandlbffb0bc2006-04-30 08:57:35 +0000921 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
922 randombytes(8))).hexdigest()
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000923 return dig[:16]
924
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000925 def get_authorization(self, req, chal):
Fred Drake13a2c272000-02-10 17:17:14 +0000926 try:
927 realm = chal['realm']
928 nonce = chal['nonce']
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000929 qop = chal.get('qop')
Fred Drake13a2c272000-02-10 17:17:14 +0000930 algorithm = chal.get('algorithm', 'MD5')
931 # mod_digest doesn't send an opaque, even though it isn't
932 # supposed to be optional
933 opaque = chal.get('opaque', None)
934 except KeyError:
935 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000936
Fred Drake13a2c272000-02-10 17:17:14 +0000937 H, KD = self.get_algorithm_impls(algorithm)
938 if H is None:
939 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000940
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000941 user, pw = self.passwd.find_user_password(realm, req.get_full_url())
Fred Drake13a2c272000-02-10 17:17:14 +0000942 if user is None:
943 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000944
Fred Drake13a2c272000-02-10 17:17:14 +0000945 # XXX not implemented yet
946 if req.has_data():
947 entdig = self.get_entity_digest(req.get_data(), chal)
948 else:
949 entdig = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000950
Fred Drake13a2c272000-02-10 17:17:14 +0000951 A1 = "%s:%s:%s" % (user, realm, pw)
Johannes Gijsberscdd625a2005-01-09 05:51:49 +0000952 A2 = "%s:%s" % (req.get_method(),
Fred Drake13a2c272000-02-10 17:17:14 +0000953 # XXX selector: what about proxies and full urls
954 req.get_selector())
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000955 if qop == 'auth':
956 self.nonce_count += 1
957 ncvalue = '%08x' % self.nonce_count
958 cnonce = self.get_cnonce(nonce)
959 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
960 respdig = KD(H(A1), noncebit)
961 elif qop is None:
962 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
963 else:
964 # XXX handle auth-int.
Georg Brandlff871222007-06-07 13:34:10 +0000965 raise URLError("qop '%s' is not supported." % qop)
Tim Peters58eb11c2004-01-18 20:29:55 +0000966
Fred Drake13a2c272000-02-10 17:17:14 +0000967 # XXX should the partial digests be encoded too?
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000968
Fred Drake13a2c272000-02-10 17:17:14 +0000969 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
970 'response="%s"' % (user, realm, nonce, req.get_selector(),
971 respdig)
972 if opaque:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +0000973 base += ', opaque="%s"' % opaque
Fred Drake13a2c272000-02-10 17:17:14 +0000974 if entdig:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +0000975 base += ', digest="%s"' % entdig
976 base += ', algorithm="%s"' % algorithm
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000977 if qop:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +0000978 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
Fred Drake13a2c272000-02-10 17:17:14 +0000979 return base
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000980
981 def get_algorithm_impls(self, algorithm):
Georg Brandl8d66dcd2008-05-04 21:40:44 +0000982 # algorithm should be case-insensitive according to RFC2617
983 algorithm = algorithm.upper()
Fred Drake13a2c272000-02-10 17:17:14 +0000984 # lambdas assume digest modules are imported at the top level
985 if algorithm == 'MD5':
Georg Brandlbffb0bc2006-04-30 08:57:35 +0000986 H = lambda x: hashlib.md5(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +0000987 elif algorithm == 'SHA':
Georg Brandlbffb0bc2006-04-30 08:57:35 +0000988 H = lambda x: hashlib.sha1(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +0000989 # XXX MD5-sess
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000990 KD = lambda s, d: H("%s:%s" % (s, d))
Fred Drake13a2c272000-02-10 17:17:14 +0000991 return H, KD
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000992
993 def get_entity_digest(self, data, chal):
Fred Drake13a2c272000-02-10 17:17:14 +0000994 # XXX not implemented yet
995 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000996
Moshe Zadka8a18e992001-03-01 08:40:42 +0000997
998class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
999 """An authentication protocol defined by RFC 2069
1000
1001 Digest authentication improves on basic authentication because it
1002 does not transmit passwords in the clear.
1003 """
1004
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001005 auth_header = 'Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001006 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001007
1008 def http_error_401(self, req, fp, code, msg, headers):
1009 host = urlparse.urlparse(req.get_full_url())[1]
Tim Peters58eb11c2004-01-18 20:29:55 +00001010 retry = self.http_error_auth_reqed('www-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001011 host, req, headers)
1012 self.reset_retry_count()
1013 return retry
Moshe Zadka8a18e992001-03-01 08:40:42 +00001014
1015
1016class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1017
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001018 auth_header = 'Proxy-Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001019 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001020
1021 def http_error_407(self, req, fp, code, msg, headers):
1022 host = req.get_host()
Tim Peters58eb11c2004-01-18 20:29:55 +00001023 retry = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001024 host, req, headers)
1025 self.reset_retry_count()
1026 return retry
Tim Peterse1190062001-01-15 03:34:38 +00001027
Moshe Zadka8a18e992001-03-01 08:40:42 +00001028class AbstractHTTPHandler(BaseHandler):
1029
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001030 def __init__(self, debuglevel=0):
1031 self._debuglevel = debuglevel
1032
1033 def set_http_debuglevel(self, level):
1034 self._debuglevel = level
1035
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001036 def do_request_(self, request):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001037 host = request.get_host()
1038 if not host:
1039 raise URLError('no host given')
1040
1041 if request.has_data(): # POST
1042 data = request.get_data()
Georg Brandl8c036cc2006-08-20 13:15:39 +00001043 if not request.has_header('Content-type'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001044 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001045 'Content-type',
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001046 'application/x-www-form-urlencoded')
Georg Brandl8c036cc2006-08-20 13:15:39 +00001047 if not request.has_header('Content-length'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001048 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001049 'Content-length', '%d' % len(data))
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001050
Facundo Batistaeb90b782008-08-16 14:44:07 +00001051 sel_host = host
1052 if request.has_proxy():
1053 scheme, sel = splittype(request.get_selector())
1054 sel_host, sel_path = splithost(sel)
1055
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001056 if not request.has_header('Host'):
Facundo Batistaeb90b782008-08-16 14:44:07 +00001057 request.add_unredirected_header('Host', sel_host)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001058 for name, value in self.parent.addheaders:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001059 name = name.capitalize()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001060 if not request.has_header(name):
1061 request.add_unredirected_header(name, value)
1062
1063 return request
1064
Moshe Zadka8a18e992001-03-01 08:40:42 +00001065 def do_open(self, http_class, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001066 """Return an addinfourl object for the request, using http_class.
1067
1068 http_class must implement the HTTPConnection API from httplib.
1069 The addinfourl return value is a file-like object. It also
1070 has methods and attributes including:
1071 - info(): return a mimetools.Message object for the headers
1072 - geturl(): return the original request URL
1073 - code: HTTP status code
1074 """
Moshe Zadka76676802001-04-11 07:44:53 +00001075 host = req.get_host()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001076 if not host:
1077 raise URLError('no host given')
1078
Facundo Batista10951d52007-06-06 17:15:23 +00001079 h = http_class(host, timeout=req.timeout) # will parse host:port
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001080 h.set_debuglevel(self._debuglevel)
Tim Peterse1190062001-01-15 03:34:38 +00001081
Jeremy Hylton023518a2003-12-17 18:52:16 +00001082 headers = dict(req.headers)
1083 headers.update(req.unredirected_hdrs)
Jeremy Hyltonb3ee6f92004-02-24 19:40:35 +00001084 # We want to make an HTTP/1.1 request, but the addinfourl
1085 # class isn't prepared to deal with a persistent connection.
1086 # It will try to read all remaining data from the socket,
1087 # which will block while the server waits for the next request.
1088 # So make sure the connection gets closed after the (only)
1089 # request.
1090 headers["Connection"] = "close"
Georg Brandl8c036cc2006-08-20 13:15:39 +00001091 headers = dict(
1092 (name.title(), val) for name, val in headers.items())
Jeremy Hylton828023b2003-05-04 23:44:49 +00001093 try:
Jeremy Hylton023518a2003-12-17 18:52:16 +00001094 h.request(req.get_method(), req.get_selector(), req.data, headers)
1095 r = h.getresponse()
1096 except socket.error, err: # XXX what error?
Jeremy Hylton828023b2003-05-04 23:44:49 +00001097 raise URLError(err)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001098
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001099 # Pick apart the HTTPResponse object to get the addinfourl
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001100 # object initialized properly.
1101
1102 # Wrap the HTTPResponse object in socket's file object adapter
1103 # for Windows. That adapter calls recv(), so delegate recv()
1104 # to read(). This weird wrapping allows the returned object to
1105 # have readline() and readlines() methods.
Tim Peters9ca3f852004-08-08 01:05:14 +00001106
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001107 # XXX It might be better to extract the read buffering code
1108 # out of socket._fileobject() and into a base class.
Tim Peters9ca3f852004-08-08 01:05:14 +00001109
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001110 r.recv = r.read
Georg Brandldd7b0522007-01-21 10:35:10 +00001111 fp = socket._fileobject(r, close=True)
Tim Peters9ca3f852004-08-08 01:05:14 +00001112
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001113 resp = addinfourl(fp, r.msg, req.get_full_url())
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001114 resp.code = r.status
1115 resp.msg = r.reason
1116 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001117
Moshe Zadka8a18e992001-03-01 08:40:42 +00001118
1119class HTTPHandler(AbstractHTTPHandler):
1120
1121 def http_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001122 return self.do_open(httplib.HTTPConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001123
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001124 http_request = AbstractHTTPHandler.do_request_
Moshe Zadka8a18e992001-03-01 08:40:42 +00001125
1126if hasattr(httplib, 'HTTPS'):
1127 class HTTPSHandler(AbstractHTTPHandler):
1128
1129 def https_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001130 return self.do_open(httplib.HTTPSConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001131
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001132 https_request = AbstractHTTPHandler.do_request_
1133
1134class HTTPCookieProcessor(BaseHandler):
1135 def __init__(self, cookiejar=None):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001136 import cookielib
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001137 if cookiejar is None:
Neal Norwitz1cdd3632004-06-07 03:49:50 +00001138 cookiejar = cookielib.CookieJar()
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001139 self.cookiejar = cookiejar
1140
1141 def http_request(self, request):
1142 self.cookiejar.add_cookie_header(request)
1143 return request
1144
1145 def http_response(self, request, response):
1146 self.cookiejar.extract_cookies(response, request)
1147 return response
1148
1149 https_request = http_request
1150 https_response = http_response
Moshe Zadka8a18e992001-03-01 08:40:42 +00001151
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001152class UnknownHandler(BaseHandler):
1153 def unknown_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001154 type = req.get_type()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001155 raise URLError('unknown url type: %s' % type)
1156
1157def parse_keqv_list(l):
1158 """Parse list of key=value strings where keys are not duplicated."""
1159 parsed = {}
1160 for elt in l:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001161 k, v = elt.split('=', 1)
Fred Drake13a2c272000-02-10 17:17:14 +00001162 if v[0] == '"' and v[-1] == '"':
1163 v = v[1:-1]
1164 parsed[k] = v
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001165 return parsed
1166
1167def parse_http_list(s):
1168 """Parse lists as described by RFC 2068 Section 2.
Tim Peters9e34c042005-08-26 15:20:46 +00001169
Andrew M. Kuchling22ab06e2004-04-06 19:43:03 +00001170 In particular, parse comma-separated lists where the elements of
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001171 the list may include quoted-strings. A quoted-string could
Georg Brandle1b13d22005-08-24 22:20:32 +00001172 contain a comma. A non-quoted string could have quotes in the
1173 middle. Neither commas nor quotes count if they are escaped.
1174 Only double-quotes count, not single-quotes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001175 """
Georg Brandle1b13d22005-08-24 22:20:32 +00001176 res = []
1177 part = ''
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001178
Georg Brandle1b13d22005-08-24 22:20:32 +00001179 escape = quote = False
1180 for cur in s:
1181 if escape:
1182 part += cur
1183 escape = False
1184 continue
1185 if quote:
1186 if cur == '\\':
1187 escape = True
Fred Drake13a2c272000-02-10 17:17:14 +00001188 continue
Georg Brandle1b13d22005-08-24 22:20:32 +00001189 elif cur == '"':
1190 quote = False
1191 part += cur
1192 continue
1193
1194 if cur == ',':
1195 res.append(part)
1196 part = ''
1197 continue
1198
1199 if cur == '"':
1200 quote = True
Tim Peters9e34c042005-08-26 15:20:46 +00001201
Georg Brandle1b13d22005-08-24 22:20:32 +00001202 part += cur
1203
1204 # append last part
1205 if part:
1206 res.append(part)
1207
1208 return [part.strip() for part in res]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001209
1210class FileHandler(BaseHandler):
1211 # Use local file or FTP depending on form of URL
1212 def file_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001213 url = req.get_selector()
1214 if url[:2] == '//' and url[2:3] != '/':
1215 req.type = 'ftp'
1216 return self.parent.open(req)
1217 else:
1218 return self.open_local_file(req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001219
1220 # names for the localhost
1221 names = None
1222 def get_names(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001223 if FileHandler.names is None:
Georg Brandl4eb521e2006-04-02 20:37:17 +00001224 try:
1225 FileHandler.names = (socket.gethostbyname('localhost'),
1226 socket.gethostbyname(socket.gethostname()))
1227 except socket.gaierror:
1228 FileHandler.names = (socket.gethostbyname('localhost'),)
Fred Drake13a2c272000-02-10 17:17:14 +00001229 return FileHandler.names
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001230
1231 # not entirely sure what the rules are here
1232 def open_local_file(self, req):
Georg Brandl5a096e12007-01-22 19:40:21 +00001233 import email.utils
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001234 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001235 host = req.get_host()
1236 file = req.get_selector()
Jeremy Hylton6d8c1aa2001-08-27 20:16:53 +00001237 localfile = url2pathname(file)
Georg Brandlceede5c2007-03-13 08:14:27 +00001238 try:
1239 stats = os.stat(localfile)
1240 size = stats.st_size
1241 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
1242 mtype = mimetypes.guess_type(file)[0]
1243 headers = mimetools.Message(StringIO(
1244 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1245 (mtype or 'text/plain', size, modified)))
1246 if host:
1247 host, port = splitport(host)
1248 if not host or \
1249 (not port and socket.gethostbyname(host) in self.get_names()):
1250 return addinfourl(open(localfile, 'rb'),
1251 headers, 'file:'+file)
1252 except OSError, msg:
1253 # urllib2 users shouldn't expect OSErrors coming from urlopen()
1254 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001255 raise URLError('file not on local host')
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001256
1257class FTPHandler(BaseHandler):
1258 def ftp_open(self, req):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001259 import ftplib
1260 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001261 host = req.get_host()
1262 if not host:
Neal Norwitz70700942008-01-24 07:40:51 +00001263 raise URLError('ftp error: no host given')
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001264 host, port = splitport(host)
1265 if port is None:
1266 port = ftplib.FTP_PORT
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001267 else:
1268 port = int(port)
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001269
1270 # username/password handling
1271 user, host = splituser(host)
1272 if user:
1273 user, passwd = splitpasswd(user)
1274 else:
1275 passwd = None
1276 host = unquote(host)
1277 user = unquote(user or '')
1278 passwd = unquote(passwd or '')
1279
Jeremy Hylton73574ee2000-10-12 18:54:18 +00001280 try:
1281 host = socket.gethostbyname(host)
1282 except socket.error, msg:
1283 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001284 path, attrs = splitattr(req.get_selector())
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001285 dirs = path.split('/')
Martin v. Löwis7db04e72004-02-15 20:51:39 +00001286 dirs = map(unquote, dirs)
Fred Drake13a2c272000-02-10 17:17:14 +00001287 dirs, file = dirs[:-1], dirs[-1]
1288 if dirs and not dirs[0]:
1289 dirs = dirs[1:]
Fred Drake13a2c272000-02-10 17:17:14 +00001290 try:
Facundo Batista10951d52007-06-06 17:15:23 +00001291 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
Fred Drake13a2c272000-02-10 17:17:14 +00001292 type = file and 'I' or 'D'
1293 for attr in attrs:
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001294 attr, value = splitvalue(attr)
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001295 if attr.lower() == 'type' and \
Fred Drake13a2c272000-02-10 17:17:14 +00001296 value in ('a', 'A', 'i', 'I', 'd', 'D'):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001297 type = value.upper()
Fred Drake13a2c272000-02-10 17:17:14 +00001298 fp, retrlen = fw.retrfile(file, type)
Guido van Rossum833a8d82001-08-24 13:10:13 +00001299 headers = ""
1300 mtype = mimetypes.guess_type(req.get_full_url())[0]
1301 if mtype:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001302 headers += "Content-type: %s\n" % mtype
Fred Drake13a2c272000-02-10 17:17:14 +00001303 if retrlen is not None and retrlen >= 0:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001304 headers += "Content-length: %d\n" % retrlen
Guido van Rossum833a8d82001-08-24 13:10:13 +00001305 sf = StringIO(headers)
1306 headers = mimetools.Message(sf)
Fred Drake13a2c272000-02-10 17:17:14 +00001307 return addinfourl(fp, headers, req.get_full_url())
1308 except ftplib.all_errors, msg:
Neal Norwitz70700942008-01-24 07:40:51 +00001309 raise URLError, ('ftp error: %s' % msg), sys.exc_info()[2]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001310
Facundo Batista10951d52007-06-06 17:15:23 +00001311 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1312 fw = ftpwrapper(user, passwd, host, port, dirs, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001313## fw.ftp.set_debuglevel(1)
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
Fred Drake13a2c272000-02-10 17:17:14 +00001324 self.max_conns = 16
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001325
1326 def setTimeout(self, t):
1327 self.delay = t
1328
1329 def setMaxConns(self, m):
Fred Drake13a2c272000-02-10 17:17:14 +00001330 self.max_conns = m
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001331
Facundo Batista10951d52007-06-06 17:15:23 +00001332 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1333 key = user, host, port, '/'.join(dirs), timeout
Raymond Hettinger54f02222002-06-01 14:18:47 +00001334 if key in self.cache:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001335 self.timeout[key] = time.time() + self.delay
1336 else:
Facundo Batista10951d52007-06-06 17:15:23 +00001337 self.cache[key] = ftpwrapper(user, passwd, host, port, dirs, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001338 self.timeout[key] = time.time() + self.delay
Fred Drake13a2c272000-02-10 17:17:14 +00001339 self.check_cache()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001340 return self.cache[key]
1341
1342 def check_cache(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001343 # first check for old ones
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001344 t = time.time()
1345 if self.soonest <= t:
Raymond Hettinger4ec4fa22003-05-23 08:51:51 +00001346 for k, v in self.timeout.items():
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001347 if v < t:
1348 self.cache[k].close()
1349 del self.cache[k]
1350 del self.timeout[k]
1351 self.soonest = min(self.timeout.values())
1352
1353 # then check the size
Fred Drake13a2c272000-02-10 17:17:14 +00001354 if len(self.cache) == self.max_conns:
Brett Cannonc8b188a2003-05-17 19:51:26 +00001355 for k, v in self.timeout.items():
Fred Drake13a2c272000-02-10 17:17:14 +00001356 if v == self.soonest:
1357 del self.cache[k]
1358 del self.timeout[k]
1359 break
1360 self.soonest = min(self.timeout.values())