2011-02-19 13:26:27 +03:00
|
|
|
from django.core.urlresolvers import set_script_prefix
|
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
from djangorestframework.compat import View
|
2011-04-11 19:38:00 +04:00
|
|
|
from djangorestframework.response import Response, ErrorResponse
|
|
|
|
from djangorestframework.mixins import RequestMixin, ResponseMixin, AuthMixin
|
2011-04-25 04:03:23 +04:00
|
|
|
from djangorestframework import emitters, parsers, authenticators, permissions, validators, status
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
# TODO: Figure how out references and named urls need to work nicely
|
|
|
|
# TODO: POST on existing 404 URL, PUT on existing 404 URL
|
|
|
|
#
|
|
|
|
# NEXT: Exceptions on func() -> 500, tracebacks emitted if settings.DEBUG
|
|
|
|
|
|
|
|
__all__ = ['Resource']
|
|
|
|
|
|
|
|
|
2011-04-11 19:38:00 +04:00
|
|
|
class Resource(RequestMixin, ResponseMixin, AuthMixin, View):
|
2011-04-25 07:48:55 +04:00
|
|
|
"""Handles incoming requests and maps them to REST operations.
|
|
|
|
Performs request deserialization, response serialization, authentication and input validation."""
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-25 04:03:23 +04:00
|
|
|
http_method_names = ['get', 'post', 'put', 'delete', 'head', 'options', 'trace', 'patch']
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
# List of emitters the resource can serialize the response with, ordered by preference.
|
2011-01-24 02:08:16 +03:00
|
|
|
emitters = ( emitters.JSONEmitter,
|
|
|
|
emitters.DocumentingHTMLEmitter,
|
|
|
|
emitters.DocumentingXHTMLEmitter,
|
|
|
|
emitters.DocumentingPlainTextEmitter,
|
|
|
|
emitters.XMLEmitter )
|
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
# List of parsers the resource can parse the request with.
|
2011-01-24 02:08:16 +03:00
|
|
|
parsers = ( parsers.JSONParser,
|
2011-02-15 11:19:57 +03:00
|
|
|
parsers.FormParser,
|
|
|
|
parsers.MultipartParser )
|
2011-04-11 18:03:49 +04:00
|
|
|
|
2011-04-25 04:03:23 +04:00
|
|
|
# List of validators to validate, cleanup and normalize the request content
|
2011-04-11 18:09:52 +04:00
|
|
|
validators = ( validators.FormValidator, )
|
2011-04-11 18:03:49 +04:00
|
|
|
|
2011-04-02 19:32:37 +04:00
|
|
|
# List of all authenticating methods to attempt.
|
2011-01-24 21:59:23 +03:00
|
|
|
authenticators = ( authenticators.UserLoggedInAuthenticator,
|
|
|
|
authenticators.BasicAuthenticator )
|
2011-04-25 04:03:23 +04:00
|
|
|
|
|
|
|
# List of all permissions required to access the resource
|
2011-04-27 21:07:28 +04:00
|
|
|
permissions = ()
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
# Optional form for input validation and presentation of HTML formatted responses.
|
|
|
|
form = None
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
# Allow name and description for the Resource to be set explicitly,
|
|
|
|
# overiding the default classname/docstring behaviour.
|
|
|
|
# These are used for documentation in the standard html and text emitters.
|
|
|
|
name = None
|
|
|
|
description = None
|
|
|
|
|
2011-04-25 04:03:23 +04:00
|
|
|
@property
|
|
|
|
def allowed_methods(self):
|
2011-04-27 21:53:54 +04:00
|
|
|
return [method.upper() for method in self.http_method_names if hasattr(self, method)]
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-25 04:03:23 +04:00
|
|
|
def http_method_not_allowed(self, request, *args, **kwargs):
|
|
|
|
"""Return an HTTP 405 error if an operation is called which does not have a handler method."""
|
|
|
|
raise ErrorResponse(status.HTTP_405_METHOD_NOT_ALLOWED,
|
|
|
|
{'detail': 'Method \'%s\' not allowed on this resource.' % self.method})
|
2011-01-24 02:08:16 +03:00
|
|
|
|
|
|
|
|
|
|
|
def cleanup_response(self, data):
|
|
|
|
"""Perform any resource-specific data filtering prior to the standard HTTP
|
|
|
|
content-type serialization.
|
|
|
|
|
2011-02-19 13:26:27 +03:00
|
|
|
Eg filter complex objects that cannot be serialized by json/xml/etc into basic objects that can.
|
|
|
|
|
|
|
|
TODO: This is going to be removed. I think that the 'fields' behaviour is going to move into
|
|
|
|
the EmitterMixin and Emitter classes."""
|
2011-01-24 02:08:16 +03:00
|
|
|
return data
|
|
|
|
|
2011-04-25 04:03:23 +04:00
|
|
|
|
2011-04-25 07:48:55 +04:00
|
|
|
# Note: session based authentication is explicitly CSRF validated,
|
|
|
|
# all other authentication is CSRF exempt.
|
2011-02-19 13:26:27 +03:00
|
|
|
@csrf_exempt
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2011-01-24 02:08:16 +03:00
|
|
|
try:
|
2011-04-27 21:44:21 +04:00
|
|
|
self.request = request
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
|
|
|
|
|
|
|
# Calls to 'reverse' will not be fully qualified unless we set the scheme/host/port here.
|
|
|
|
prefix = '%s://%s' % (request.is_secure() and 'https' or 'http', request.get_host())
|
|
|
|
set_script_prefix(prefix)
|
|
|
|
|
|
|
|
try:
|
|
|
|
# If using a form POST with '_method'/'_content'/'_content_type' overrides, then alter
|
|
|
|
# self.method, self.content_type, self.RAW_CONTENT & self.CONTENT appropriately.
|
|
|
|
self.perform_form_overloading()
|
|
|
|
|
|
|
|
# Authenticate and check request is has the relevant permissions
|
|
|
|
self.check_permissions()
|
|
|
|
|
|
|
|
# Get the appropriate handler method
|
|
|
|
if self.method.lower() in self.http_method_names:
|
|
|
|
handler = getattr(self, self.method.lower(), self.http_method_not_allowed)
|
|
|
|
else:
|
2011-04-27 21:07:28 +04:00
|
|
|
handler = self.http_method_not_allowed
|
2011-04-27 21:44:21 +04:00
|
|
|
|
|
|
|
response_obj = handler(request, *args, **kwargs)
|
|
|
|
|
|
|
|
# Allow return value to be either Response, or an object, or None
|
|
|
|
if isinstance(response_obj, Response):
|
|
|
|
response = response_obj
|
|
|
|
elif response_obj is not None:
|
|
|
|
response = Response(status.HTTP_200_OK, response_obj)
|
|
|
|
else:
|
|
|
|
response = Response(status.HTTP_204_NO_CONTENT)
|
|
|
|
|
|
|
|
# Pre-serialize filtering (eg filter complex objects into natively serializable types)
|
|
|
|
response.cleaned_content = self.cleanup_response(response.raw_content)
|
|
|
|
|
|
|
|
except ErrorResponse, exc:
|
|
|
|
response = exc.response
|
|
|
|
|
|
|
|
# Always add these headers.
|
|
|
|
#
|
|
|
|
# TODO - this isn't actually the correct way to set the vary header,
|
|
|
|
# also it's currently sub-obtimal for HTTP caching - need to sort that out.
|
|
|
|
response.headers['Allow'] = ', '.join(self.allowed_methods)
|
|
|
|
response.headers['Vary'] = 'Authenticate, Accept'
|
|
|
|
|
|
|
|
return self.emit(response)
|
|
|
|
except:
|
|
|
|
import traceback
|
|
|
|
traceback.print_exc()
|
2011-04-25 07:48:55 +04:00
|
|
|
|
2011-01-24 02:08:16 +03:00
|
|
|
|
2011-04-27 21:07:28 +04:00
|
|
|
|