blob: 10051ff4319da5e11ffe9609bf30a15bd96a92be [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
Senthil Kumaranb0d85fd2012-05-15 23:59:19 +0800105import warnings
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000106
107try:
108 from cStringIO import StringIO
109except ImportError:
110 from StringIO import StringIO
111
Georg Brandl7fff58c2006-04-02 21:13:13 +0000112from urllib import (unwrap, unquote, splittype, splithost, quote,
Senthil Kumaran01fe5fa2012-07-07 17:37:53 -0700113 addinfourl, splitport, splittag, toBytes,
Brett Cannon88f801d2008-08-18 00:46:22 +0000114 splitattr, ftpwrapper, splituser, splitpasswd, splitvalue)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000115
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000116# support for FileHandler, proxies via environment variables
Senthil Kumaran27468662009-10-11 02:00:07 +0000117from urllib import localhost, url2pathname, getproxies, proxy_bypass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000118
Georg Brandl720096a2006-04-02 20:45:34 +0000119# used in User-Agent header sent
120__version__ = sys.version[:3]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000121
122_opener = None
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000123def urlopen(url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000124 global _opener
125 if _opener is None:
126 _opener = build_opener()
Facundo Batista10951d52007-06-06 17:15:23 +0000127 return _opener.open(url, data, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000128
129def install_opener(opener):
130 global _opener
131 _opener = opener
132
133# do these error classes make sense?
Tim Peterse1190062001-01-15 03:34:38 +0000134# make sure all of the IOError stuff is overridden. we just want to be
Fred Drakea87a5212002-08-13 13:59:55 +0000135# subtypes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000136
137class URLError(IOError):
138 # URLError is a sub-type of IOError, but it doesn't share any of
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000139 # the implementation. need to override __init__ and __str__.
140 # It sets self.args for compatibility with other EnvironmentError
141 # subclasses, but args doesn't have the typical format with errno in
142 # slot 0 and strerror in slot 1. This may be better than nothing.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000143 def __init__(self, reason):
Jeremy Hylton0a4a50d2003-10-06 05:15:13 +0000144 self.args = reason,
Fred Drake13a2c272000-02-10 17:17:14 +0000145 self.reason = reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000146
147 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000148 return '<urlopen error %s>' % self.reason
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000149
150class HTTPError(URLError, addinfourl):
151 """Raised when HTTP error occurs, but also acts like non-error return"""
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000152 __super_init = addinfourl.__init__
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000153
154 def __init__(self, url, code, msg, hdrs, fp):
Fred Drake13a2c272000-02-10 17:17:14 +0000155 self.code = code
156 self.msg = msg
157 self.hdrs = hdrs
158 self.fp = fp
Fred Drake13a2c272000-02-10 17:17:14 +0000159 self.filename = url
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000160 # The addinfourl classes depend on fp being a valid file
161 # object. In some cases, the HTTPError may not have a valid
162 # file object. If this happens, the simplest workaround is to
Tim Petersc411dba2002-07-16 21:35:23 +0000163 # not initialize the base classes.
Jeremy Hylton40bbae32002-06-03 16:53:00 +0000164 if fp is not None:
Georg Brandl99bb5f32008-04-09 17:57:38 +0000165 self.__super_init(fp, hdrs, url, code)
Tim Peterse1190062001-01-15 03:34:38 +0000166
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000167 def __str__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000168 return 'HTTP Error %s: %s' % (self.code, self.msg)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000169
Jason R. Coombs974d8632011-11-07 10:44:25 -0500170 # since URLError specifies a .reason attribute, HTTPError should also
171 # provide this attribute. See issue13211 fo discussion.
172 @property
173 def reason(self):
174 return self.msg
175
Senthil Kumaranf8a6b002012-12-23 09:00:47 -0800176 def info(self):
177 return self.hdrs
178
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000179# copied from cookielib.py
Neal Norwitzb678ce52006-05-18 06:51:46 +0000180_cut_port_re = re.compile(r":\d+$")
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000181def request_host(request):
182 """Return request-host, as defined by RFC 2965.
183
184 Variation from RFC: returned value is lowercased, for convenient
185 comparison.
186
187 """
188 url = request.get_full_url()
189 host = urlparse.urlparse(url)[1]
190 if host == "":
191 host = request.get_header("Host", "")
192
193 # remove port, if present
Neal Norwitzb678ce52006-05-18 06:51:46 +0000194 host = _cut_port_re.sub("", host, 1)
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000195 return host.lower()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000196
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000197class Request:
Moshe Zadka8a18e992001-03-01 08:40:42 +0000198
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000199 def __init__(self, url, data=None, headers={},
200 origin_req_host=None, unverifiable=False):
Fred Drake13a2c272000-02-10 17:17:14 +0000201 # unwrap('<URL:type://host/path>') --> 'type://host/path'
Senthil Kumaran5d60e562012-07-08 02:20:27 -0700202 self.__original = unwrap(url)
Senthil Kumaran49c44082011-04-13 07:31:45 +0800203 self.__original, self.__fragment = splittag(self.__original)
Fred Drake13a2c272000-02-10 17:17:14 +0000204 self.type = None
205 # self.__r_type is what's left after doing the splittype
206 self.host = None
207 self.port = None
Senthil Kumarane266f252009-05-24 09:14:50 +0000208 self._tunnel_host = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000209 self.data = data
Fred Drake13a2c272000-02-10 17:17:14 +0000210 self.headers = {}
Brett Cannonc8b188a2003-05-17 19:51:26 +0000211 for key, value in headers.items():
Brett Cannon86503b12003-05-12 07:29:42 +0000212 self.add_header(key, value)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000213 self.unredirected_hdrs = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000214 if origin_req_host is None:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000215 origin_req_host = request_host(self)
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000216 self.origin_req_host = origin_req_host
217 self.unverifiable = unverifiable
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000218
219 def __getattr__(self, attr):
Fred Drake13a2c272000-02-10 17:17:14 +0000220 # XXX this is a fallback mechanism to guard against these
Tim Peterse1190062001-01-15 03:34:38 +0000221 # methods getting called in a non-standard order. this may be
Fred Drake13a2c272000-02-10 17:17:14 +0000222 # too complicated and/or unnecessary.
223 # XXX should the __r_XXX attributes be public?
224 if attr[:12] == '_Request__r_':
225 name = attr[12:]
226 if hasattr(Request, 'get_' + name):
227 getattr(self, 'get_' + name)()
228 return getattr(self, attr)
229 raise AttributeError, attr
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000230
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000231 def get_method(self):
232 if self.has_data():
233 return "POST"
234 else:
235 return "GET"
236
Jeremy Hylton023518a2003-12-17 18:52:16 +0000237 # XXX these helper methods are lame
238
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000239 def add_data(self, data):
240 self.data = data
241
242 def has_data(self):
243 return self.data is not None
244
245 def get_data(self):
246 return self.data
247
248 def get_full_url(self):
Senthil Kumaran49c44082011-04-13 07:31:45 +0800249 if self.__fragment:
250 return '%s#%s' % (self.__original, self.__fragment)
251 else:
252 return self.__original
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000253
254 def get_type(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000255 if self.type is None:
256 self.type, self.__r_type = splittype(self.__original)
Jeremy Hylton78cae612001-05-09 15:49:24 +0000257 if self.type is None:
258 raise ValueError, "unknown url type: %s" % self.__original
Fred Drake13a2c272000-02-10 17:17:14 +0000259 return self.type
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000260
261 def get_host(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000262 if self.host is None:
263 self.host, self.__r_host = splithost(self.__r_type)
264 if self.host:
265 self.host = unquote(self.host)
266 return self.host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000267
268 def get_selector(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000269 return self.__r_host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000270
Moshe Zadka8a18e992001-03-01 08:40:42 +0000271 def set_proxy(self, host, type):
Senthil Kumarane266f252009-05-24 09:14:50 +0000272 if self.type == 'https' and not self._tunnel_host:
273 self._tunnel_host = self.host
274 else:
275 self.type = type
276 self.__r_host = self.__original
277
278 self.host = host
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000279
Facundo Batistaeb90b782008-08-16 14:44:07 +0000280 def has_proxy(self):
281 return self.__r_host == self.__original
282
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000283 def get_origin_req_host(self):
284 return self.origin_req_host
285
286 def is_unverifiable(self):
287 return self.unverifiable
288
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000289 def add_header(self, key, val):
Fred Drake13a2c272000-02-10 17:17:14 +0000290 # useful for something like authentication
Georg Brandl8c036cc2006-08-20 13:15:39 +0000291 self.headers[key.capitalize()] = val
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000292
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000293 def add_unredirected_header(self, key, val):
294 # will not be added to a redirected request
Georg Brandl8c036cc2006-08-20 13:15:39 +0000295 self.unredirected_hdrs[key.capitalize()] = val
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000296
297 def has_header(self, header_name):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000298 return (header_name in self.headers or
299 header_name in self.unredirected_hdrs)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000300
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000301 def get_header(self, header_name, default=None):
302 return self.headers.get(
303 header_name,
304 self.unredirected_hdrs.get(header_name, default))
305
306 def header_items(self):
307 hdrs = self.unredirected_hdrs.copy()
308 hdrs.update(self.headers)
309 return hdrs.items()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000310
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000311class OpenerDirector:
312 def __init__(self):
Georg Brandl8d457c72005-06-26 22:01:35 +0000313 client_version = "Python-urllib/%s" % __version__
Georg Brandl8c036cc2006-08-20 13:15:39 +0000314 self.addheaders = [('User-agent', client_version)]
R. David Murray14f66352010-12-23 19:50:56 +0000315 # self.handlers is retained only for backward compatibility
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000316 self.handlers = []
R. David Murray14f66352010-12-23 19:50:56 +0000317 # manage the individual handlers
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000318 self.handle_open = {}
319 self.handle_error = {}
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000320 self.process_response = {}
321 self.process_request = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000322
323 def add_handler(self, handler):
Georg Brandlf91149e2007-07-12 08:05:45 +0000324 if not hasattr(handler, "add_parent"):
325 raise TypeError("expected BaseHandler instance, got %r" %
326 type(handler))
327
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000328 added = False
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000329 for meth in dir(handler):
Georg Brandl261e2512006-05-29 20:52:54 +0000330 if meth in ["redirect_request", "do_open", "proxy_open"]:
331 # oops, coincidental match
332 continue
333
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000334 i = meth.find("_")
335 protocol = meth[:i]
336 condition = meth[i+1:]
337
338 if condition.startswith("error"):
Neal Norwitz1cdd3632004-06-07 03:49:50 +0000339 j = condition.find("_") + i + 1
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000340 kind = meth[j+1:]
341 try:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000342 kind = int(kind)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000343 except ValueError:
344 pass
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000345 lookup = self.handle_error.get(protocol, {})
346 self.handle_error[protocol] = lookup
347 elif condition == "open":
348 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000349 lookup = self.handle_open
350 elif condition == "response":
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000351 kind = protocol
Raymond Hettingerf7bf02d2005-02-05 14:37:06 +0000352 lookup = self.process_response
353 elif condition == "request":
354 kind = protocol
355 lookup = self.process_request
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000356 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000357 continue
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000358
359 handlers = lookup.setdefault(kind, [])
360 if handlers:
361 bisect.insort(handlers, handler)
362 else:
363 handlers.append(handler)
364 added = True
365
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000366 if added:
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000367 bisect.insort(self.handlers, handler)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000368 handler.add_parent(self)
Tim Peterse1190062001-01-15 03:34:38 +0000369
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000370 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000371 # Only exists for backwards compatibility.
372 pass
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000373
374 def _call_chain(self, chain, kind, meth_name, *args):
Georg Brandlc5ffd912006-04-02 20:48:11 +0000375 # Handlers raise an exception if no one else should try to handle
376 # the request, or return None if they can't but another handler
377 # could. Otherwise, they return the response.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000378 handlers = chain.get(kind, ())
379 for handler in handlers:
380 func = getattr(handler, meth_name)
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000381
382 result = func(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000383 if result is not None:
384 return result
385
Facundo Batista4f1b1ed2008-05-29 16:39:26 +0000386 def open(self, fullurl, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT):
Fred Drake13a2c272000-02-10 17:17:14 +0000387 # accept a URL or a Request object
Walter Dörwald65230a22002-06-03 15:58:32 +0000388 if isinstance(fullurl, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000389 req = Request(fullurl, data)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000390 else:
391 req = fullurl
392 if data is not None:
393 req.add_data(data)
Tim Peterse1190062001-01-15 03:34:38 +0000394
Facundo Batista10951d52007-06-06 17:15:23 +0000395 req.timeout = timeout
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000396 protocol = req.get_type()
397
398 # pre-process request
399 meth_name = protocol+"_request"
400 for processor in self.process_request.get(protocol, []):
401 meth = getattr(processor, meth_name)
402 req = meth(req)
403
404 response = self._open(req, data)
405
406 # post-process response
407 meth_name = protocol+"_response"
408 for processor in self.process_response.get(protocol, []):
409 meth = getattr(processor, meth_name)
410 response = meth(req, response)
411
412 return response
413
414 def _open(self, req, data=None):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000415 result = self._call_chain(self.handle_open, 'default',
Tim Peterse1190062001-01-15 03:34:38 +0000416 'default_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000417 if result:
418 return result
419
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000420 protocol = req.get_type()
421 result = self._call_chain(self.handle_open, protocol, protocol +
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000422 '_open', req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000423 if result:
424 return result
425
426 return self._call_chain(self.handle_open, 'unknown',
427 'unknown_open', req)
428
429 def error(self, proto, *args):
Raymond Hettingerdbecd932005-02-06 06:57:08 +0000430 if proto in ('http', 'https'):
Fred Draked5214b02001-11-08 17:19:29 +0000431 # XXX http[s] protocols are special-cased
432 dict = self.handle_error['http'] # https is not different than http
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000433 proto = args[2] # YUCK!
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000434 meth_name = 'http_error_%s' % proto
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000435 http_err = 1
436 orig_args = args
437 else:
438 dict = self.handle_error
439 meth_name = proto + '_error'
440 http_err = 0
441 args = (dict, proto, meth_name) + args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000442 result = self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000443 if result:
444 return result
445
446 if http_err:
447 args = (dict, 'default', 'http_error_default') + orig_args
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000448 return self._call_chain(*args)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000449
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000450# XXX probably also want an abstract factory that knows when it makes
451# sense to skip a superclass in favor of a subclass and when it might
452# make sense to include both
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000453
454def build_opener(*handlers):
455 """Create an opener object from a list of handlers.
456
457 The opener will use several default handlers, including support
Senthil Kumaran51200272009-11-15 06:10:30 +0000458 for HTTP, FTP and when applicable, HTTPS.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000459
460 If any of the handlers passed as arguments are subclasses of the
461 default handlers, the default handlers will not be used.
462 """
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000463 import types
464 def isclass(obj):
Benjamin Peterson4bb96fe2009-02-12 04:17:04 +0000465 return isinstance(obj, (types.ClassType, type))
Tim Peterse1190062001-01-15 03:34:38 +0000466
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000467 opener = OpenerDirector()
468 default_classes = [ProxyHandler, UnknownHandler, HTTPHandler,
469 HTTPDefaultErrorHandler, HTTPRedirectHandler,
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000470 FTPHandler, FileHandler, HTTPErrorProcessor]
Moshe Zadka8a18e992001-03-01 08:40:42 +0000471 if hasattr(httplib, 'HTTPS'):
472 default_classes.append(HTTPSHandler)
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000473 skip = set()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000474 for klass in default_classes:
475 for check in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000476 if isclass(check):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000477 if issubclass(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000478 skip.add(klass)
Jeremy Hylton8b78b992001-10-09 16:18:45 +0000479 elif isinstance(check, klass):
Amaury Forgeot d'Arc96865852008-04-22 21:14:41 +0000480 skip.add(klass)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000481 for klass in skip:
482 default_classes.remove(klass)
483
484 for klass in default_classes:
485 opener.add_handler(klass())
486
487 for h in handlers:
Georg Brandl9d6da3e2006-05-17 15:17:00 +0000488 if isclass(h):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000489 h = h()
490 opener.add_handler(h)
491 return opener
492
493class BaseHandler:
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000494 handler_order = 500
495
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000496 def add_parent(self, parent):
497 self.parent = parent
Tim Peters58eb11c2004-01-18 20:29:55 +0000498
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000499 def close(self):
Jeremy Hyltondce391c2003-12-15 16:08:48 +0000500 # Only exists for backwards compatibility
501 pass
Tim Peters58eb11c2004-01-18 20:29:55 +0000502
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000503 def __lt__(self, other):
504 if not hasattr(other, "handler_order"):
505 # Try to preserve the old behavior of having custom classes
506 # inserted after default ones (works only for custom user
507 # classes which are not aware of handler_order).
508 return True
509 return self.handler_order < other.handler_order
Tim Petersf545baa2003-06-15 23:26:30 +0000510
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000511
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000512class HTTPErrorProcessor(BaseHandler):
513 """Process HTTP error responses."""
514 handler_order = 1000 # after all other processing
515
516 def http_response(self, request, response):
517 code, msg, hdrs = response.code, response.msg, response.info()
518
Neal Norwitz0d4c06e2007-04-25 06:30:05 +0000519 # According to RFC 2616, "2xx" code indicates that the client's
Facundo Batista9fab9f12007-04-23 17:08:31 +0000520 # request was successfully received, understood, and accepted.
521 if not (200 <= code < 300):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000522 response = self.parent.error(
523 'http', request, response, code, msg, hdrs)
524
525 return response
526
527 https_response = http_response
528
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000529class HTTPDefaultErrorHandler(BaseHandler):
530 def http_error_default(self, req, fp, code, msg, hdrs):
Fred Drake13a2c272000-02-10 17:17:14 +0000531 raise HTTPError(req.get_full_url(), code, msg, hdrs, fp)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000532
533class HTTPRedirectHandler(BaseHandler):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000534 # maximum number of redirections to any single URL
535 # this is needed because of the state that cookies introduce
536 max_repeats = 4
537 # maximum total number of redirections (regardless of URL) before
538 # assuming we're in a loop
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000539 max_redirections = 10
540
Jeremy Hylton03892952003-05-05 04:09:13 +0000541 def redirect_request(self, req, fp, code, msg, headers, newurl):
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000542 """Return a Request or None in response to a redirect.
543
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000544 This is called by the http_error_30x methods when a
545 redirection response is received. If a redirection should
546 take place, return a new Request to allow http_error_30x to
547 perform the redirect. Otherwise, raise HTTPError if no-one
548 else should try to handle this url. Return None if you can't
549 but another Handler might.
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000550 """
Jeremy Hylton828023b2003-05-04 23:44:49 +0000551 m = req.get_method()
552 if (code in (301, 302, 303, 307) and m in ("GET", "HEAD")
Martin v. Löwis162f0812003-07-12 07:33:32 +0000553 or code in (301, 302, 303) and m == "POST"):
554 # Strictly (according to RFC 2616), 301 or 302 in response
555 # to a POST MUST NOT cause a redirection without confirmation
Jeremy Hylton828023b2003-05-04 23:44:49 +0000556 # from the user (of urllib2, in this case). In practice,
557 # essentially all clients do redirect in this case, so we
558 # do the same.
Georg Brandlddb84d72006-03-18 11:35:18 +0000559 # be conciliant with URIs containing a space
560 newurl = newurl.replace(' ', '%20')
Facundo Batista86371d62008-02-07 19:06:52 +0000561 newheaders = dict((k,v) for k,v in req.headers.items()
562 if k.lower() not in ("content-length", "content-type")
563 )
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000564 return Request(newurl,
Facundo Batista86371d62008-02-07 19:06:52 +0000565 headers=newheaders,
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000566 origin_req_host=req.get_origin_req_host(),
567 unverifiable=True)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000568 else:
Martin v. Löwise3b67bc2003-06-14 05:51:25 +0000569 raise HTTPError(req.get_full_url(), code, msg, headers, fp)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000570
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000571 # Implementation note: To avoid the server sending us into an
572 # infinite loop, the request object needs to track what URLs we
573 # have already seen. Do this by adding a handler-specific
574 # attribute to the Request object.
575 def http_error_302(self, req, fp, code, msg, headers):
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000576 # Some servers (incorrectly) return multiple Location headers
577 # (so probably same goes for URI). Use first header.
Raymond Hettinger54f02222002-06-01 14:18:47 +0000578 if 'location' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000579 newurl = headers.getheaders('location')[0]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000580 elif 'uri' in headers:
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000581 newurl = headers.getheaders('uri')[0]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000582 else:
583 return
Facundo Batista94f243a2008-08-17 03:38:39 +0000584
585 # fix a possible malformed URL
586 urlparts = urlparse.urlparse(newurl)
587 if not urlparts.path:
588 urlparts = list(urlparts)
589 urlparts[2] = "/"
590 newurl = urlparse.urlunparse(urlparts)
591
Jeremy Hylton73574ee2000-10-12 18:54:18 +0000592 newurl = urlparse.urljoin(req.get_full_url(), newurl)
593
guido@google.com60a4a902011-03-24 08:07:45 -0700594 # For security reasons we do not allow redirects to protocols
guido@google.com2bc23b82011-03-24 10:44:17 -0700595 # other than HTTP, HTTPS or FTP.
guido@google.com60a4a902011-03-24 08:07:45 -0700596 newurl_lower = newurl.lower()
597 if not (newurl_lower.startswith('http://') or
guido@google.com2bc23b82011-03-24 10:44:17 -0700598 newurl_lower.startswith('https://') or
599 newurl_lower.startswith('ftp://')):
guido@google.comf1509302011-03-28 13:47:01 -0700600 raise HTTPError(newurl, code,
601 msg + " - Redirection to url '%s' is not allowed" %
602 newurl,
603 headers, fp)
guido@google.com60a4a902011-03-24 08:07:45 -0700604
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000605 # XXX Probably want to forget about the state of the current
606 # request, although that might interact poorly with other
607 # handlers that also use handler-specific request attributes
Jeremy Hylton03892952003-05-05 04:09:13 +0000608 new = self.redirect_request(req, fp, code, msg, headers, newurl)
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000609 if new is None:
610 return
611
612 # loop detection
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000613 # .redirect_dict has a key url if url was previously visited.
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000614 if hasattr(req, 'redirect_dict'):
615 visited = new.redirect_dict = req.redirect_dict
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000616 if (visited.get(newurl, 0) >= self.max_repeats or
617 len(visited) >= self.max_redirections):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000618 raise HTTPError(req.get_full_url(), code,
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000619 self.inf_msg + msg, headers, fp)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +0000620 else:
621 visited = new.redirect_dict = req.redirect_dict = {}
Martin v. Löwis2a6ba902004-05-31 18:22:40 +0000622 visited[newurl] = visited.get(newurl, 0) + 1
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000623
624 # Don't close the fp until we are sure that we won't use it
Tim Petersab9ba272001-08-09 21:40:30 +0000625 # with HTTPError.
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000626 fp.read()
627 fp.close()
628
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000629 return self.parent.open(new, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000630
Raymond Hettinger024aaa12003-04-24 15:32:12 +0000631 http_error_301 = http_error_303 = http_error_307 = http_error_302
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000632
Martin v. Löwis162f0812003-07-12 07:33:32 +0000633 inf_msg = "The HTTP server returned a redirect error that would " \
Thomas Wouters7e474022000-07-16 12:04:32 +0000634 "lead to an infinite loop.\n" \
Martin v. Löwis162f0812003-07-12 07:33:32 +0000635 "The last 30x error message was:\n"
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000636
Georg Brandl720096a2006-04-02 20:45:34 +0000637
638def _parse_proxy(proxy):
639 """Return (scheme, user, password, host/port) given a URL or an authority.
640
641 If a URL is supplied, it must have an authority (host:port) component.
642 According to RFC 3986, having an authority component means the URL must
643 have two slashes after the scheme:
644
645 >>> _parse_proxy('file:/ftp.example.com/')
646 Traceback (most recent call last):
647 ValueError: proxy URL with no authority: 'file:/ftp.example.com/'
648
649 The first three items of the returned tuple may be None.
650
651 Examples of authority parsing:
652
653 >>> _parse_proxy('proxy.example.com')
654 (None, None, None, 'proxy.example.com')
655 >>> _parse_proxy('proxy.example.com:3128')
656 (None, None, None, 'proxy.example.com:3128')
657
658 The authority component may optionally include userinfo (assumed to be
659 username:password):
660
661 >>> _parse_proxy('joe:password@proxy.example.com')
662 (None, 'joe', 'password', 'proxy.example.com')
663 >>> _parse_proxy('joe:password@proxy.example.com:3128')
664 (None, 'joe', 'password', 'proxy.example.com:3128')
665
666 Same examples, but with URLs instead:
667
668 >>> _parse_proxy('http://proxy.example.com/')
669 ('http', None, None, 'proxy.example.com')
670 >>> _parse_proxy('http://proxy.example.com:3128/')
671 ('http', None, None, 'proxy.example.com:3128')
672 >>> _parse_proxy('http://joe:password@proxy.example.com/')
673 ('http', 'joe', 'password', 'proxy.example.com')
674 >>> _parse_proxy('http://joe:password@proxy.example.com:3128')
675 ('http', 'joe', 'password', 'proxy.example.com:3128')
676
677 Everything after the authority is ignored:
678
679 >>> _parse_proxy('ftp://joe:password@proxy.example.com/rubbish:3128')
680 ('ftp', 'joe', 'password', 'proxy.example.com')
681
682 Test for no trailing '/' case:
683
684 >>> _parse_proxy('http://joe:password@proxy.example.com')
685 ('http', 'joe', 'password', 'proxy.example.com')
686
687 """
Georg Brandl720096a2006-04-02 20:45:34 +0000688 scheme, r_scheme = splittype(proxy)
689 if not r_scheme.startswith("/"):
690 # authority
691 scheme = None
692 authority = proxy
693 else:
694 # URL
695 if not r_scheme.startswith("//"):
696 raise ValueError("proxy URL with no authority: %r" % proxy)
697 # We have an authority, so for RFC 3986-compliant URLs (by ss 3.
698 # and 3.3.), path is empty or starts with '/'
699 end = r_scheme.find("/", 2)
700 if end == -1:
701 end = None
702 authority = r_scheme[2:end]
703 userinfo, hostport = splituser(authority)
704 if userinfo is not None:
705 user, password = splitpasswd(userinfo)
706 else:
707 user = password = None
708 return scheme, user, password, hostport
709
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000710class ProxyHandler(BaseHandler):
Gustavo Niemeyer9556fba2003-06-07 17:53:08 +0000711 # Proxies must be in front
712 handler_order = 100
713
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000714 def __init__(self, proxies=None):
Fred Drake13a2c272000-02-10 17:17:14 +0000715 if proxies is None:
716 proxies = getproxies()
717 assert hasattr(proxies, 'has_key'), "proxies must be a mapping"
718 self.proxies = proxies
Brett Cannondf0d87a2003-05-18 02:25:07 +0000719 for type, url in proxies.items():
Tim Peterse1190062001-01-15 03:34:38 +0000720 setattr(self, '%s_open' % type,
Fred Drake13a2c272000-02-10 17:17:14 +0000721 lambda r, proxy=url, type=type, meth=self.proxy_open: \
722 meth(r, proxy, type))
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000723
724 def proxy_open(self, req, proxy, type):
Fred Drake13a2c272000-02-10 17:17:14 +0000725 orig_type = req.get_type()
Georg Brandl720096a2006-04-02 20:45:34 +0000726 proxy_type, user, password, hostport = _parse_proxy(proxy)
Senthil Kumaran27468662009-10-11 02:00:07 +0000727
Georg Brandl720096a2006-04-02 20:45:34 +0000728 if proxy_type is None:
729 proxy_type = orig_type
Senthil Kumaran27468662009-10-11 02:00:07 +0000730
731 if req.host and proxy_bypass(req.host):
732 return None
733
Georg Brandl531ceba2006-01-21 07:20:56 +0000734 if user and password:
Georg Brandl720096a2006-04-02 20:45:34 +0000735 user_pass = '%s:%s' % (unquote(user), unquote(password))
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000736 creds = base64.b64encode(user_pass).strip()
Georg Brandl8c036cc2006-08-20 13:15:39 +0000737 req.add_header('Proxy-authorization', 'Basic ' + creds)
Georg Brandl720096a2006-04-02 20:45:34 +0000738 hostport = unquote(hostport)
739 req.set_proxy(hostport, proxy_type)
Senthil Kumaran27468662009-10-11 02:00:07 +0000740
Senthil Kumarane266f252009-05-24 09:14:50 +0000741 if orig_type == proxy_type or orig_type == 'https':
Fred Drake13a2c272000-02-10 17:17:14 +0000742 # let other handlers take care of it
Fred Drake13a2c272000-02-10 17:17:14 +0000743 return None
744 else:
745 # need to start over, because the other handlers don't
746 # grok the proxy's URL type
Georg Brandl720096a2006-04-02 20:45:34 +0000747 # e.g. if we have a constructor arg proxies like so:
748 # {'http': 'ftp://proxy.example.com'}, we may end up turning
749 # a request for http://acme.example.com/a into one for
750 # ftp://proxy.example.com/a
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000751 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000752
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000753class HTTPPasswordMgr:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000754
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000755 def __init__(self):
Fred Drake13a2c272000-02-10 17:17:14 +0000756 self.passwd = {}
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000757
758 def add_password(self, realm, uri, user, passwd):
Fred Drake13a2c272000-02-10 17:17:14 +0000759 # uri could be a single URI or a sequence
Walter Dörwald65230a22002-06-03 15:58:32 +0000760 if isinstance(uri, basestring):
Fred Drake13a2c272000-02-10 17:17:14 +0000761 uri = [uri]
Raymond Hettinger54f02222002-06-01 14:18:47 +0000762 if not realm in self.passwd:
Fred Drake13a2c272000-02-10 17:17:14 +0000763 self.passwd[realm] = {}
Georg Brandl2b330372006-05-28 20:23:12 +0000764 for default_port in True, False:
765 reduced_uri = tuple(
766 [self.reduce_uri(u, default_port) for u in uri])
767 self.passwd[realm][reduced_uri] = (user, passwd)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000768
769 def find_user_password(self, realm, authuri):
Fred Drake13a2c272000-02-10 17:17:14 +0000770 domains = self.passwd.get(realm, {})
Georg Brandl2b330372006-05-28 20:23:12 +0000771 for default_port in True, False:
772 reduced_authuri = self.reduce_uri(authuri, default_port)
773 for uris, authinfo in domains.iteritems():
774 for uri in uris:
775 if self.is_suburi(uri, reduced_authuri):
776 return authinfo
Fred Drake13a2c272000-02-10 17:17:14 +0000777 return None, None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000778
Georg Brandl2b330372006-05-28 20:23:12 +0000779 def reduce_uri(self, uri, default_port=True):
780 """Accept authority or URI and extract only the authority and path."""
781 # note HTTP URLs do not have a userinfo component
Georg Brandlfa42bd72006-04-30 07:06:11 +0000782 parts = urlparse.urlsplit(uri)
Fred Drake13a2c272000-02-10 17:17:14 +0000783 if parts[1]:
Georg Brandlfa42bd72006-04-30 07:06:11 +0000784 # URI
Georg Brandl2b330372006-05-28 20:23:12 +0000785 scheme = parts[0]
786 authority = parts[1]
787 path = parts[2] or '/'
Fred Drake13a2c272000-02-10 17:17:14 +0000788 else:
Georg Brandl2b330372006-05-28 20:23:12 +0000789 # host or host:port
790 scheme = None
791 authority = uri
792 path = '/'
793 host, port = splitport(authority)
794 if default_port and port is None and scheme is not None:
795 dport = {"http": 80,
796 "https": 443,
797 }.get(scheme)
798 if dport is not None:
799 authority = "%s:%d" % (host, dport)
800 return authority, path
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000801
802 def is_suburi(self, base, test):
Fred Drake13a2c272000-02-10 17:17:14 +0000803 """Check if test is below base in a URI tree
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000804
Fred Drake13a2c272000-02-10 17:17:14 +0000805 Both args must be URIs in reduced form.
806 """
807 if base == test:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000808 return True
Fred Drake13a2c272000-02-10 17:17:14 +0000809 if base[0] != test[0]:
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000810 return False
Moshe Zadka8a18e992001-03-01 08:40:42 +0000811 common = posixpath.commonprefix((base[1], test[1]))
Fred Drake13a2c272000-02-10 17:17:14 +0000812 if len(common) == len(base[1]):
Guido van Rossum8ca162f2002-04-07 06:36:23 +0000813 return True
814 return False
Tim Peterse1190062001-01-15 03:34:38 +0000815
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000816
Moshe Zadka8a18e992001-03-01 08:40:42 +0000817class HTTPPasswordMgrWithDefaultRealm(HTTPPasswordMgr):
818
819 def find_user_password(self, realm, authuri):
Jeremy Hyltonaefae552003-07-10 13:30:12 +0000820 user, password = HTTPPasswordMgr.find_user_password(self, realm,
821 authuri)
Moshe Zadka8a18e992001-03-01 08:40:42 +0000822 if user is not None:
823 return user, password
824 return HTTPPasswordMgr.find_user_password(self, None, authuri)
825
826
827class AbstractBasicAuthHandler:
828
Georg Brandl172e7252007-03-07 07:39:06 +0000829 # XXX this allows for multiple auth-schemes, but will stupidly pick
830 # the last one with a realm specified.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000831
Georg Brandl33124322008-03-21 19:54:00 +0000832 # allow for double- and single-quoted realm values
833 # (single quotes are a violation of the RFC, but appear in the wild)
834 rx = re.compile('(?:.*,)*[ \t]*([^ \t]+)[ \t]+'
Senthil Kumaran6a2a6c22012-05-15 22:24:10 +0800835 'realm=(["\']?)([^"\']*)\\2', re.I)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000836
Georg Brandl261e2512006-05-29 20:52:54 +0000837 # XXX could pre-emptively send auth info already accepted (RFC 2617,
838 # end of section 2, and section 1.2 immediately after "credentials"
839 # production).
840
Moshe Zadka8a18e992001-03-01 08:40:42 +0000841 def __init__(self, password_mgr=None):
842 if password_mgr is None:
843 password_mgr = HTTPPasswordMgr()
844 self.passwd = password_mgr
Fred Drake13a2c272000-02-10 17:17:14 +0000845 self.add_password = self.passwd.add_password
Tim Peterse1190062001-01-15 03:34:38 +0000846
Senthil Kumaran4f1ba0d2010-08-19 17:32:03 +0000847
Moshe Zadka8a18e992001-03-01 08:40:42 +0000848 def http_error_auth_reqed(self, authreq, host, req, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000849 # host may be an authority (without userinfo) or a URL with an
850 # authority
Moshe Zadka8a18e992001-03-01 08:40:42 +0000851 # XXX could be multiple headers
852 authreq = headers.get(authreq, None)
Senthil Kumaran4f0108b2010-06-01 12:40:07 +0000853
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000854 if authreq:
Martin v. Löwis65a79752004-08-03 12:59:55 +0000855 mo = AbstractBasicAuthHandler.rx.search(authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000856 if mo:
Georg Brandl33124322008-03-21 19:54:00 +0000857 scheme, quote, realm = mo.groups()
Senthil Kumaranb0d85fd2012-05-15 23:59:19 +0800858 if quote not in ['"', "'"]:
859 warnings.warn("Basic Auth Realm was unquoted",
860 UserWarning, 2)
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000861 if scheme.lower() == 'basic':
Senthil Kumaran0088b622014-08-20 07:52:59 +0530862 return self.retry_http_basic_auth(host, req, realm)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000863
Moshe Zadka8a18e992001-03-01 08:40:42 +0000864 def retry_http_basic_auth(self, host, req, realm):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000865 user, pw = self.passwd.find_user_password(realm, host)
Martin v. Löwis8b3e8712004-05-06 01:41:26 +0000866 if pw is not None:
Fred Drake13a2c272000-02-10 17:17:14 +0000867 raw = "%s:%s" % (user, pw)
Andrew M. Kuchling872dba42006-10-27 17:11:23 +0000868 auth = 'Basic %s' % base64.b64encode(raw).strip()
Senthil Kumaran0088b622014-08-20 07:52:59 +0530869 if req.get_header(self.auth_header, None) == auth:
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000870 return None
Senthil Kumaran8526adf2010-02-24 16:45:46 +0000871 req.add_unredirected_header(self.auth_header, auth)
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000872 return self.parent.open(req, timeout=req.timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000873 else:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000874 return None
875
Georg Brandlfa42bd72006-04-30 07:06:11 +0000876
Moshe Zadka8a18e992001-03-01 08:40:42 +0000877class HTTPBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000878
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000879 auth_header = 'Authorization'
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000880
Moshe Zadka8a18e992001-03-01 08:40:42 +0000881 def http_error_401(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000882 url = req.get_full_url()
Senthil Kumaran4f1ba0d2010-08-19 17:32:03 +0000883 response = self.http_error_auth_reqed('www-authenticate',
884 url, req, headers)
Senthil Kumaran4f1ba0d2010-08-19 17:32:03 +0000885 return response
Moshe Zadka8a18e992001-03-01 08:40:42 +0000886
887
888class ProxyBasicAuthHandler(AbstractBasicAuthHandler, BaseHandler):
889
Georg Brandl8c036cc2006-08-20 13:15:39 +0000890 auth_header = 'Proxy-authorization'
Moshe Zadka8a18e992001-03-01 08:40:42 +0000891
892 def http_error_407(self, req, fp, code, msg, headers):
Georg Brandlfa42bd72006-04-30 07:06:11 +0000893 # http_error_auth_reqed requires that there is no userinfo component in
894 # authority. Assume there isn't one, since urllib2 does not (and
895 # should not, RFC 3986 s. 3.2.1) support requests for URLs containing
896 # userinfo.
897 authority = req.get_host()
Senthil Kumaran4f1ba0d2010-08-19 17:32:03 +0000898 response = self.http_error_auth_reqed('proxy-authenticate',
Georg Brandlfa42bd72006-04-30 07:06:11 +0000899 authority, req, headers)
Senthil Kumaran4f1ba0d2010-08-19 17:32:03 +0000900 return response
Moshe Zadka8a18e992001-03-01 08:40:42 +0000901
902
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000903def randombytes(n):
904 """Return n random bytes."""
905 # Use /dev/urandom if it is available. Fall back to random module
906 # if not. It might be worthwhile to extend this function to use
907 # other platform-specific mechanisms for getting random bytes.
908 if os.path.exists("/dev/urandom"):
909 f = open("/dev/urandom")
910 s = f.read(n)
911 f.close()
912 return s
913 else:
914 L = [chr(random.randrange(0, 256)) for i in range(n)]
915 return "".join(L)
916
Moshe Zadka8a18e992001-03-01 08:40:42 +0000917class AbstractDigestAuthHandler:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000918 # Digest authentication is specified in RFC 2617.
919
920 # XXX The client does not inspect the Authentication-Info header
921 # in a successful response.
922
923 # XXX It should be possible to test this implementation against
924 # a mock server that just generates a static set of challenges.
925
926 # XXX qop="auth-int" supports is shaky
Moshe Zadka8a18e992001-03-01 08:40:42 +0000927
928 def __init__(self, passwd=None):
929 if passwd is None:
Jeremy Hylton54e99e82001-08-07 21:12:25 +0000930 passwd = HTTPPasswordMgr()
Moshe Zadka8a18e992001-03-01 08:40:42 +0000931 self.passwd = passwd
Fred Drake13a2c272000-02-10 17:17:14 +0000932 self.add_password = self.passwd.add_password
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000933 self.retried = 0
934 self.nonce_count = 0
Senthil Kumaran20eb4f02009-11-15 08:36:20 +0000935 self.last_nonce = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000936
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000937 def reset_retry_count(self):
938 self.retried = 0
939
940 def http_error_auth_reqed(self, auth_header, host, req, headers):
941 authreq = headers.get(auth_header, None)
942 if self.retried > 5:
943 # Don't fail endlessly - if we failed once, we'll probably
944 # fail a second time. Hm. Unless the Password Manager is
945 # prompting for the information. Crap. This isn't great
946 # but it's better than the current 'repeat until recursion
947 # depth exceeded' approach <wink>
Tim Peters58eb11c2004-01-18 20:29:55 +0000948 raise HTTPError(req.get_full_url(), 401, "digest auth failed",
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000949 headers, None)
950 else:
951 self.retried += 1
Fred Drake13a2c272000-02-10 17:17:14 +0000952 if authreq:
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000953 scheme = authreq.split()[0]
954 if scheme.lower() == 'digest':
Fred Drake13a2c272000-02-10 17:17:14 +0000955 return self.retry_http_digest_auth(req, authreq)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000956
957 def retry_http_digest_auth(self, req, auth):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +0000958 token, challenge = auth.split(' ', 1)
Fred Drake13a2c272000-02-10 17:17:14 +0000959 chal = parse_keqv_list(parse_http_list(challenge))
960 auth = self.get_authorization(req, chal)
961 if auth:
Jeremy Hylton52a17be2001-11-09 16:46:51 +0000962 auth_val = 'Digest %s' % auth
963 if req.headers.get(self.auth_header, None) == auth_val:
964 return None
Georg Brandl852bb002006-05-03 05:05:02 +0000965 req.add_unredirected_header(self.auth_header, auth_val)
Senthil Kumaran5fee4602009-07-19 02:43:43 +0000966 resp = self.parent.open(req, timeout=req.timeout)
Fred Drake13a2c272000-02-10 17:17:14 +0000967 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000968
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000969 def get_cnonce(self, nonce):
970 # The cnonce-value is an opaque
971 # quoted string value provided by the client and used by both client
972 # and server to avoid chosen plaintext attacks, to provide mutual
973 # authentication, and to provide some message integrity protection.
974 # This isn't a fabulous effort, but it's probably Good Enough.
Georg Brandlbffb0bc2006-04-30 08:57:35 +0000975 dig = hashlib.sha1("%s:%s:%s:%s" % (self.nonce_count, nonce, time.ctime(),
976 randombytes(8))).hexdigest()
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000977 return dig[:16]
978
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000979 def get_authorization(self, req, chal):
Fred Drake13a2c272000-02-10 17:17:14 +0000980 try:
981 realm = chal['realm']
982 nonce = chal['nonce']
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000983 qop = chal.get('qop')
Fred Drake13a2c272000-02-10 17:17:14 +0000984 algorithm = chal.get('algorithm', 'MD5')
985 # mod_digest doesn't send an opaque, even though it isn't
986 # supposed to be optional
987 opaque = chal.get('opaque', None)
988 except KeyError:
989 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000990
Fred Drake13a2c272000-02-10 17:17:14 +0000991 H, KD = self.get_algorithm_impls(algorithm)
992 if H is None:
993 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000994
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +0000995 user, pw = self.passwd.find_user_password(realm, req.get_full_url())
Fred Drake13a2c272000-02-10 17:17:14 +0000996 if user is None:
997 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +0000998
Fred Drake13a2c272000-02-10 17:17:14 +0000999 # XXX not implemented yet
1000 if req.has_data():
1001 entdig = self.get_entity_digest(req.get_data(), chal)
1002 else:
1003 entdig = None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001004
Fred Drake13a2c272000-02-10 17:17:14 +00001005 A1 = "%s:%s:%s" % (user, realm, pw)
Johannes Gijsberscdd625a2005-01-09 05:51:49 +00001006 A2 = "%s:%s" % (req.get_method(),
Fred Drake13a2c272000-02-10 17:17:14 +00001007 # XXX selector: what about proxies and full urls
1008 req.get_selector())
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001009 if qop == 'auth':
Senthil Kumaran20eb4f02009-11-15 08:36:20 +00001010 if nonce == self.last_nonce:
1011 self.nonce_count += 1
1012 else:
1013 self.nonce_count = 1
1014 self.last_nonce = nonce
1015
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001016 ncvalue = '%08x' % self.nonce_count
1017 cnonce = self.get_cnonce(nonce)
1018 noncebit = "%s:%s:%s:%s:%s" % (nonce, ncvalue, cnonce, qop, H(A2))
1019 respdig = KD(H(A1), noncebit)
1020 elif qop is None:
1021 respdig = KD(H(A1), "%s:%s" % (nonce, H(A2)))
1022 else:
1023 # XXX handle auth-int.
Georg Brandlff871222007-06-07 13:34:10 +00001024 raise URLError("qop '%s' is not supported." % qop)
Tim Peters58eb11c2004-01-18 20:29:55 +00001025
Fred Drake13a2c272000-02-10 17:17:14 +00001026 # XXX should the partial digests be encoded too?
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001027
Fred Drake13a2c272000-02-10 17:17:14 +00001028 base = 'username="%s", realm="%s", nonce="%s", uri="%s", ' \
1029 'response="%s"' % (user, realm, nonce, req.get_selector(),
1030 respdig)
1031 if opaque:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001032 base += ', opaque="%s"' % opaque
Fred Drake13a2c272000-02-10 17:17:14 +00001033 if entdig:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001034 base += ', digest="%s"' % entdig
1035 base += ', algorithm="%s"' % algorithm
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001036 if qop:
Jeremy Hyltonb300ae32004-12-22 14:27:19 +00001037 base += ', qop=auth, nc=%s, cnonce="%s"' % (ncvalue, cnonce)
Fred Drake13a2c272000-02-10 17:17:14 +00001038 return base
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001039
1040 def get_algorithm_impls(self, algorithm):
Georg Brandl8d66dcd2008-05-04 21:40:44 +00001041 # algorithm should be case-insensitive according to RFC2617
1042 algorithm = algorithm.upper()
Fred Drake13a2c272000-02-10 17:17:14 +00001043 # lambdas assume digest modules are imported at the top level
1044 if algorithm == 'MD5':
Georg Brandlbffb0bc2006-04-30 08:57:35 +00001045 H = lambda x: hashlib.md5(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +00001046 elif algorithm == 'SHA':
Georg Brandlbffb0bc2006-04-30 08:57:35 +00001047 H = lambda x: hashlib.sha1(x).hexdigest()
Fred Drake13a2c272000-02-10 17:17:14 +00001048 # XXX MD5-sess
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001049 KD = lambda s, d: H("%s:%s" % (s, d))
Fred Drake13a2c272000-02-10 17:17:14 +00001050 return H, KD
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001051
1052 def get_entity_digest(self, data, chal):
Fred Drake13a2c272000-02-10 17:17:14 +00001053 # XXX not implemented yet
1054 return None
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001055
Moshe Zadka8a18e992001-03-01 08:40:42 +00001056
1057class HTTPDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1058 """An authentication protocol defined by RFC 2069
1059
1060 Digest authentication improves on basic authentication because it
1061 does not transmit passwords in the clear.
1062 """
1063
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001064 auth_header = 'Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001065 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001066
1067 def http_error_401(self, req, fp, code, msg, headers):
1068 host = urlparse.urlparse(req.get_full_url())[1]
Tim Peters58eb11c2004-01-18 20:29:55 +00001069 retry = self.http_error_auth_reqed('www-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001070 host, req, headers)
1071 self.reset_retry_count()
1072 return retry
Moshe Zadka8a18e992001-03-01 08:40:42 +00001073
1074
1075class ProxyDigestAuthHandler(BaseHandler, AbstractDigestAuthHandler):
1076
Jeremy Hyltonaefae552003-07-10 13:30:12 +00001077 auth_header = 'Proxy-Authorization'
Georg Brandl261e2512006-05-29 20:52:54 +00001078 handler_order = 490 # before Basic auth
Moshe Zadka8a18e992001-03-01 08:40:42 +00001079
1080 def http_error_407(self, req, fp, code, msg, headers):
1081 host = req.get_host()
Tim Peters58eb11c2004-01-18 20:29:55 +00001082 retry = self.http_error_auth_reqed('proxy-authenticate',
Jeremy Hyltonfcefd0d2003-10-21 18:07:07 +00001083 host, req, headers)
1084 self.reset_retry_count()
1085 return retry
Tim Peterse1190062001-01-15 03:34:38 +00001086
Moshe Zadka8a18e992001-03-01 08:40:42 +00001087class AbstractHTTPHandler(BaseHandler):
1088
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001089 def __init__(self, debuglevel=0):
1090 self._debuglevel = debuglevel
1091
1092 def set_http_debuglevel(self, level):
1093 self._debuglevel = level
1094
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001095 def do_request_(self, request):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001096 host = request.get_host()
1097 if not host:
1098 raise URLError('no host given')
1099
1100 if request.has_data(): # POST
1101 data = request.get_data()
Georg Brandl8c036cc2006-08-20 13:15:39 +00001102 if not request.has_header('Content-type'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001103 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001104 'Content-type',
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001105 'application/x-www-form-urlencoded')
Georg Brandl8c036cc2006-08-20 13:15:39 +00001106 if not request.has_header('Content-length'):
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001107 request.add_unredirected_header(
Georg Brandl8c036cc2006-08-20 13:15:39 +00001108 'Content-length', '%d' % len(data))
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001109
Facundo Batistaeb90b782008-08-16 14:44:07 +00001110 sel_host = host
1111 if request.has_proxy():
1112 scheme, sel = splittype(request.get_selector())
1113 sel_host, sel_path = splithost(sel)
1114
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001115 if not request.has_header('Host'):
Facundo Batistaeb90b782008-08-16 14:44:07 +00001116 request.add_unredirected_header('Host', sel_host)
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001117 for name, value in self.parent.addheaders:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001118 name = name.capitalize()
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001119 if not request.has_header(name):
1120 request.add_unredirected_header(name, value)
1121
1122 return request
1123
Moshe Zadka8a18e992001-03-01 08:40:42 +00001124 def do_open(self, http_class, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001125 """Return an addinfourl object for the request, using http_class.
1126
1127 http_class must implement the HTTPConnection API from httplib.
1128 The addinfourl return value is a file-like object. It also
1129 has methods and attributes including:
1130 - info(): return a mimetools.Message object for the headers
1131 - geturl(): return the original request URL
1132 - code: HTTP status code
1133 """
Moshe Zadka76676802001-04-11 07:44:53 +00001134 host = req.get_host()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001135 if not host:
1136 raise URLError('no host given')
1137
Facundo Batista10951d52007-06-06 17:15:23 +00001138 h = http_class(host, timeout=req.timeout) # will parse host:port
Jeremy Hyltonc1be59f2003-12-14 05:27:34 +00001139 h.set_debuglevel(self._debuglevel)
Tim Peterse1190062001-01-15 03:34:38 +00001140
Senthil Kumaran176c73d2010-09-27 01:40:59 +00001141 headers = dict(req.unredirected_hdrs)
1142 headers.update(dict((k, v) for k, v in req.headers.items()
1143 if k not in headers))
1144
Jeremy Hyltonb3ee6f92004-02-24 19:40:35 +00001145 # We want to make an HTTP/1.1 request, but the addinfourl
1146 # class isn't prepared to deal with a persistent connection.
1147 # It will try to read all remaining data from the socket,
1148 # which will block while the server waits for the next request.
1149 # So make sure the connection gets closed after the (only)
1150 # request.
1151 headers["Connection"] = "close"
Georg Brandl8c036cc2006-08-20 13:15:39 +00001152 headers = dict(
1153 (name.title(), val) for name, val in headers.items())
Senthil Kumarane266f252009-05-24 09:14:50 +00001154
1155 if req._tunnel_host:
Senthil Kumaran7713acf2009-12-20 06:05:13 +00001156 tunnel_headers = {}
1157 proxy_auth_hdr = "Proxy-Authorization"
1158 if proxy_auth_hdr in headers:
1159 tunnel_headers[proxy_auth_hdr] = headers[proxy_auth_hdr]
1160 # Proxy-Authorization should not be sent to origin
1161 # server.
1162 del headers[proxy_auth_hdr]
1163 h.set_tunnel(req._tunnel_host, headers=tunnel_headers)
Senthil Kumarane266f252009-05-24 09:14:50 +00001164
Jeremy Hylton828023b2003-05-04 23:44:49 +00001165 try:
Jeremy Hylton023518a2003-12-17 18:52:16 +00001166 h.request(req.get_method(), req.get_selector(), req.data, headers)
Senthil Kumaran7d7702b2011-07-27 09:37:17 +08001167 except socket.error, err: # XXX what error?
1168 h.close()
1169 raise URLError(err)
1170 else:
Kristján Valur Jónsson3c43fcb2009-01-11 16:23:37 +00001171 try:
1172 r = h.getresponse(buffering=True)
Senthil Kumaran7d7702b2011-07-27 09:37:17 +08001173 except TypeError: # buffering kw not supported
Kristján Valur Jónsson3c43fcb2009-01-11 16:23:37 +00001174 r = h.getresponse()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001175
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001176 # Pick apart the HTTPResponse object to get the addinfourl
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001177 # object initialized properly.
1178
1179 # Wrap the HTTPResponse object in socket's file object adapter
1180 # for Windows. That adapter calls recv(), so delegate recv()
1181 # to read(). This weird wrapping allows the returned object to
1182 # have readline() and readlines() methods.
Tim Peters9ca3f852004-08-08 01:05:14 +00001183
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001184 # XXX It might be better to extract the read buffering code
1185 # out of socket._fileobject() and into a base class.
Tim Peters9ca3f852004-08-08 01:05:14 +00001186
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001187 r.recv = r.read
Georg Brandldd7b0522007-01-21 10:35:10 +00001188 fp = socket._fileobject(r, close=True)
Tim Peters9ca3f852004-08-08 01:05:14 +00001189
Jeremy Hylton5d9c3032004-08-07 17:40:50 +00001190 resp = addinfourl(fp, r.msg, req.get_full_url())
Andrew M. Kuchlingf9ea7c02004-07-10 15:34:34 +00001191 resp.code = r.status
1192 resp.msg = r.reason
1193 return resp
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001194
Moshe Zadka8a18e992001-03-01 08:40:42 +00001195
1196class HTTPHandler(AbstractHTTPHandler):
1197
1198 def http_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001199 return self.do_open(httplib.HTTPConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001200
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001201 http_request = AbstractHTTPHandler.do_request_
Moshe Zadka8a18e992001-03-01 08:40:42 +00001202
1203if hasattr(httplib, 'HTTPS'):
1204 class HTTPSHandler(AbstractHTTPHandler):
1205
1206 def https_open(self, req):
Jeremy Hylton023518a2003-12-17 18:52:16 +00001207 return self.do_open(httplib.HTTPSConnection, req)
Moshe Zadka8a18e992001-03-01 08:40:42 +00001208
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001209 https_request = AbstractHTTPHandler.do_request_
1210
1211class HTTPCookieProcessor(BaseHandler):
1212 def __init__(self, cookiejar=None):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001213 import cookielib
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001214 if cookiejar is None:
Neal Norwitz1cdd3632004-06-07 03:49:50 +00001215 cookiejar = cookielib.CookieJar()
Martin v. Löwis2a6ba902004-05-31 18:22:40 +00001216 self.cookiejar = cookiejar
1217
1218 def http_request(self, request):
1219 self.cookiejar.add_cookie_header(request)
1220 return request
1221
1222 def http_response(self, request, response):
1223 self.cookiejar.extract_cookies(response, request)
1224 return response
1225
1226 https_request = http_request
1227 https_response = http_response
Moshe Zadka8a18e992001-03-01 08:40:42 +00001228
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001229class UnknownHandler(BaseHandler):
1230 def unknown_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001231 type = req.get_type()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001232 raise URLError('unknown url type: %s' % type)
1233
1234def parse_keqv_list(l):
1235 """Parse list of key=value strings where keys are not duplicated."""
1236 parsed = {}
1237 for elt in l:
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001238 k, v = elt.split('=', 1)
Fred Drake13a2c272000-02-10 17:17:14 +00001239 if v[0] == '"' and v[-1] == '"':
1240 v = v[1:-1]
1241 parsed[k] = v
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001242 return parsed
1243
1244def parse_http_list(s):
1245 """Parse lists as described by RFC 2068 Section 2.
Tim Peters9e34c042005-08-26 15:20:46 +00001246
Andrew M. Kuchling22ab06e2004-04-06 19:43:03 +00001247 In particular, parse comma-separated lists where the elements of
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001248 the list may include quoted-strings. A quoted-string could
Georg Brandle1b13d22005-08-24 22:20:32 +00001249 contain a comma. A non-quoted string could have quotes in the
1250 middle. Neither commas nor quotes count if they are escaped.
1251 Only double-quotes count, not single-quotes.
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001252 """
Georg Brandle1b13d22005-08-24 22:20:32 +00001253 res = []
1254 part = ''
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001255
Georg Brandle1b13d22005-08-24 22:20:32 +00001256 escape = quote = False
1257 for cur in s:
1258 if escape:
1259 part += cur
1260 escape = False
1261 continue
1262 if quote:
1263 if cur == '\\':
1264 escape = True
Fred Drake13a2c272000-02-10 17:17:14 +00001265 continue
Georg Brandle1b13d22005-08-24 22:20:32 +00001266 elif cur == '"':
1267 quote = False
1268 part += cur
1269 continue
1270
1271 if cur == ',':
1272 res.append(part)
1273 part = ''
1274 continue
1275
1276 if cur == '"':
1277 quote = True
Tim Peters9e34c042005-08-26 15:20:46 +00001278
Georg Brandle1b13d22005-08-24 22:20:32 +00001279 part += cur
1280
1281 # append last part
1282 if part:
1283 res.append(part)
1284
1285 return [part.strip() for part in res]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001286
Senthil Kumaran7cc0fe42010-08-11 18:18:22 +00001287def _safe_gethostbyname(host):
1288 try:
1289 return socket.gethostbyname(host)
1290 except socket.gaierror:
1291 return None
1292
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001293class FileHandler(BaseHandler):
1294 # Use local file or FTP depending on form of URL
1295 def file_open(self, req):
Fred Drake13a2c272000-02-10 17:17:14 +00001296 url = req.get_selector()
Senthil Kumaran87ed31a2010-07-11 03:18:51 +00001297 if url[:2] == '//' and url[2:3] != '/' and (req.host and
1298 req.host != 'localhost'):
Fred Drake13a2c272000-02-10 17:17:14 +00001299 req.type = 'ftp'
1300 return self.parent.open(req)
1301 else:
1302 return self.open_local_file(req)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001303
1304 # names for the localhost
1305 names = None
1306 def get_names(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001307 if FileHandler.names is None:
Georg Brandl4eb521e2006-04-02 20:37:17 +00001308 try:
Senthil Kumaran13c2ef92009-12-27 09:11:09 +00001309 FileHandler.names = tuple(
1310 socket.gethostbyname_ex('localhost')[2] +
1311 socket.gethostbyname_ex(socket.gethostname())[2])
Georg Brandl4eb521e2006-04-02 20:37:17 +00001312 except socket.gaierror:
1313 FileHandler.names = (socket.gethostbyname('localhost'),)
Fred Drake13a2c272000-02-10 17:17:14 +00001314 return FileHandler.names
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001315
1316 # not entirely sure what the rules are here
1317 def open_local_file(self, req):
Georg Brandl5a096e12007-01-22 19:40:21 +00001318 import email.utils
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001319 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001320 host = req.get_host()
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001321 filename = req.get_selector()
1322 localfile = url2pathname(filename)
Georg Brandlceede5c2007-03-13 08:14:27 +00001323 try:
1324 stats = os.stat(localfile)
1325 size = stats.st_size
1326 modified = email.utils.formatdate(stats.st_mtime, usegmt=True)
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001327 mtype = mimetypes.guess_type(filename)[0]
Georg Brandlceede5c2007-03-13 08:14:27 +00001328 headers = mimetools.Message(StringIO(
1329 'Content-type: %s\nContent-length: %d\nLast-modified: %s\n' %
1330 (mtype or 'text/plain', size, modified)))
1331 if host:
1332 host, port = splitport(host)
1333 if not host or \
Senthil Kumaran7cc0fe42010-08-11 18:18:22 +00001334 (not port and _safe_gethostbyname(host) in self.get_names()):
Senthil Kumaran18e4dd72010-05-08 05:00:11 +00001335 if host:
1336 origurl = 'file://' + host + filename
1337 else:
1338 origurl = 'file://' + filename
1339 return addinfourl(open(localfile, 'rb'), headers, origurl)
Georg Brandlceede5c2007-03-13 08:14:27 +00001340 except OSError, msg:
1341 # urllib2 users shouldn't expect OSErrors coming from urlopen()
1342 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001343 raise URLError('file not on local host')
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001344
1345class FTPHandler(BaseHandler):
1346 def ftp_open(self, req):
Georg Brandl9d6da3e2006-05-17 15:17:00 +00001347 import ftplib
1348 import mimetypes
Fred Drake13a2c272000-02-10 17:17:14 +00001349 host = req.get_host()
1350 if not host:
Neal Norwitz70700942008-01-24 07:40:51 +00001351 raise URLError('ftp error: no host given')
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001352 host, port = splitport(host)
1353 if port is None:
1354 port = ftplib.FTP_PORT
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001355 else:
1356 port = int(port)
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001357
1358 # username/password handling
1359 user, host = splituser(host)
1360 if user:
1361 user, passwd = splitpasswd(user)
1362 else:
1363 passwd = None
1364 host = unquote(host)
Senthil Kumaran9fce5512010-11-20 11:24:08 +00001365 user = user or ''
1366 passwd = passwd or ''
Martin v. Löwisa79449e2004-02-15 21:19:18 +00001367
Jeremy Hylton73574ee2000-10-12 18:54:18 +00001368 try:
1369 host = socket.gethostbyname(host)
1370 except socket.error, msg:
1371 raise URLError(msg)
Fred Drake13a2c272000-02-10 17:17:14 +00001372 path, attrs = splitattr(req.get_selector())
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001373 dirs = path.split('/')
Martin v. Löwis7db04e72004-02-15 20:51:39 +00001374 dirs = map(unquote, dirs)
Fred Drake13a2c272000-02-10 17:17:14 +00001375 dirs, file = dirs[:-1], dirs[-1]
1376 if dirs and not dirs[0]:
1377 dirs = dirs[1:]
Fred Drake13a2c272000-02-10 17:17:14 +00001378 try:
Facundo Batista10951d52007-06-06 17:15:23 +00001379 fw = self.connect_ftp(user, passwd, host, port, dirs, req.timeout)
Fred Drake13a2c272000-02-10 17:17:14 +00001380 type = file and 'I' or 'D'
1381 for attr in attrs:
Kurt B. Kaiser3f7cb5d2004-07-11 17:14:13 +00001382 attr, value = splitvalue(attr)
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001383 if attr.lower() == 'type' and \
Fred Drake13a2c272000-02-10 17:17:14 +00001384 value in ('a', 'A', 'i', 'I', 'd', 'D'):
Eric S. Raymondb08b2d32001-02-09 11:10:16 +00001385 type = value.upper()
Fred Drake13a2c272000-02-10 17:17:14 +00001386 fp, retrlen = fw.retrfile(file, type)
Guido van Rossum833a8d82001-08-24 13:10:13 +00001387 headers = ""
1388 mtype = mimetypes.guess_type(req.get_full_url())[0]
1389 if mtype:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001390 headers += "Content-type: %s\n" % mtype
Fred Drake13a2c272000-02-10 17:17:14 +00001391 if retrlen is not None and retrlen >= 0:
Georg Brandl8c036cc2006-08-20 13:15:39 +00001392 headers += "Content-length: %d\n" % retrlen
Guido van Rossum833a8d82001-08-24 13:10:13 +00001393 sf = StringIO(headers)
1394 headers = mimetools.Message(sf)
Fred Drake13a2c272000-02-10 17:17:14 +00001395 return addinfourl(fp, headers, req.get_full_url())
1396 except ftplib.all_errors, msg:
Neal Norwitz70700942008-01-24 07:40:51 +00001397 raise URLError, ('ftp error: %s' % msg), sys.exc_info()[2]
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001398
Facundo Batista10951d52007-06-06 17:15:23 +00001399 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
Nadeem Vawdab42c53e2011-07-23 15:51:16 +02001400 fw = ftpwrapper(user, passwd, host, port, dirs, timeout,
1401 persistent=False)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001402## fw.ftp.set_debuglevel(1)
1403 return fw
1404
1405class CacheFTPHandler(FTPHandler):
1406 # XXX would be nice to have pluggable cache strategies
1407 # XXX this stuff is definitely not thread safe
1408 def __init__(self):
1409 self.cache = {}
1410 self.timeout = {}
1411 self.soonest = 0
1412 self.delay = 60
Fred Drake13a2c272000-02-10 17:17:14 +00001413 self.max_conns = 16
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001414
1415 def setTimeout(self, t):
1416 self.delay = t
1417
1418 def setMaxConns(self, m):
Fred Drake13a2c272000-02-10 17:17:14 +00001419 self.max_conns = m
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001420
Facundo Batista10951d52007-06-06 17:15:23 +00001421 def connect_ftp(self, user, passwd, host, port, dirs, timeout):
1422 key = user, host, port, '/'.join(dirs), timeout
Raymond Hettinger54f02222002-06-01 14:18:47 +00001423 if key in self.cache:
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001424 self.timeout[key] = time.time() + self.delay
1425 else:
Facundo Batista10951d52007-06-06 17:15:23 +00001426 self.cache[key] = ftpwrapper(user, passwd, host, port, dirs, timeout)
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001427 self.timeout[key] = time.time() + self.delay
Fred Drake13a2c272000-02-10 17:17:14 +00001428 self.check_cache()
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001429 return self.cache[key]
1430
1431 def check_cache(self):
Fred Drake13a2c272000-02-10 17:17:14 +00001432 # first check for old ones
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001433 t = time.time()
1434 if self.soonest <= t:
Raymond Hettinger4ec4fa22003-05-23 08:51:51 +00001435 for k, v in self.timeout.items():
Jeremy Hylton6d7e47b2000-01-20 18:19:08 +00001436 if v < t:
1437 self.cache[k].close()
1438 del self.cache[k]
1439 del self.timeout[k]
1440 self.soonest = min(self.timeout.values())
1441
1442 # then check the size
Fred Drake13a2c272000-02-10 17:17:14 +00001443 if len(self.cache) == self.max_conns:
Brett Cannonc8b188a2003-05-17 19:51:26 +00001444 for k, v in self.timeout.items():
Fred Drake13a2c272000-02-10 17:17:14 +00001445 if v == self.soonest:
1446 del self.cache[k]
1447 del self.timeout[k]
1448 break
1449 self.soonest = min(self.timeout.values())
Nadeem Vawdab42c53e2011-07-23 15:51:16 +02001450
1451 def clear_cache(self):
1452 for conn in self.cache.values():
1453 conn.close()
1454 self.cache.clear()
1455 self.timeout.clear()