- Author:
- ludvig.ericson
- Posted:
- September 10, 2008
- Language:
- Python
- Version:
- 1.0
- Score:
- 4 (after 4 ratings)
A clean and simple implementation of parsing the Accept header. It places the result in request.accepted_types.
Place this middleware anywhere in the chain, as all it does is add to the request object.
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 | def parse_accept_header(accept):
"""Parse the Accept header *accept*, returning a list with pairs of
(media_type, q_value), ordered by q values.
"""
result = []
for media_range in accept.split(","):
parts = media_range.split(";")
media_type = parts.pop(0)
media_params = []
q = 1.0
for part in parts:
(key, value) = part.lstrip().split("=", 1)
if key == "q":
q = float(value)
else:
media_params.append((key, value))
result.append((media_type, tuple(media_params), q))
result.sort(lambda x, y: -cmp(x[2], y[2]))
return result
class AcceptMiddleware(object):
def process_request(self, request):
accept = parse_accept_header(request.META.get("HTTP_ACCEPT", ""))
request.accept = accept
request.accepted_types = map(lambda (t, p, q): t, accept)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 1 week ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 2 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.