/usr/share/pyshared/cherrypy/lib/httptools.py is in python-cherrypy 2.3.0-3build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 | """HTTP library functions and tools."""
# This module contains functions and tools for building an HTTP application
# framework: any one, not just one whose name starts with "Ch". ;) If you
# reference any modules from some popular framework inside *this* module,
# FuManChu will personally hang you up by your thumbs and submit you
# to a public caning.
from BaseHTTPServer import BaseHTTPRequestHandler
responseCodes = BaseHTTPRequestHandler.responses.copy()
# From http://www.cherrypy.org/ticket/361
responseCodes[500] = ('Internal error',
'The server encountered an unexpected condition '
'which prevented it from fulfilling the request.')
import cgi
from email.Header import Header, decode_header
import re
import time
import urllib
from urlparse import urlparse
def urljoin(*atoms):
url = "/".join(atoms)
while "//" in url:
url = url.replace("//", "/")
return url
weekdayname = ['Mon', 'Tue', 'Wed', 'Thu', 'Fri', 'Sat', 'Sun']
monthname = [None, 'Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun',
'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec']
def HTTPDate(dt=None):
"""Return the given time.struct_time as a string in RFC 1123 format.
If no arguments are provided, the current time (as determined by
time.gmtime() is used).
RFC 2616: "[Concerning RFC 1123, RFC 850, asctime date formats]...
HTTP/1.1 clients and servers that parse the date value MUST
accept all three formats (for compatibility with HTTP/1.0),
though they MUST only generate the RFC 1123 format for
representing HTTP-date values in header fields."
RFC 1945 (HTTP/1.0) requires the same.
"""
if dt is None:
dt = time.gmtime()
year, month, day, hh, mm, ss, wd, y, z = dt
# Is "%a, %d %b %Y %H:%M:%S GMT" better or worse?
return ("%s, %02d %3s %4d %02d:%02d:%02d GMT" %
(weekdayname[wd], day, monthname[month], year, hh, mm, ss))
class Version(object):
"""A version, such as "2.1 beta 3", which can be compared atom-by-atom.
If a string is provided to the constructor, it will be split on word
boundaries; that is, "1.4.13 beta 9" -> ["1", "4", "13", "beta", "9"].
Comparisons are performed atom-by-atom, numerically if both atoms are
numeric. Therefore, "2.12" is greater than "2.4", and "3.0 beta" is
greater than "3.0 alpha" (only because "b" > "a"). If an atom is
provided in one Version and not another, the longer Version is
greater than the shorter, that is: "4.8 alpha" > "4.8".
"""
def __init__(self, atoms):
"""A Version object.
atoms: if a str, it will be split on word boundaries;
if a float or int, it will be split at the decimal point.
"""
if isinstance(atoms, (int, float)):
atoms = str(atoms)
if isinstance(atoms, basestring):
self.atoms = re.split(r'\W', atoms)
else:
self.atoms = [str(x) for x in atoms]
def from_http(cls, version_str):
"""Return a Version object from the given 'HTTP/x.y' string."""
return cls(version_str[5:])
from_http = classmethod(from_http)
def to_http(self):
"""Return a 'HTTP/x.y' string for this Version object."""
return "HTTP/%s.%s" % tuple(self.atoms[:2])
def __str__(self):
return ".".join([str(x) for x in self.atoms])
def __cmp__(self, other):
cls = self.__class__
if not isinstance(other, cls):
# Try to coerce other to a Version instance.
other = cls(other)
index = 0
while index < len(self.atoms) and index < len(other.atoms):
mine, theirs = self.atoms[index], other.atoms[index]
if mine.isdigit() and theirs.isdigit():
mine, theirs = int(mine), int(theirs)
if mine < theirs:
return -1
if mine > theirs:
return 1
index += 1
if index < len(other.atoms):
return -1
if index < len(self.atoms):
return 1
return 0
def getRanges(headervalue, content_length):
"""Return a list of (start, stop) indices from a Range header, or None.
Each (start, stop) tuple will be composed of two ints, which are suitable
for use in a slicing operation. That is, the header "Range: bytes=3-6",
if applied against a Python string, is requesting resource[3:7]. This
function will return the list [(3, 7)].
"""
if not headervalue:
return None
result = []
bytesunit, byteranges = headervalue.split("=", 1)
for brange in byteranges.split(","):
start, stop = [x.strip() for x in brange.split("-", 1)]
if start:
if not stop:
stop = content_length - 1
start, stop = map(int, (start, stop))
if start >= content_length:
# From rfc 2616 sec 14.16:
# "If the server receives a request (other than one
# including an If-Range request-header field) with an
# unsatisfiable Range request-header field (that is,
# all of whose byte-range-spec values have a first-byte-pos
# value greater than the current length of the selected
# resource), it SHOULD return a response code of 416
# (Requested range not satisfiable)."
continue
if stop < start:
# From rfc 2616 sec 14.16:
# "If the server ignores a byte-range-spec because it
# is syntactically invalid, the server SHOULD treat
# the request as if the invalid Range header field
# did not exist. (Normally, this means return a 200
# response containing the full entity)."
return None
result.append((start, stop + 1))
else:
if not stop:
# See rfc quote above.
return None
# Negative subscript (last N bytes)
result.append((content_length - int(stop), content_length))
return result
class HeaderElement(object):
"""An element (with parameters) from an HTTP header's element list."""
def __init__(self, value, params=None):
self.value = value
if params is None:
params = {}
self.params = params
def __str__(self):
p = [";%s=%s" % (k, v) for k, v in self.params.iteritems()]
return "%s%s" % (self.value, "".join(p))
def parse(elementstr):
"""Transform 'token;key=val' to ('token', {'key': 'val'})."""
# Split the element into a value and parameters. The 'value' may
# be of the form, "token=token", but we don't split that here.
atoms = [x.strip() for x in elementstr.split(";")]
initial_value = atoms.pop(0).strip()
params = {}
for atom in atoms:
atom = [x.strip() for x in atom.split("=", 1) if x.strip()]
key = atom.pop(0)
if atom:
val = atom[0]
else:
val = ""
params[key] = val
return initial_value, params
parse = staticmethod(parse)
def from_str(cls, elementstr):
"""Construct an instance from a string of the form 'token;key=val'."""
ival, params = cls.parse(elementstr)
return cls(ival, params)
from_str = classmethod(from_str)
class AcceptElement(HeaderElement):
"""An element (with parameters) from an Accept-* header's element list."""
def from_str(cls, elementstr):
qvalue = None
# The first "q" parameter (if any) separates the initial
# parameter(s) (if any) from the accept-params.
atoms = re.split(r'; *q *=', elementstr, 1)
initial_value = atoms.pop(0).strip()
if atoms:
# The qvalue for an Accept header can have extensions. The other
# headers cannot, but it's easier to parse them as if they did.
qvalue = HeaderElement.from_str(atoms[0].strip())
ival, params = cls.parse(initial_value)
if qvalue is not None:
params["q"] = qvalue
return cls(ival, params)
from_str = classmethod(from_str)
def qvalue(self):
val = self.params.get("q", "1")
if isinstance(val, HeaderElement):
val = val.value
return float(val)
qvalue = property(qvalue, doc="The qvalue, or priority, of this value.")
def __cmp__(self, other):
# If you sort a list of AcceptElement objects, they will be listed
# in priority order; the most preferred value will be first.
diff = cmp(other.qvalue, self.qvalue)
if diff == 0:
diff = cmp(str(other), str(self))
return diff
def header_elements(fieldname, fieldvalue):
"""Return a HeaderElement list from a comma-separated header str."""
if not fieldvalue:
return None
headername = fieldname.lower()
result = []
for element in fieldvalue.split(","):
if headername.startswith("accept") or headername == 'te':
hv = AcceptElement.from_str(element)
else:
hv = HeaderElement.from_str(element)
result.append(hv)
result.sort()
return result
def decode_TEXT(value):
"""Decode RFC-2047 TEXT (e.g. "=?utf-8?q?f=C3=BCr?=" -> u"f\xfcr")."""
atoms = decode_header(value)
decodedvalue = ""
for atom, charset in atoms:
if charset is not None:
atom = atom.decode(charset)
decodedvalue += atom
return decodedvalue
def validStatus(status):
"""Return legal HTTP status Code, Reason-phrase and Message.
The status arg must be an int, or a str that begins with an int.
If status is an int, or a str and no reason-phrase is supplied,
a default reason-phrase will be provided.
"""
if not status:
status = 200
status = str(status)
parts = status.split(" ", 1)
if len(parts) == 1:
# No reason supplied.
code, = parts
reason = None
else:
code, reason = parts
reason = reason.strip()
try:
code = int(code)
except ValueError:
raise ValueError("Illegal response status from server "
"(%s is non-numeric)." % repr(code))
if code < 100 or code > 599:
raise ValueError("Illegal response status from server "
"(%s is out of range)." % repr(code))
if code not in responseCodes:
# code is unknown but not illegal
defaultReason, message = "", ""
else:
defaultReason, message = responseCodes[code]
if reason is None:
reason = defaultReason
return code, reason, message
def parseRequestLine(requestLine):
"""Return (method, path, querystring, protocol) from a requestLine."""
method, path, protocol = requestLine.split()
# path may be an abs_path (including "http://host.domain.tld");
# Ignore scheme, location, and fragments (so config lookups work).
# [Therefore, this assumes all hosts are valid for this server.]
scheme, location, path, params, qs, frag = urlparse(path)
if path == "*":
# "...the request does not apply to a particular resource,
# but to the server itself". See
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2
pass
else:
if params:
params = ";" + params
path = path + params
# Unquote the path (e.g. "/this%20path" -> "this path").
# http://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html#sec5.1.2
#
# But note that "...a URI must be separated into its components
# before the escaped characters within those components can be
# safely decoded." http://www.ietf.org/rfc/rfc2396.txt, sec 2.4.2
#
# Note also that cgi.parse_qs will decode the querystring for us.
atoms = [urllib.unquote(x) for x in re.split("(?i)%2F", path)]
path = "%2F".join(atoms)
return method, path, qs, protocol
def parseQueryString(query_string, keep_blank_values=True):
"""Build a paramMap dictionary from a query_string."""
if re.match(r"[0-9]+,[0-9]+", query_string):
# Server-side image map. Map the coords to 'x' and 'y'
# (like CGI::Request does).
pm = query_string.split(",")
pm = {'x': int(pm[0]), 'y': int(pm[1])}
else:
pm = cgi.parse_qs(query_string, keep_blank_values)
for key, val in pm.items():
if len(val) == 1:
pm[key] = val[0]
return pm
def paramsFromCGIForm(form):
paramMap = {}
for key in form.keys():
valueList = form[key]
if isinstance(valueList, list):
paramMap[key] = []
for item in valueList:
if item.filename is not None:
value = item # It's a file upload
else:
value = item.value # It's a regular field
paramMap[key].append(value)
else:
if valueList.filename is not None:
value = valueList # It's a file upload
else:
value = valueList.value # It's a regular field
paramMap[key] = value
return paramMap
class CaseInsensitiveDict(dict):
"""A case-insensitive dict subclass.
Each key is changed on entry to str(key).title().
"""
def __getitem__(self, key):
return dict.__getitem__(self, str(key).title())
def __setitem__(self, key, value):
dict.__setitem__(self, str(key).title(), value)
def __delitem__(self, key):
dict.__delitem__(self, str(key).title())
def __contains__(self, key):
return dict.__contains__(self, str(key).title())
def get(self, key, default=None):
return dict.get(self, str(key).title(), default)
def has_key(self, key):
return dict.has_key(self, str(key).title())
def update(self, E):
for k in E.keys():
self[str(k).title()] = E[k]
def fromkeys(cls, seq, value=None):
newdict = cls()
for k in seq:
newdict[str(k).title()] = value
return newdict
fromkeys = classmethod(fromkeys)
def setdefault(self, key, x=None):
key = str(key).title()
try:
return self[key]
except KeyError:
self[key] = x
return x
def pop(self, key, default):
return dict.pop(self, str(key).title(), default)
class HeaderMap(CaseInsensitiveDict):
"""A dict subclass for HTTP request and response headers.
Each key is changed on entry to str(key).title(). This allows headers
to be case-insensitive and avoid duplicates.
"""
def elements(self, key):
"""Return a list of HeaderElements for the given header (or None)."""
key = str(key).title()
h = self.get(key)
if h is None:
return []
return header_elements(key, h)
general_fields = ["Cache-Control", "Connection", "Date", "Pragma",
"Trailer", "Transfer-Encoding", "Upgrade", "Via",
"Warning"]
response_fields = ["Accept-Ranges", "Age", "ETag", "Location",
"Proxy-Authenticate", "Retry-After", "Server",
"Vary", "WWW-Authenticate"]
entity_fields = ["Allow", "Content-Encoding", "Content-Language",
"Content-Length", "Content-Location", "Content-MD5",
"Content-Range", "Content-Type", "Expires",
"Last-Modified"]
order_map = {}
for _ in general_fields:
order_map[_] = 0
for _ in response_fields:
order_map[_] = 1
for _ in entity_fields:
order_map[_] = 2
def sorted_list(self, protocol=(1, 0)):
"""Transform self into a sorted list of (name, value) tuples.
From http://www.w3.org/Protocols/rfc2616/rfc2616-sec4.html#sec4.2
'... it is "good practice" to send general-header fields first,
followed by request-header or response-header fields, and ending
with the entity-header fields.'
"""
header_list = []
for key, valueList in self.iteritems():
order = self.order_map.get(key, 3)
if not isinstance(valueList, list):
valueList = [valueList]
for v in valueList:
if isinstance(v, unicode):
# HTTP/1.0 says, "Words of *TEXT may contain octets
# from character sets other than US-ASCII." and
# "Recipients of header field TEXT containing octets
# outside the US-ASCII character set may assume that
# they represent ISO-8859-1 characters."
try:
v = v.encode("iso-8859-1")
except UnicodeEncodeError:
if protocol >= (1, 1):
# Encode RFC-2047 TEXT
# (e.g. u"\u8200" -> "=?utf-8?b?6IiA?=").
v = Header(v, 'utf-8').encode()
else:
raise
else:
# This coercion should not take any time at all
# if value is already of type "str".
v = str(v)
header_list.append((order, (key, v)))
header_list.sort()
return [item[1] for item in header_list]
class MaxSizeExceeded(Exception):
pass
class SizeCheckWrapper(object):
"""Wraps a file-like object, raising MaxSizeExceeded if too large."""
def __init__(self, rfile, maxlen):
self.rfile = rfile
self.maxlen = maxlen
self.bytes_read = 0
def _check_length(self):
if self.maxlen and self.bytes_read > self.maxlen:
raise MaxSizeExceeded()
def read(self, size = None):
data = self.rfile.read(size)
self.bytes_read += len(data)
self._check_length()
return data
def readline(self, size = None):
if size is not None:
data = self.rfile.readline(size)
self.bytes_read += len(data)
self._check_length()
return data
# User didn't specify a size ...
# We read the line in chunks to make sure it's not a 100MB line !
res = []
while True:
data = self.rfile.readline(256)
self.bytes_read += len(data)
self._check_length()
res.append(data)
# See http://www.cherrypy.org/ticket/421
if len(data) < 256 or data[-1:] == "\n":
return ''.join(res)
def readlines(self, sizehint = 0):
# Shamelessly stolen from StringIO
total = 0
lines = []
line = self.readline()
while line:
lines.append(line)
total += len(line)
if 0 < sizehint <= total:
break
line = self.readline()
return lines
def close(self):
self.rfile.close()
def __iter__(self):
return self
def next(self):
data = self.rfile.next()
self.bytes_read += len(data)
self._check_length()
return data
|