2011-05-19 21:36:30 +04:00
|
|
|
"""
|
|
|
|
The :mod:`views` module provides the Views you will most probably
|
|
|
|
be subclassing in your implementation.
|
|
|
|
|
|
|
|
By setting or modifying class attributes on your view, you change it's predefined behaviour.
|
|
|
|
"""
|
|
|
|
|
2012-01-23 22:32:37 +04:00
|
|
|
import re
|
2012-08-27 02:06:52 +04:00
|
|
|
from django.core.exceptions import PermissionDenied
|
|
|
|
from django.http import Http404
|
2012-01-23 22:32:37 +04:00
|
|
|
from django.utils.html import escape
|
|
|
|
from django.utils.safestring import mark_safe
|
2011-05-04 12:21:17 +04:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2012-09-03 20:49:22 +04:00
|
|
|
from django.views.generic.detail import SingleObjectMixin
|
|
|
|
from django.views.generic.list import MultipleObjectMixin
|
2011-05-04 12:21:17 +04:00
|
|
|
|
2012-09-03 19:54:17 +04:00
|
|
|
from djangorestframework.compat import View as _View, apply_markdown
|
2012-08-27 02:06:52 +04:00
|
|
|
from djangorestframework.response import Response
|
2012-08-24 23:50:24 +04:00
|
|
|
from djangorestframework.request import Request
|
2012-09-03 19:42:57 +04:00
|
|
|
from djangorestframework.settings import api_settings
|
2012-09-05 00:58:35 +04:00
|
|
|
from djangorestframework import parsers, authentication, status, exceptions, mixins
|
2011-05-04 12:21:17 +04:00
|
|
|
|
|
|
|
|
2011-05-10 15:21:48 +04:00
|
|
|
__all__ = (
|
2011-05-24 13:27:24 +04:00
|
|
|
'View',
|
2011-05-10 15:21:48 +04:00
|
|
|
'ModelView',
|
|
|
|
'InstanceModelView',
|
2011-05-17 02:18:45 +04:00
|
|
|
'ListModelView',
|
2011-05-10 15:21:48 +04:00
|
|
|
'ListOrCreateModelView'
|
|
|
|
)
|
2011-05-04 12:21:17 +04:00
|
|
|
|
|
|
|
|
2012-01-26 00:39:01 +04:00
|
|
|
def _remove_trailing_string(content, trailing):
|
|
|
|
"""
|
|
|
|
Strip trailing component `trailing` from `content` if it exists.
|
2012-08-25 01:11:00 +04:00
|
|
|
Used when generating names from view classes.
|
2012-01-26 00:39:01 +04:00
|
|
|
"""
|
|
|
|
if content.endswith(trailing) and content != trailing:
|
|
|
|
return content[:-len(trailing)]
|
|
|
|
return content
|
|
|
|
|
2012-01-28 18:38:06 +04:00
|
|
|
|
2012-01-26 00:39:01 +04:00
|
|
|
def _remove_leading_indent(content):
|
|
|
|
"""
|
|
|
|
Remove leading indent from a block of text.
|
|
|
|
Used when generating descriptions from docstrings.
|
|
|
|
"""
|
|
|
|
whitespace_counts = [len(line) - len(line.lstrip(' '))
|
|
|
|
for line in content.splitlines()[1:] if line.lstrip()]
|
|
|
|
|
|
|
|
# unindent the content if needed
|
|
|
|
if whitespace_counts:
|
|
|
|
whitespace_pattern = '^' + (' ' * min(whitespace_counts))
|
|
|
|
return re.sub(re.compile(whitespace_pattern, re.MULTILINE), '', content)
|
|
|
|
return content
|
|
|
|
|
2012-01-28 18:38:06 +04:00
|
|
|
|
2012-01-26 00:39:01 +04:00
|
|
|
def _camelcase_to_spaces(content):
|
|
|
|
"""
|
|
|
|
Translate 'CamelCaseNames' to 'Camel Case Names'.
|
2012-08-25 01:11:00 +04:00
|
|
|
Used when generating names from view classes.
|
2012-01-26 00:39:01 +04:00
|
|
|
"""
|
|
|
|
camelcase_boundry = '(((?<=[a-z])[A-Z])|([A-Z](?![A-Z]|$)))'
|
|
|
|
return re.sub(camelcase_boundry, ' \\1', content).strip()
|
|
|
|
|
|
|
|
|
2012-09-03 19:54:17 +04:00
|
|
|
class APIView(_View):
|
2011-05-13 20:19:12 +04:00
|
|
|
"""
|
|
|
|
Handles incoming requests and maps them to REST operations.
|
|
|
|
Performs request deserialization, response serialization, authentication and input validation.
|
|
|
|
"""
|
2011-05-04 12:21:17 +04:00
|
|
|
|
2012-09-03 19:42:57 +04:00
|
|
|
renderers = api_settings.DEFAULT_RENDERERS
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
2012-08-25 01:11:00 +04:00
|
|
|
List of renderer classes the view can serialize the response with, ordered by preference.
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
2011-12-09 16:54:11 +04:00
|
|
|
|
2012-02-25 22:45:17 +04:00
|
|
|
parsers = parsers.DEFAULT_PARSERS
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
2012-08-25 01:11:00 +04:00
|
|
|
List of parser classes the view can parse the request with.
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
2011-05-04 12:21:17 +04:00
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
authentication = (authentication.SessionAuthentication,
|
2012-04-11 20:38:47 +04:00
|
|
|
authentication.BasicAuthentication)
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
|
|
|
List of all authenticating methods to attempt.
|
|
|
|
"""
|
2011-12-09 16:54:11 +04:00
|
|
|
|
2012-09-05 00:58:35 +04:00
|
|
|
throttle_classes = ()
|
|
|
|
"""
|
|
|
|
List of all throttles to check.
|
|
|
|
"""
|
|
|
|
|
|
|
|
permission_classes = ()
|
2011-05-27 12:58:21 +04:00
|
|
|
"""
|
|
|
|
List of all permissions that must be checked.
|
|
|
|
"""
|
2011-12-09 16:54:11 +04:00
|
|
|
|
2011-05-23 20:07:31 +04:00
|
|
|
@classmethod
|
|
|
|
def as_view(cls, **initkwargs):
|
|
|
|
"""
|
|
|
|
Override the default :meth:`as_view` to store an instance of the view
|
|
|
|
as an attribute on the callable function. This allows us to discover
|
2011-12-09 16:54:11 +04:00
|
|
|
information about the view when we do URL reverse lookups.
|
2011-05-23 20:07:31 +04:00
|
|
|
"""
|
2012-09-03 19:54:17 +04:00
|
|
|
view = super(APIView, cls).as_view(**initkwargs)
|
2011-05-23 20:07:31 +04:00
|
|
|
view.cls_instance = cls(**initkwargs)
|
|
|
|
return view
|
|
|
|
|
2011-05-04 12:21:17 +04:00
|
|
|
@property
|
|
|
|
def allowed_methods(self):
|
2011-05-12 18:11:14 +04:00
|
|
|
"""
|
|
|
|
Return the list of allowed HTTP methods, uppercased.
|
|
|
|
"""
|
2012-02-25 22:45:17 +04:00
|
|
|
return [method.upper() for method in self.http_method_names
|
|
|
|
if hasattr(self, method)]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def default_response_headers(self):
|
|
|
|
return {
|
|
|
|
'Allow': ', '.join(self.allowed_methods),
|
|
|
|
'Vary': 'Authenticate, Accept'
|
|
|
|
}
|
2011-05-04 12:21:17 +04:00
|
|
|
|
2012-01-23 22:32:37 +04:00
|
|
|
def get_name(self):
|
|
|
|
"""
|
|
|
|
Return the resource or view class name for use as this view's name.
|
|
|
|
Override to customize.
|
|
|
|
"""
|
2012-08-25 01:11:00 +04:00
|
|
|
name = self.__class__.__name__
|
|
|
|
name = _remove_trailing_string(name, 'View')
|
2012-01-26 00:39:01 +04:00
|
|
|
return _camelcase_to_spaces(name)
|
2012-01-23 22:32:37 +04:00
|
|
|
|
|
|
|
def get_description(self, html=False):
|
|
|
|
"""
|
|
|
|
Return the resource or view docstring for use as this view's description.
|
|
|
|
Override to customize.
|
|
|
|
"""
|
2012-08-25 01:11:00 +04:00
|
|
|
description = self.__doc__ or ''
|
2012-01-26 00:39:01 +04:00
|
|
|
description = _remove_leading_indent(description)
|
|
|
|
if html:
|
|
|
|
return self.markup_description(description)
|
|
|
|
return description
|
|
|
|
|
|
|
|
def markup_description(self, description):
|
2012-02-20 13:36:03 +04:00
|
|
|
"""
|
|
|
|
Apply HTML markup to the description of this view.
|
|
|
|
"""
|
2012-01-26 00:39:01 +04:00
|
|
|
if apply_markdown:
|
2012-01-28 18:38:06 +04:00
|
|
|
description = apply_markdown(description)
|
2012-01-23 22:32:37 +04:00
|
|
|
else:
|
2012-01-28 18:38:06 +04:00
|
|
|
description = escape(description).replace('\n', '<br />')
|
|
|
|
return mark_safe(description)
|
2012-01-23 22:32:37 +04:00
|
|
|
|
2011-05-04 12:21:17 +04:00
|
|
|
def http_method_not_allowed(self, request, *args, **kwargs):
|
2011-05-12 15:55:13 +04:00
|
|
|
"""
|
2012-09-03 18:57:43 +04:00
|
|
|
Called if `request.method` does not corrospond to a handler method.
|
|
|
|
We raise an exception, which is handled by `.handle_exception()`.
|
2011-05-12 15:55:13 +04:00
|
|
|
"""
|
2012-08-27 01:13:26 +04:00
|
|
|
raise exceptions.MethodNotAllowed(request.method)
|
2011-05-04 12:21:17 +04:00
|
|
|
|
2012-08-24 23:50:24 +04:00
|
|
|
@property
|
|
|
|
def _parsed_media_types(self):
|
|
|
|
"""
|
|
|
|
Return a list of all the media types that this view can parse.
|
|
|
|
"""
|
|
|
|
return [parser.media_type for parser in self.parsers]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _default_parser(self):
|
|
|
|
"""
|
|
|
|
Return the view's default parser class.
|
|
|
|
"""
|
|
|
|
return self.parsers[0]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _rendered_media_types(self):
|
|
|
|
"""
|
|
|
|
Return an list of all the media types that this response can render.
|
|
|
|
"""
|
|
|
|
return [renderer.media_type for renderer in self.renderers]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _rendered_formats(self):
|
|
|
|
"""
|
|
|
|
Return a list of all the formats that this response can render.
|
|
|
|
"""
|
|
|
|
return [renderer.format for renderer in self.renderers]
|
|
|
|
|
|
|
|
@property
|
|
|
|
def _default_renderer(self):
|
|
|
|
"""
|
|
|
|
Return the response's default renderer class.
|
|
|
|
"""
|
|
|
|
return self.renderers[0]
|
|
|
|
|
2012-08-24 23:57:10 +04:00
|
|
|
def get_permissions(self):
|
|
|
|
"""
|
|
|
|
Instantiates and returns the list of permissions that this view requires.
|
|
|
|
"""
|
|
|
|
return [permission(self) for permission in self.permission_classes]
|
|
|
|
|
2012-09-05 00:58:35 +04:00
|
|
|
def get_throttles(self):
|
2012-08-24 23:57:10 +04:00
|
|
|
"""
|
2012-09-05 00:58:35 +04:00
|
|
|
Instantiates and returns the list of thottles that this view requires.
|
|
|
|
"""
|
|
|
|
return [throttle(self) for throttle in self.throttle_classes]
|
|
|
|
|
|
|
|
def check_permissions(self, request, obj=None):
|
|
|
|
"""
|
|
|
|
Check user permissions and either raise an ``PermissionDenied`` or return.
|
2012-08-24 23:57:10 +04:00
|
|
|
"""
|
|
|
|
for permission in self.get_permissions():
|
2012-09-05 00:58:35 +04:00
|
|
|
if not permission.check_permission(request, obj):
|
|
|
|
raise exceptions.PermissionDenied()
|
|
|
|
|
|
|
|
def check_throttles(self, request):
|
|
|
|
"""
|
|
|
|
Check throttles and either raise a `Throttled` exception or return.
|
|
|
|
"""
|
|
|
|
for throttle in self.get_throttles():
|
|
|
|
if not throttle.check_throttle(request):
|
|
|
|
raise exceptions.Throttled(throttle.wait())
|
2012-08-24 23:57:10 +04:00
|
|
|
|
2011-05-24 13:27:24 +04:00
|
|
|
def initial(self, request, *args, **kargs):
|
|
|
|
"""
|
2012-09-05 12:54:46 +04:00
|
|
|
This method runs prior to anything else in the view.
|
|
|
|
It should return the initial request object.
|
|
|
|
|
|
|
|
You may need to override this if you want to do things like set
|
|
|
|
`request.upload_handlers` before the authentication and dispatch
|
|
|
|
handling is run.
|
2011-05-24 13:27:24 +04:00
|
|
|
"""
|
2012-09-05 12:54:46 +04:00
|
|
|
return Request(request, parsers=self.parsers, authentication=self.authentication)
|
2011-05-24 13:27:24 +04:00
|
|
|
|
2012-01-11 18:42:16 +04:00
|
|
|
def final(self, request, response, *args, **kargs):
|
|
|
|
"""
|
2012-09-05 12:54:46 +04:00
|
|
|
This method runs after everything else in the view.
|
|
|
|
It should return the final response object.
|
2012-01-11 18:42:16 +04:00
|
|
|
"""
|
2012-09-04 15:02:05 +04:00
|
|
|
if isinstance(response, Response):
|
|
|
|
response.view = self
|
|
|
|
response.request = request
|
|
|
|
response.renderers = self.renderers
|
|
|
|
|
2012-02-25 22:45:17 +04:00
|
|
|
for key, value in self.headers.items():
|
|
|
|
response[key] = value
|
2012-09-04 15:02:05 +04:00
|
|
|
|
2012-02-02 20:19:44 +04:00
|
|
|
return response
|
2011-06-15 17:41:09 +04:00
|
|
|
|
2012-08-27 02:06:52 +04:00
|
|
|
def handle_exception(self, exc):
|
|
|
|
"""
|
|
|
|
Handle any exception that occurs, by returning an appropriate response,
|
|
|
|
or re-raising the error.
|
|
|
|
"""
|
2012-09-05 00:58:35 +04:00
|
|
|
if isinstance(exc, exceptions.Throttled):
|
|
|
|
self.headers['X-Throttle-Wait-Seconds'] = '%d' % exc.wait
|
|
|
|
|
2012-09-01 23:26:27 +04:00
|
|
|
if isinstance(exc, exceptions.APIException):
|
2012-08-27 02:06:52 +04:00
|
|
|
return Response({'detail': exc.detail}, status=exc.status_code)
|
|
|
|
elif isinstance(exc, Http404):
|
|
|
|
return Response({'detail': 'Not found'},
|
|
|
|
status=status.HTTP_404_NOT_FOUND)
|
|
|
|
elif isinstance(exc, PermissionDenied):
|
|
|
|
return Response({'detail': 'Permission denied'},
|
|
|
|
status=status.HTTP_403_FORBIDDEN)
|
|
|
|
raise
|
|
|
|
|
2011-05-04 12:21:17 +04:00
|
|
|
# Note: session based authentication is explicitly CSRF validated,
|
|
|
|
# all other authentication is CSRF exempt.
|
|
|
|
@csrf_exempt
|
|
|
|
def dispatch(self, request, *args, **kwargs):
|
2011-05-24 19:31:17 +04:00
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
2012-02-25 22:45:17 +04:00
|
|
|
self.headers = self.default_response_headers
|
2011-05-24 19:31:17 +04:00
|
|
|
|
2011-05-13 20:19:12 +04:00
|
|
|
try:
|
2012-09-05 12:54:46 +04:00
|
|
|
self.request = self.initial(request, *args, **kwargs)
|
2011-12-09 16:54:11 +04:00
|
|
|
|
2012-09-05 00:58:35 +04:00
|
|
|
# Check that the request is allowed
|
|
|
|
self.check_permissions(request)
|
|
|
|
self.check_throttles(request)
|
2011-05-24 19:31:17 +04:00
|
|
|
|
|
|
|
# Get the appropriate handler method
|
2012-01-22 23:28:34 +04:00
|
|
|
if request.method.lower() in self.http_method_names:
|
|
|
|
handler = getattr(self, request.method.lower(), self.http_method_not_allowed)
|
2011-05-24 19:31:17 +04:00
|
|
|
else:
|
|
|
|
handler = self.http_method_not_allowed
|
2012-02-20 13:36:03 +04:00
|
|
|
|
2012-02-02 20:19:44 +04:00
|
|
|
response = handler(request, *args, **kwargs)
|
|
|
|
|
2012-08-27 02:06:52 +04:00
|
|
|
except Exception as exc:
|
|
|
|
response = self.handle_exception(exc)
|
2011-12-09 16:54:11 +04:00
|
|
|
|
2012-02-25 22:45:17 +04:00
|
|
|
self.response = self.final(request, response, *args, **kwargs)
|
|
|
|
return self.response
|
2011-07-31 00:23:53 +04:00
|
|
|
|
2012-09-03 20:49:22 +04:00
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
# Abstract view classes that do not provide any method handlers,
|
|
|
|
# but which provide required behaviour for concrete views to build on.
|
2012-09-03 20:49:22 +04:00
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
class BaseView(APIView):
|
|
|
|
"""
|
|
|
|
Base class for all generic views.
|
|
|
|
"""
|
|
|
|
serializer_class = None
|
|
|
|
|
|
|
|
def get_serializer(self, data=None, files=None, instance=None):
|
2012-09-05 00:58:35 +04:00
|
|
|
# TODO: add support for files
|
2012-09-04 15:02:05 +04:00
|
|
|
context = {
|
|
|
|
'request': self.request,
|
|
|
|
'format': self.kwargs.get('format', None)
|
|
|
|
}
|
2012-09-05 00:58:35 +04:00
|
|
|
return self.serializer_class(data, instance=instance, context=context)
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
class MultipleObjectBaseView(MultipleObjectMixin, BaseView):
|
2012-09-03 20:49:22 +04:00
|
|
|
"""
|
2012-09-04 15:02:05 +04:00
|
|
|
Base class for generic views onto a queryset.
|
2012-09-03 20:49:22 +04:00
|
|
|
"""
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
class SingleObjectBaseView(SingleObjectMixin, BaseView):
|
2012-09-03 20:49:22 +04:00
|
|
|
"""
|
2012-09-04 15:02:05 +04:00
|
|
|
Base class for generic views onto a model instance.
|
2012-09-03 20:49:22 +04:00
|
|
|
"""
|
2012-09-05 00:58:35 +04:00
|
|
|
|
|
|
|
def get_object(self):
|
|
|
|
"""
|
|
|
|
Override default to add support for object-level permissions.
|
|
|
|
"""
|
|
|
|
super(self, SingleObjectBaseView).get_object()
|
|
|
|
self.check_permissions(self.request, self.object)
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
# Concrete view classes that provide method handlers
|
|
|
|
# by composing the mixin classes with a base view.
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
class ListAPIView(mixins.ListModelMixin,
|
2012-09-04 15:02:05 +04:00
|
|
|
mixins.MetadataMixin,
|
2012-09-03 20:49:22 +04:00
|
|
|
MultipleObjectBaseView):
|
|
|
|
"""
|
|
|
|
Concrete view for listing a queryset.
|
|
|
|
"""
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
return self.list(request, *args, **kwargs)
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
def options(self, request, *args, **kwargs):
|
|
|
|
return self.metadata(request, *args, **kwargs)
|
|
|
|
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
class RootAPIView(mixins.ListModelMixin,
|
|
|
|
mixins.CreateModelMixin,
|
2012-09-04 15:02:05 +04:00
|
|
|
mixins.MetadataMixin,
|
2012-09-03 20:49:22 +04:00
|
|
|
MultipleObjectBaseView):
|
|
|
|
"""
|
|
|
|
Concrete view for listing a queryset or creating a model instance.
|
|
|
|
"""
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
return self.list(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def post(self, request, *args, **kwargs):
|
|
|
|
return self.create(request, *args, **kwargs)
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
def options(self, request, *args, **kwargs):
|
|
|
|
return self.metadata(request, *args, **kwargs)
|
|
|
|
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
class DetailAPIView(mixins.RetrieveModelMixin,
|
2012-09-04 15:02:05 +04:00
|
|
|
mixins.MetadataMixin,
|
|
|
|
SingleObjectBaseView):
|
2012-09-03 20:49:22 +04:00
|
|
|
"""
|
|
|
|
Concrete view for retrieving a model instance.
|
|
|
|
"""
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
return self.retrieve(request, *args, **kwargs)
|
|
|
|
|
2012-09-04 15:02:05 +04:00
|
|
|
def options(self, request, *args, **kwargs):
|
|
|
|
return self.metadata(request, *args, **kwargs)
|
|
|
|
|
2012-09-03 20:49:22 +04:00
|
|
|
|
|
|
|
class InstanceAPIView(mixins.RetrieveModelMixin,
|
|
|
|
mixins.UpdateModelMixin,
|
|
|
|
mixins.DestroyModelMixin,
|
2012-09-04 15:02:05 +04:00
|
|
|
mixins.MetadataMixin,
|
2012-09-03 20:49:22 +04:00
|
|
|
SingleObjectBaseView):
|
|
|
|
"""
|
|
|
|
Concrete view for retrieving, updating or deleting a model instance.
|
|
|
|
"""
|
|
|
|
def get(self, request, *args, **kwargs):
|
|
|
|
return self.retrieve(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def put(self, request, *args, **kwargs):
|
|
|
|
return self.update(request, *args, **kwargs)
|
|
|
|
|
|
|
|
def delete(self, request, *args, **kwargs):
|
|
|
|
return self.destroy(request, *args, **kwargs)
|
2012-09-04 15:02:05 +04:00
|
|
|
|
|
|
|
def options(self, request, *args, **kwargs):
|
|
|
|
return self.metadata(request, *args, **kwargs)
|