2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-04-25 15:47:34 +04:00
|
|
|
Provides an APIView class that is the base of all views in REST framework.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2024-09-07 14:21:18 +03:00
|
|
|
from django import VERSION as DJANGO_VERSION
|
2016-08-10 17:24:32 +03:00
|
|
|
from django.conf import settings
|
2015-06-25 23:55:51 +03:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2021-03-03 14:15:39 +03:00
|
|
|
from django.db import connections, models
|
2015-06-18 16:38:29 +03:00
|
|
|
from django.http import Http404
|
2016-08-18 16:42:15 +03:00
|
|
|
from django.http.response import HttpResponseBase
|
2017-04-04 15:57:19 +03:00
|
|
|
from django.utils.cache import cc_delim_re, patch_vary_headers
|
2019-12-05 01:14:43 +03:00
|
|
|
from django.utils.encoding import smart_str
|
2015-06-25 23:55:51 +03:00
|
|
|
from django.views.decorators.csrf import csrf_exempt
|
2015-08-07 00:51:35 +03:00
|
|
|
from django.views.generic import View
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2015-06-25 23:55:51 +03:00
|
|
|
from rest_framework import exceptions, status
|
2013-05-25 02:44:23 +04:00
|
|
|
from rest_framework.request import Request
|
2013-05-19 16:55:46 +04:00
|
|
|
from rest_framework.response import Response
|
2017-12-14 13:24:21 +03:00
|
|
|
from rest_framework.schemas import DefaultSchema
|
2012-09-20 16:06:27 +04:00
|
|
|
from rest_framework.settings import api_settings
|
2015-06-25 23:55:51 +03:00
|
|
|
from rest_framework.utils import formatting
|
2013-08-19 11:24:27 +04:00
|
|
|
|
|
|
|
|
2018-07-06 11:33:10 +03:00
|
|
|
def get_view_name(view):
|
2013-08-27 15:32:33 +04:00
|
|
|
"""
|
2018-10-02 17:22:21 +03:00
|
|
|
Given a view instance, return a textual name to represent the view.
|
2013-08-27 15:32:33 +04:00
|
|
|
This name is used in the browsable API, and in OPTIONS responses.
|
|
|
|
|
|
|
|
This function is the default for the `VIEW_NAME_FUNCTION` setting.
|
|
|
|
"""
|
2018-07-06 11:33:10 +03:00
|
|
|
# Name may be set by some Views, such as a ViewSet.
|
|
|
|
name = getattr(view, 'name', None)
|
|
|
|
if name is not None:
|
|
|
|
return name
|
|
|
|
|
|
|
|
name = view.__class__.__name__
|
2013-08-19 11:24:27 +04:00
|
|
|
name = formatting.remove_trailing_string(name, 'View')
|
|
|
|
name = formatting.remove_trailing_string(name, 'ViewSet')
|
|
|
|
name = formatting.camelcase_to_spaces(name)
|
2018-07-06 11:33:10 +03:00
|
|
|
|
|
|
|
# Suffix may be set by some Views, such as a ViewSet.
|
|
|
|
suffix = getattr(view, 'suffix', None)
|
2013-08-19 11:24:27 +04:00
|
|
|
if suffix:
|
|
|
|
name += ' ' + suffix
|
|
|
|
|
|
|
|
return name
|
|
|
|
|
2014-08-19 16:28:07 +04:00
|
|
|
|
2018-07-06 11:33:10 +03:00
|
|
|
def get_view_description(view, html=False):
|
2013-08-27 15:32:33 +04:00
|
|
|
"""
|
2018-10-02 17:22:21 +03:00
|
|
|
Given a view instance, return a textual description to represent the view.
|
2013-08-27 15:32:33 +04:00
|
|
|
This name is used in the browsable API, and in OPTIONS responses.
|
|
|
|
|
|
|
|
This function is the default for the `VIEW_DESCRIPTION_FUNCTION` setting.
|
|
|
|
"""
|
2018-07-06 11:33:10 +03:00
|
|
|
# Description may be set by some Views, such as a ViewSet.
|
|
|
|
description = getattr(view, 'description', None)
|
|
|
|
if description is None:
|
|
|
|
description = view.__class__.__doc__ or ''
|
|
|
|
|
2019-12-05 01:14:43 +03:00
|
|
|
description = formatting.dedent(smart_str(description))
|
2013-08-19 11:24:27 +04:00
|
|
|
if html:
|
|
|
|
return formatting.markup_description(description)
|
|
|
|
return description
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
|
2017-11-14 11:55:59 +03:00
|
|
|
def set_rollback():
|
2021-03-03 14:15:39 +03:00
|
|
|
for db in connections.all():
|
|
|
|
if db.settings_dict['ATOMIC_REQUESTS'] and db.in_atomic_block:
|
|
|
|
db.set_rollback(True)
|
2017-11-14 11:55:59 +03:00
|
|
|
|
|
|
|
|
2014-12-15 03:47:33 +03:00
|
|
|
def exception_handler(exc, context):
|
2013-08-27 15:32:33 +04:00
|
|
|
"""
|
|
|
|
Returns the response that should be used for any given exception.
|
|
|
|
|
|
|
|
By default we handle the REST framework `APIException`, and also
|
2015-04-24 16:37:42 +03:00
|
|
|
Django's built-in `Http404` and `PermissionDenied` exceptions.
|
2013-08-27 15:32:33 +04:00
|
|
|
|
|
|
|
Any unhandled exceptions may return `None`, which will cause a 500 error
|
|
|
|
to be raised.
|
|
|
|
"""
|
2018-01-31 01:10:02 +03:00
|
|
|
if isinstance(exc, Http404):
|
2022-10-11 15:48:57 +03:00
|
|
|
exc = exceptions.NotFound(*(exc.args))
|
2018-01-31 01:10:02 +03:00
|
|
|
elif isinstance(exc, PermissionDenied):
|
2022-10-11 15:48:57 +03:00
|
|
|
exc = exceptions.PermissionDenied(*(exc.args))
|
2018-01-31 01:10:02 +03:00
|
|
|
|
2013-08-27 15:32:33 +04:00
|
|
|
if isinstance(exc, exceptions.APIException):
|
|
|
|
headers = {}
|
|
|
|
if getattr(exc, 'auth_header', None):
|
|
|
|
headers['WWW-Authenticate'] = exc.auth_header
|
|
|
|
if getattr(exc, 'wait', None):
|
2014-04-07 20:31:12 +04:00
|
|
|
headers['Retry-After'] = '%d' % exc.wait
|
2013-08-27 15:32:33 +04:00
|
|
|
|
2014-10-10 17:16:09 +04:00
|
|
|
if isinstance(exc.detail, (list, dict)):
|
|
|
|
data = exc.detail
|
|
|
|
else:
|
|
|
|
data = {'detail': exc.detail}
|
2013-08-27 15:32:33 +04:00
|
|
|
|
2015-04-29 16:08:52 +03:00
|
|
|
set_rollback()
|
2014-10-10 17:16:09 +04:00
|
|
|
return Response(data, status=exc.status_code, headers=headers)
|
2014-09-08 17:24:05 +04:00
|
|
|
|
2013-08-27 15:32:33 +04:00
|
|
|
return None
|
|
|
|
|
|
|
|
|
2012-09-20 20:44:34 +04:00
|
|
|
class APIView(View):
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2013-08-27 15:36:06 +04:00
|
|
|
# The following policies may be set at either globally, or per-view.
|
2012-10-18 02:09:11 +04:00
|
|
|
renderer_classes = api_settings.DEFAULT_RENDERER_CLASSES
|
|
|
|
parser_classes = api_settings.DEFAULT_PARSER_CLASSES
|
|
|
|
authentication_classes = api_settings.DEFAULT_AUTHENTICATION_CLASSES
|
|
|
|
throttle_classes = api_settings.DEFAULT_THROTTLE_CLASSES
|
|
|
|
permission_classes = api_settings.DEFAULT_PERMISSION_CLASSES
|
|
|
|
content_negotiation_class = api_settings.DEFAULT_CONTENT_NEGOTIATION_CLASS
|
2014-09-24 17:09:49 +04:00
|
|
|
metadata_class = api_settings.DEFAULT_METADATA_CLASS
|
2014-12-16 18:34:19 +03:00
|
|
|
versioning_class = api_settings.DEFAULT_VERSIONING_CLASS
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-10-02 23:41:18 +04:00
|
|
|
# Allow dependency injection of other settings to make testing easier.
|
2013-08-27 15:36:06 +04:00
|
|
|
settings = api_settings
|
|
|
|
|
2017-12-14 13:24:21 +03:00
|
|
|
schema = DefaultSchema()
|
2016-10-10 15:03:46 +03:00
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
@classmethod
|
|
|
|
def as_view(cls, **initkwargs):
|
|
|
|
"""
|
2013-04-05 00:42:26 +04:00
|
|
|
Store the original class on the view function.
|
|
|
|
|
|
|
|
This allows us to discover information about the view when we do URL
|
|
|
|
reverse lookups. Used for breadcrumb generation.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2015-07-23 19:43:49 +03:00
|
|
|
if isinstance(getattr(cls, 'queryset', None), models.query.QuerySet):
|
2015-07-23 19:17:18 +03:00
|
|
|
def force_evaluation():
|
2015-07-24 11:13:39 +03:00
|
|
|
raise RuntimeError(
|
2015-07-23 19:17:18 +03:00
|
|
|
'Do not evaluate the `.queryset` attribute directly, '
|
|
|
|
'as the result will be cached and reused between requests. '
|
|
|
|
'Use `.all()` or call `.get_queryset()` instead.'
|
|
|
|
)
|
|
|
|
cls.queryset._fetch_all = force_evaluation
|
|
|
|
|
2019-04-30 18:53:44 +03:00
|
|
|
view = super().as_view(**initkwargs)
|
2013-04-05 00:42:26 +04:00
|
|
|
view.cls = cls
|
2016-10-10 15:03:46 +03:00
|
|
|
view.initkwargs = initkwargs
|
2015-07-23 19:17:18 +03:00
|
|
|
|
2024-09-07 14:21:18 +03:00
|
|
|
# Exempt all DRF views from Django's LoginRequiredMiddleware. Users should set
|
|
|
|
# DEFAULT_PERMISSION_CLASSES to 'rest_framework.permissions.IsAuthenticated' instead
|
|
|
|
if DJANGO_VERSION >= (5, 1):
|
|
|
|
view.login_required = False
|
|
|
|
|
2014-07-25 22:09:07 +04:00
|
|
|
# Note: session based authentication is explicitly CSRF validated,
|
|
|
|
# all other authentication is CSRF exempt.
|
|
|
|
return csrf_exempt(view)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def allowed_methods(self):
|
|
|
|
"""
|
2013-04-09 21:22:39 +04:00
|
|
|
Wrap Django's private `_allowed_methods` interface in a public property.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-04-09 21:22:39 +04:00
|
|
|
return self._allowed_methods()
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
@property
|
|
|
|
def default_response_headers(self):
|
2014-01-30 21:47:55 +04:00
|
|
|
headers = {
|
2012-09-20 16:06:27 +04:00
|
|
|
'Allow': ', '.join(self.allowed_methods),
|
|
|
|
}
|
2014-01-30 21:47:55 +04:00
|
|
|
if len(self.renderer_classes) > 1:
|
|
|
|
headers['Vary'] = 'Accept'
|
|
|
|
return headers
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def http_method_not_allowed(self, request, *args, **kwargs):
|
|
|
|
"""
|
2013-04-09 21:22:39 +04:00
|
|
|
If `request.method` does not correspond to a handler method,
|
|
|
|
determine what kind of exception to raise.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
raise exceptions.MethodNotAllowed(request.method)
|
|
|
|
|
2020-05-01 12:22:36 +03:00
|
|
|
def permission_denied(self, request, message=None, code=None):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
If request is not permitted, determine what kind of exception to raise.
|
|
|
|
"""
|
2016-04-07 18:24:26 +03:00
|
|
|
if request.authenticators and not request.successful_authenticator:
|
2012-11-13 15:27:09 +04:00
|
|
|
raise exceptions.NotAuthenticated()
|
2020-05-01 12:22:36 +03:00
|
|
|
raise exceptions.PermissionDenied(detail=message, code=code)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
def throttled(self, request, wait):
|
|
|
|
"""
|
|
|
|
If request is throttled, determine what kind of exception to raise.
|
|
|
|
"""
|
|
|
|
raise exceptions.Throttled(wait)
|
|
|
|
|
2013-01-22 01:29:49 +04:00
|
|
|
def get_authenticate_header(self, request):
|
|
|
|
"""
|
|
|
|
If a request is unauthenticated, determine the WWW-Authenticate
|
|
|
|
header to use for 401 responses, if any.
|
|
|
|
"""
|
|
|
|
authenticators = self.get_authenticators()
|
|
|
|
if authenticators:
|
|
|
|
return authenticators[0].authenticate_header(request)
|
|
|
|
|
2012-10-15 17:03:36 +04:00
|
|
|
def get_parser_context(self, http_request):
|
2012-10-15 16:27:50 +04:00
|
|
|
"""
|
2012-10-18 01:07:56 +04:00
|
|
|
Returns a dict that is passed through to Parser.parse(),
|
2012-10-15 16:27:50 +04:00
|
|
|
as the `parser_context` keyword argument.
|
|
|
|
"""
|
2013-10-24 16:45:16 +04:00
|
|
|
# Note: Additionally `request` and `encoding` will also be added
|
|
|
|
# to the context by the Request object.
|
2012-10-15 16:27:50 +04:00
|
|
|
return {
|
2012-10-18 01:19:59 +04:00
|
|
|
'view': self,
|
|
|
|
'args': getattr(self, 'args', ()),
|
|
|
|
'kwargs': getattr(self, 'kwargs', {})
|
2012-10-15 16:27:50 +04:00
|
|
|
}
|
|
|
|
|
2012-10-10 15:15:18 +04:00
|
|
|
def get_renderer_context(self):
|
|
|
|
"""
|
2012-10-15 16:27:50 +04:00
|
|
|
Returns a dict that is passed through to Renderer.render(),
|
2012-10-10 15:15:18 +04:00
|
|
|
as the `renderer_context` keyword argument.
|
|
|
|
"""
|
2012-10-18 01:19:59 +04:00
|
|
|
# Note: Additionally 'response' will also be added to the context,
|
2012-10-10 15:15:18 +04:00
|
|
|
# by the Response object.
|
|
|
|
return {
|
|
|
|
'view': self,
|
2012-10-18 01:19:59 +04:00
|
|
|
'args': getattr(self, 'args', ()),
|
|
|
|
'kwargs': getattr(self, 'kwargs', {}),
|
|
|
|
'request': getattr(self, 'request', None)
|
2012-10-10 15:15:18 +04:00
|
|
|
}
|
|
|
|
|
2014-12-14 23:43:58 +03:00
|
|
|
def get_exception_handler_context(self):
|
|
|
|
"""
|
|
|
|
Returns a dict that is passed through to EXCEPTION_HANDLER,
|
|
|
|
as the `context` argument.
|
|
|
|
"""
|
|
|
|
return {
|
|
|
|
'view': self,
|
|
|
|
'args': getattr(self, 'args', ()),
|
|
|
|
'kwargs': getattr(self, 'kwargs', {}),
|
|
|
|
'request': getattr(self, 'request', None)
|
|
|
|
}
|
|
|
|
|
2013-08-19 11:45:53 +04:00
|
|
|
def get_view_name(self):
|
|
|
|
"""
|
|
|
|
Return the view name, as used in OPTIONS responses and in the
|
|
|
|
browsable API.
|
|
|
|
"""
|
2013-08-27 15:36:06 +04:00
|
|
|
func = self.settings.VIEW_NAME_FUNCTION
|
2018-07-06 11:33:10 +03:00
|
|
|
return func(self)
|
2013-08-19 11:45:53 +04:00
|
|
|
|
|
|
|
def get_view_description(self, html=False):
|
|
|
|
"""
|
|
|
|
Return some descriptive text for the view, as used in OPTIONS responses
|
|
|
|
and in the browsable API.
|
|
|
|
"""
|
2013-08-27 15:36:06 +04:00
|
|
|
func = self.settings.VIEW_DESCRIPTION_FUNCTION
|
2018-07-06 11:33:10 +03:00
|
|
|
return func(self, html)
|
2013-08-19 11:45:53 +04:00
|
|
|
|
2012-10-05 17:48:33 +04:00
|
|
|
# API policy instantiation methods
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def get_format_suffix(self, **kwargs):
|
|
|
|
"""
|
|
|
|
Determine if the request includes a '.json' style format suffix
|
|
|
|
"""
|
|
|
|
if self.settings.FORMAT_SUFFIX_KWARG:
|
|
|
|
return kwargs.get(self.settings.FORMAT_SUFFIX_KWARG)
|
|
|
|
|
2012-10-05 17:48:33 +04:00
|
|
|
def get_renderers(self):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Instantiates and returns the list of renderers that this view can use.
|
|
|
|
"""
|
2012-10-10 15:15:18 +04:00
|
|
|
return [renderer() for renderer in self.renderer_classes]
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-10-05 17:48:33 +04:00
|
|
|
def get_parsers(self):
|
|
|
|
"""
|
2013-02-20 12:46:00 +04:00
|
|
|
Instantiates and returns the list of parsers that this view can use.
|
2012-10-05 17:48:33 +04:00
|
|
|
"""
|
|
|
|
return [parser() for parser in self.parser_classes]
|
|
|
|
|
|
|
|
def get_authenticators(self):
|
|
|
|
"""
|
2013-02-20 12:46:00 +04:00
|
|
|
Instantiates and returns the list of authenticators that this view can use.
|
2012-10-05 17:48:33 +04:00
|
|
|
"""
|
|
|
|
return [auth() for auth in self.authentication_classes]
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def get_permissions(self):
|
|
|
|
"""
|
|
|
|
Instantiates and returns the list of permissions that this view requires.
|
|
|
|
"""
|
2012-10-10 13:02:37 +04:00
|
|
|
return [permission() for permission in self.permission_classes]
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
def get_throttles(self):
|
|
|
|
"""
|
2012-10-30 03:30:52 +04:00
|
|
|
Instantiates and returns the list of throttles that this view uses.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2012-10-10 13:02:37 +04:00
|
|
|
return [throttle() for throttle in self.throttle_classes]
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2012-10-05 17:22:02 +04:00
|
|
|
def get_content_negotiator(self):
|
|
|
|
"""
|
|
|
|
Instantiate and return the content negotiation class to use.
|
|
|
|
"""
|
2012-10-05 17:48:33 +04:00
|
|
|
if not getattr(self, '_negotiator', None):
|
|
|
|
self._negotiator = self.content_negotiation_class()
|
|
|
|
return self._negotiator
|
|
|
|
|
2016-12-15 15:36:40 +03:00
|
|
|
def get_exception_handler(self):
|
|
|
|
"""
|
|
|
|
Returns the exception handler that this view uses.
|
|
|
|
"""
|
2017-04-06 21:25:21 +03:00
|
|
|
return self.settings.EXCEPTION_HANDLER
|
2016-12-15 15:36:40 +03:00
|
|
|
|
2012-10-05 17:48:33 +04:00
|
|
|
# API policy implementation methods
|
2012-10-05 17:22:02 +04:00
|
|
|
|
2012-09-21 16:12:10 +04:00
|
|
|
def perform_content_negotiation(self, request, force=False):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Determine which renderer and media type to use render the response.
|
|
|
|
"""
|
|
|
|
renderers = self.get_renderers()
|
2012-10-05 17:22:02 +04:00
|
|
|
conneg = self.get_content_negotiator()
|
2012-10-18 01:58:18 +04:00
|
|
|
|
|
|
|
try:
|
|
|
|
return conneg.select_renderer(request, renderers, self.format_kwarg)
|
2013-02-06 17:05:17 +04:00
|
|
|
except Exception:
|
2012-10-18 01:58:18 +04:00
|
|
|
if force:
|
|
|
|
return (renderers[0], renderers[0].media_type)
|
|
|
|
raise
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2013-02-28 21:58:58 +04:00
|
|
|
def perform_authentication(self, request):
|
|
|
|
"""
|
|
|
|
Perform authentication on the incoming request.
|
|
|
|
|
|
|
|
Note that if you override this and simply 'pass', then authentication
|
|
|
|
will instead be performed lazily, the first time either
|
|
|
|
`request.user` or `request.auth` is accessed.
|
|
|
|
"""
|
|
|
|
request.user
|
|
|
|
|
2013-02-11 17:02:20 +04:00
|
|
|
def check_permissions(self, request):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-02-11 17:02:20 +04:00
|
|
|
Check if the request should be permitted.
|
|
|
|
Raises an appropriate exception if the request is not permitted.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2013-02-11 16:47:56 +04:00
|
|
|
for permission in self.get_permissions():
|
|
|
|
if not permission.has_permission(request, self):
|
2015-02-11 14:15:01 +03:00
|
|
|
self.permission_denied(
|
2020-05-01 12:22:36 +03:00
|
|
|
request,
|
|
|
|
message=getattr(permission, 'message', None),
|
|
|
|
code=getattr(permission, 'code', None)
|
2015-02-11 14:15:01 +03:00
|
|
|
)
|
2013-02-11 16:47:56 +04:00
|
|
|
|
2013-02-11 17:02:20 +04:00
|
|
|
def check_object_permissions(self, request, obj):
|
2013-02-11 16:47:56 +04:00
|
|
|
"""
|
2013-02-11 17:02:20 +04:00
|
|
|
Check if the request should be permitted for a given object.
|
|
|
|
Raises an appropriate exception if the request is not permitted.
|
2013-02-11 16:47:56 +04:00
|
|
|
"""
|
2012-09-20 16:06:27 +04:00
|
|
|
for permission in self.get_permissions():
|
2013-02-11 16:47:56 +04:00
|
|
|
if not permission.has_object_permission(request, self, obj):
|
2015-02-11 14:15:01 +03:00
|
|
|
self.permission_denied(
|
2020-05-01 12:22:36 +03:00
|
|
|
request,
|
|
|
|
message=getattr(permission, 'message', None),
|
|
|
|
code=getattr(permission, 'code', None)
|
2015-02-11 14:15:01 +03:00
|
|
|
)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
def check_throttles(self, request):
|
|
|
|
"""
|
|
|
|
Check if request should be throttled.
|
2013-02-11 17:02:20 +04:00
|
|
|
Raises an appropriate exception if the request is throttled.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2019-05-23 16:42:29 +03:00
|
|
|
throttle_durations = []
|
2012-09-20 16:06:27 +04:00
|
|
|
for throttle in self.get_throttles():
|
2012-10-10 13:02:37 +04:00
|
|
|
if not throttle.allow_request(request, self):
|
2019-05-23 16:42:29 +03:00
|
|
|
throttle_durations.append(throttle.wait())
|
|
|
|
|
|
|
|
if throttle_durations:
|
2019-08-12 21:36:05 +03:00
|
|
|
# Filter out `None` values which may happen in case of config / rate
|
|
|
|
# changes, see #1438
|
|
|
|
durations = [
|
|
|
|
duration for duration in throttle_durations
|
|
|
|
if duration is not None
|
|
|
|
]
|
|
|
|
|
|
|
|
duration = max(durations, default=None)
|
|
|
|
self.throttled(request, duration)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-12-16 18:34:19 +03:00
|
|
|
def determine_version(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
If versioning is being used, then determine any API version for the
|
|
|
|
incoming request. Returns a two-tuple of (version, versioning_scheme)
|
|
|
|
"""
|
|
|
|
if self.versioning_class is None:
|
|
|
|
return (None, None)
|
|
|
|
scheme = self.versioning_class()
|
|
|
|
return (scheme.determine_version(request, *args, **kwargs), scheme)
|
|
|
|
|
2012-10-05 17:48:33 +04:00
|
|
|
# Dispatch methods
|
|
|
|
|
2014-03-04 19:32:34 +04:00
|
|
|
def initialize_request(self, request, *args, **kwargs):
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
|
|
|
Returns the initial request object.
|
|
|
|
"""
|
2012-10-15 16:27:50 +04:00
|
|
|
parser_context = self.get_parser_context(request)
|
|
|
|
|
2014-12-16 18:34:19 +03:00
|
|
|
return Request(
|
|
|
|
request,
|
|
|
|
parsers=self.get_parsers(),
|
|
|
|
authenticators=self.get_authenticators(),
|
|
|
|
negotiator=self.get_content_negotiator(),
|
|
|
|
parser_context=parser_context
|
|
|
|
)
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
def initial(self, request, *args, **kwargs):
|
|
|
|
"""
|
2012-10-05 17:48:33 +04:00
|
|
|
Runs anything that needs to occur prior to calling the method handler.
|
2012-09-20 16:06:27 +04:00
|
|
|
"""
|
2012-10-05 17:22:02 +04:00
|
|
|
self.format_kwarg = self.get_format_suffix(**kwargs)
|
2012-10-05 13:33:44 +04:00
|
|
|
|
|
|
|
# Perform content negotiation and store the accepted info on the request
|
|
|
|
neg = self.perform_content_negotiation(request)
|
|
|
|
request.accepted_renderer, request.accepted_media_type = neg
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2014-12-16 18:34:19 +03:00
|
|
|
# Determine the API version, if versioning is in use.
|
|
|
|
version, scheme = self.determine_version(request, *args, **kwargs)
|
|
|
|
request.version, request.versioning_scheme = version, scheme
|
|
|
|
|
2016-03-20 23:46:37 +03:00
|
|
|
# Ensure that the incoming request is permitted
|
|
|
|
self.perform_authentication(request)
|
|
|
|
self.check_permissions(request)
|
|
|
|
self.check_throttles(request)
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
def finalize_response(self, request, response, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Returns the final response object.
|
|
|
|
"""
|
2013-04-16 17:32:46 +04:00
|
|
|
# Make the error obvious if a proper response is not returned
|
2013-06-22 01:42:04 +04:00
|
|
|
assert isinstance(response, HttpResponseBase), (
|
2024-03-17 16:22:03 +03:00
|
|
|
'Expected a `Response`, `HttpResponse` or `StreamingHttpResponse` '
|
2013-06-22 01:42:04 +04:00
|
|
|
'to be returned from the view, but received a `%s`'
|
|
|
|
% type(response)
|
2013-04-16 17:32:46 +04:00
|
|
|
)
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
if isinstance(response, Response):
|
2012-10-05 13:33:44 +04:00
|
|
|
if not getattr(request, 'accepted_renderer', None):
|
|
|
|
neg = self.perform_content_negotiation(request, force=True)
|
|
|
|
request.accepted_renderer, request.accepted_media_type = neg
|
|
|
|
|
|
|
|
response.accepted_renderer = request.accepted_renderer
|
|
|
|
response.accepted_media_type = request.accepted_media_type
|
2012-10-10 15:15:18 +04:00
|
|
|
response.renderer_context = self.get_renderer_context()
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2017-04-04 15:57:19 +03:00
|
|
|
# Add new vary headers to the response instead of overwriting.
|
|
|
|
vary_headers = self.headers.pop('Vary', None)
|
|
|
|
if vary_headers is not None:
|
|
|
|
patch_vary_headers(response, cc_delim_re.split(vary_headers))
|
|
|
|
|
2012-09-20 16:06:27 +04:00
|
|
|
for key, value in self.headers.items():
|
|
|
|
response[key] = value
|
|
|
|
|
|
|
|
return response
|
|
|
|
|
|
|
|
def handle_exception(self, exc):
|
|
|
|
"""
|
|
|
|
Handle any exception that occurs, by returning an appropriate response,
|
|
|
|
or re-raising the error.
|
|
|
|
"""
|
2013-01-22 01:29:49 +04:00
|
|
|
if isinstance(exc, (exceptions.NotAuthenticated,
|
|
|
|
exceptions.AuthenticationFailed)):
|
|
|
|
# WWW-Authenticate header for 401 responses, else coerce to 403
|
|
|
|
auth_header = self.get_authenticate_header(self.request)
|
|
|
|
|
|
|
|
if auth_header:
|
2013-08-27 15:32:33 +04:00
|
|
|
exc.auth_header = auth_header
|
2013-01-22 01:29:49 +04:00
|
|
|
else:
|
|
|
|
exc.status_code = status.HTTP_403_FORBIDDEN
|
|
|
|
|
2016-12-15 15:36:40 +03:00
|
|
|
exception_handler = self.get_exception_handler()
|
2014-12-14 22:20:44 +03:00
|
|
|
|
2015-07-30 17:26:42 +03:00
|
|
|
context = self.get_exception_handler_context()
|
|
|
|
response = exception_handler(exc, context)
|
2013-08-27 15:32:33 +04:00
|
|
|
|
|
|
|
if response is None:
|
2016-08-18 16:42:15 +03:00
|
|
|
self.raise_uncaught_exception(exc)
|
2013-08-27 15:32:33 +04:00
|
|
|
|
|
|
|
response.exception = True
|
|
|
|
return response
|
2012-09-20 16:06:27 +04:00
|
|
|
|
2016-08-18 16:42:15 +03:00
|
|
|
def raise_uncaught_exception(self, exc):
|
|
|
|
if settings.DEBUG:
|
|
|
|
request = self.request
|
|
|
|
renderer_format = getattr(request.accepted_renderer, 'format')
|
|
|
|
use_plaintext_traceback = renderer_format not in ('html', 'api', 'admin')
|
|
|
|
request.force_plaintext_errors(use_plaintext_traceback)
|
2019-03-07 12:44:20 +03:00
|
|
|
raise exc
|
2016-08-18 16:42:15 +03:00
|
|
|
|
2014-07-25 22:09:07 +04:00
|
|
|
# Note: Views are made CSRF exempt from within `as_view` as to prevent
|
|
|
|
# accidental removal of this exemption in cases where `dispatch` needs to
|
|
|
|
# be overridden.
|
2012-09-20 16:06:27 +04:00
|
|
|
def dispatch(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
`.dispatch()` is pretty much the same as Django's regular dispatch,
|
|
|
|
but with extra hooks for startup, finalize, and exception handling.
|
|
|
|
"""
|
|
|
|
self.args = args
|
|
|
|
self.kwargs = kwargs
|
2013-06-08 06:25:39 +04:00
|
|
|
request = self.initialize_request(request, *args, **kwargs)
|
|
|
|
self.request = request
|
2012-10-10 15:15:18 +04:00
|
|
|
self.headers = self.default_response_headers # deprecate?
|
2012-09-20 16:06:27 +04:00
|
|
|
|
|
|
|
try:
|
|
|
|
self.initial(request, *args, **kwargs)
|
|
|
|
|
|
|
|
# Get the appropriate handler method
|
|
|
|
if request.method.lower() in self.http_method_names:
|
|
|
|
handler = getattr(self, request.method.lower(),
|
|
|
|
self.http_method_not_allowed)
|
|
|
|
else:
|
|
|
|
handler = self.http_method_not_allowed
|
|
|
|
|
|
|
|
response = handler(request, *args, **kwargs)
|
|
|
|
|
|
|
|
except Exception as exc:
|
|
|
|
response = self.handle_exception(exc)
|
|
|
|
|
|
|
|
self.response = self.finalize_response(request, response, *args, **kwargs)
|
|
|
|
return self.response
|
2012-10-08 17:13:15 +04:00
|
|
|
|
|
|
|
def options(self, request, *args, **kwargs):
|
|
|
|
"""
|
|
|
|
Handler method for HTTP 'OPTIONS' request.
|
|
|
|
"""
|
2014-09-24 17:09:49 +04:00
|
|
|
if self.metadata_class is None:
|
|
|
|
return self.http_method_not_allowed(request, *args, **kwargs)
|
|
|
|
data = self.metadata_class().determine_metadata(request, self)
|
|
|
|
return Response(data, status=status.HTTP_200_OK)
|