# # http.py -- HTTP-related utilities. # # Copyright (c) 2008-2009 Christian Hammond # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the # "Software"), to deal in the Software without restriction, including # without limitation the rights to use, copy, modify, merge, publish, # distribute, sublicense, and/or sell copies of the Software, and to # permit persons to whom the Software is furnished to do so, subject to # the following conditions: # # The above copyright notice and this permission notice shall be included # in all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. # IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY # CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # from django.http import HttpResponse from djblets.util.dates import http_date class HttpResponseNotAcceptable(HttpResponse): status_code = 406 def set_last_modified(response, timestamp): """ Sets the Last-Modified header in a response based on a DateTimeField. """ response['Last-Modified'] = http_date(timestamp) def get_modified_since(request, last_modified): """ Checks if a Last-Modified timestamp is newer than the requested HTTP_IF_MODIFIED_SINCE from the browser. This can be used to bail early if no updates have been performed since the last access to the page. This can take a DateField, datetime, HTTP date-formatted string, or a function for the last_modified timestamp. If a function is passed, it will only be called if the HTTP_IF_MODIFIED_SINCE header is present. """ if_modified_since = request.META.get('HTTP_IF_MODIFIED_SINCE', None) if if_modified_since is not None: if callable(last_modified): last_modified = last_modified() return (if_modified_since == http_date(last_modified)) return False def set_etag(response, etag): """ Sets the ETag header in a response. """ response['ETag'] = etag def etag_if_none_match(request, etag): """ Checks if an ETag matches the If-None-Match header sent by the browser. This can be used to bail early if no updates have been performed since the last access to the page. """ return etag == request.META.get('If-None-Match', None) def etag_if_match(request, etag): """ Checks if an ETag matches the If-Match header sent by the browser. This is used by PUT requests to to indicate that the update should only happen if the specified ETag matches the header. """ return etag == request.META.get('If-Match', None) def get_http_accept_lists(request): """Returns lists of mimetypes from the request's Accept header. This will return two lists, a list of acceptable mimetypes in order of requested priority, and a list of unacceptable mimetypes. """ # Check cached copies for this in the request so we only ever do it once. if (hasattr(request, 'djblets_acceptable_mimetypes') and hasattr(request, 'djblets_unacceptable_mimetypes')): return request.djblets_acceptable_mimetypes, \ request.djblets_unacceptable_mimetypes acceptable_mimetypes = [] unacceptable_mimetypes = [] for accept_item in request.META.get('HTTP_ACCEPT', '').strip().split(','): parts = accept_item.strip().split(";") mimetype = parts[0] priority = 1.0 for part in parts[1:]: try: key, value = part.split('=') except ValueError: # There's no '=' in that part. continue if key == 'q': try: priority = float(value) except ValueError: # The value isn't a number. continue if priority == 0: unacceptable_mimetypes.append(mimetype) else: acceptable_mimetypes.append((mimetype, priority)) acceptable_mimetypes.sort(key=lambda x: x[1], reverse=True) acceptable_mimetypes = [mimetype[0] for mimetype in acceptable_mimetypes] setattr(request, 'djblets_acceptable_mimetypes', acceptable_mimetypes) setattr(request, 'djblets_unacceptable_mimetypes', unacceptable_mimetypes) return acceptable_mimetypes, unacceptable_mimetypes def get_http_requested_mimetype(request, supported_mimetypes): """Gets the mimetype that should be used for returning content. This is based on the client's requested list of mimetypes (in the HTTP Accept header) and the supported list of mimetypes that can be returned in this request. If a valid mimetype that can be used is found, it will be returned. Otherwise, None is returned, and the caller is expected to return HttpResponseNotAccepted. """ acceptable_mimetypes, unacceptable_mimetypes = \ get_http_accept_lists(request) supported_mimetypes_set = set(supported_mimetypes) acceptable_mimetypes_set = set(acceptable_mimetypes) unacceptable_mimetypes_set = set(unacceptable_mimetypes) if not supported_mimetypes_set.intersection(acceptable_mimetypes_set): # None of the requested mimetypes are in the supported list. # See if there are any mimetypes that are explicitly forbidden. if '*/*' in unacceptable_mimetypes: acceptable_mimetypes = [] unacceptable_mimetypes = supported_mimetypes else: acceptable_mimetypes = \ supported_mimetypes_set.difference(unacceptable_mimetypes_set) if acceptable_mimetypes: for mimetype in acceptable_mimetypes: if mimetype in supported_mimetypes: return mimetype # We didn't find any mimetypes that are on the supported list. # We need to choose a default now. for mimetype in supported_mimetypes: if mimetype not in unacceptable_mimetypes: return mimetype return None