2013-04-25 15:47:34 +04:00
|
|
|
"""
|
2013-05-28 18:09:23 +04:00
|
|
|
The most important decorator in this module is `@api_view`, which is used
|
2013-04-25 15:47:34 +04:00
|
|
|
for writing function-based views with REST framework.
|
|
|
|
|
|
|
|
There are also various decorators for setting the API policies on function
|
2013-07-16 02:35:13 +04:00
|
|
|
based views, as well as the `@detail_route` and `@list_route` decorators, which are
|
2013-04-25 15:47:34 +04:00
|
|
|
used to annotate methods on viewsets that should be included by routers.
|
|
|
|
"""
|
2013-02-05 00:55:35 +04:00
|
|
|
from __future__ import unicode_literals
|
2015-06-18 16:38:29 +03:00
|
|
|
|
|
|
|
import types
|
2017-09-20 12:29:47 +03:00
|
|
|
import warnings
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2014-08-19 20:06:55 +04:00
|
|
|
from django.utils import six
|
2015-06-18 16:38:29 +03:00
|
|
|
|
2012-09-26 16:52:29 +04:00
|
|
|
from rest_framework.views import APIView
|
2012-09-14 19:07:07 +04:00
|
|
|
|
|
|
|
|
2016-10-10 15:03:46 +03:00
|
|
|
def api_view(http_method_names=None, exclude_from_schema=False):
|
2012-09-14 19:07:07 +04:00
|
|
|
"""
|
2012-09-26 16:52:29 +04:00
|
|
|
Decorator that converts a function-based view into an APIView subclass.
|
|
|
|
Takes a list of allowed methods for the view as an argument.
|
2012-09-14 19:07:07 +04:00
|
|
|
"""
|
2015-02-04 17:26:23 +03:00
|
|
|
http_method_names = ['GET'] if (http_method_names is None) else http_method_names
|
2012-09-14 19:07:07 +04:00
|
|
|
|
2012-09-26 16:52:29 +04:00
|
|
|
def decorator(func):
|
|
|
|
|
2012-10-29 18:41:33 +04:00
|
|
|
WrappedAPIView = type(
|
2013-02-05 00:55:35 +04:00
|
|
|
six.PY3 and 'WrappedAPIView' or b'WrappedAPIView',
|
2012-10-29 18:41:33 +04:00
|
|
|
(APIView,),
|
|
|
|
{'__doc__': func.__doc__}
|
|
|
|
)
|
|
|
|
|
|
|
|
# Note, the above allows us to set the docstring.
|
2012-11-14 22:36:29 +04:00
|
|
|
# It is the equivalent of:
|
2012-10-29 18:41:33 +04:00
|
|
|
#
|
|
|
|
# class WrappedAPIView(APIView):
|
|
|
|
# pass
|
|
|
|
# WrappedAPIView.__doc__ = func.doc <--- Not possible to do this
|
2012-09-26 16:52:29 +04:00
|
|
|
|
2013-01-19 19:51:14 +04:00
|
|
|
# api_view applied without (method_names)
|
|
|
|
assert not(isinstance(http_method_names, types.FunctionType)), \
|
|
|
|
'@api_view missing list of allowed HTTP methods'
|
|
|
|
|
|
|
|
# api_view applied with eg. string instead of list of strings
|
|
|
|
assert isinstance(http_method_names, (list, tuple)), \
|
2013-05-28 18:09:23 +04:00
|
|
|
'@api_view expected a list of strings, received %s' % type(http_method_names).__name__
|
2013-01-19 19:51:14 +04:00
|
|
|
|
2017-11-06 12:03:01 +03:00
|
|
|
allowed_methods = set(http_method_names) | {'options'}
|
2012-10-09 15:01:17 +04:00
|
|
|
WrappedAPIView.http_method_names = [method.lower() for method in allowed_methods]
|
2012-09-26 16:52:29 +04:00
|
|
|
|
|
|
|
def handler(self, *args, **kwargs):
|
|
|
|
return func(*args, **kwargs)
|
|
|
|
|
|
|
|
for method in http_method_names:
|
|
|
|
setattr(WrappedAPIView, method.lower(), handler)
|
|
|
|
|
2012-10-09 12:57:08 +04:00
|
|
|
WrappedAPIView.__name__ = func.__name__
|
2016-09-05 13:16:41 +03:00
|
|
|
WrappedAPIView.__module__ = func.__module__
|
2012-10-09 12:57:08 +04:00
|
|
|
|
2012-09-26 16:52:29 +04:00
|
|
|
WrappedAPIView.renderer_classes = getattr(func, 'renderer_classes',
|
|
|
|
APIView.renderer_classes)
|
|
|
|
|
|
|
|
WrappedAPIView.parser_classes = getattr(func, 'parser_classes',
|
|
|
|
APIView.parser_classes)
|
|
|
|
|
|
|
|
WrappedAPIView.authentication_classes = getattr(func, 'authentication_classes',
|
|
|
|
APIView.authentication_classes)
|
|
|
|
|
|
|
|
WrappedAPIView.throttle_classes = getattr(func, 'throttle_classes',
|
|
|
|
APIView.throttle_classes)
|
|
|
|
|
|
|
|
WrappedAPIView.permission_classes = getattr(func, 'permission_classes',
|
|
|
|
APIView.permission_classes)
|
|
|
|
|
2017-09-14 11:46:34 +03:00
|
|
|
WrappedAPIView.schema = getattr(func, 'schema',
|
|
|
|
APIView.schema)
|
|
|
|
|
2017-09-20 12:29:47 +03:00
|
|
|
if exclude_from_schema:
|
|
|
|
warnings.warn(
|
|
|
|
"The `exclude_from_schema` argument to `api_view` is pending deprecation. "
|
|
|
|
"Use the `schema` decorator instead, passing `None`.",
|
|
|
|
PendingDeprecationWarning
|
|
|
|
)
|
|
|
|
WrappedAPIView.exclude_from_schema = exclude_from_schema
|
|
|
|
|
2012-09-26 16:52:29 +04:00
|
|
|
return WrappedAPIView.as_view()
|
2012-09-03 18:57:43 +04:00
|
|
|
return decorator
|
2012-09-14 19:07:07 +04:00
|
|
|
|
|
|
|
|
2012-09-26 16:52:29 +04:00
|
|
|
def renderer_classes(renderer_classes):
|
|
|
|
def decorator(func):
|
2012-09-26 23:18:57 +04:00
|
|
|
func.renderer_classes = renderer_classes
|
2012-09-26 16:52:29 +04:00
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
def parser_classes(parser_classes):
|
|
|
|
def decorator(func):
|
2012-09-26 23:18:57 +04:00
|
|
|
func.parser_classes = parser_classes
|
2012-09-26 16:52:29 +04:00
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
def authentication_classes(authentication_classes):
|
|
|
|
def decorator(func):
|
2012-09-26 23:18:57 +04:00
|
|
|
func.authentication_classes = authentication_classes
|
2012-09-26 16:52:29 +04:00
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
def throttle_classes(throttle_classes):
|
|
|
|
def decorator(func):
|
2012-09-26 23:18:57 +04:00
|
|
|
func.throttle_classes = throttle_classes
|
2012-09-26 16:52:29 +04:00
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
def permission_classes(permission_classes):
|
|
|
|
def decorator(func):
|
2012-09-26 23:18:57 +04:00
|
|
|
func.permission_classes = permission_classes
|
2012-09-26 16:52:29 +04:00
|
|
|
return func
|
|
|
|
return decorator
|
2013-04-04 23:35:40 +04:00
|
|
|
|
|
|
|
|
2017-09-14 11:46:34 +03:00
|
|
|
def schema(view_inspector):
|
|
|
|
def decorator(func):
|
|
|
|
func.schema = view_inspector
|
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
2015-02-04 17:03:03 +03:00
|
|
|
def detail_route(methods=None, **kwargs):
|
2013-04-04 23:35:40 +04:00
|
|
|
"""
|
2013-08-20 00:02:22 +04:00
|
|
|
Used to mark a method on a ViewSet that should be routed for detail requests.
|
2013-04-04 23:35:40 +04:00
|
|
|
"""
|
2015-02-04 17:26:23 +03:00
|
|
|
methods = ['get'] if (methods is None) else methods
|
2015-02-04 17:13:30 +03:00
|
|
|
|
2013-04-04 23:35:40 +04:00
|
|
|
def decorator(func):
|
2013-08-20 00:02:22 +04:00
|
|
|
func.bind_to_methods = methods
|
2013-07-13 19:11:53 +04:00
|
|
|
func.detail = True
|
2013-04-04 23:35:40 +04:00
|
|
|
func.kwargs = kwargs
|
|
|
|
return func
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
2015-02-04 17:03:03 +03:00
|
|
|
def list_route(methods=None, **kwargs):
|
2013-04-04 23:35:40 +04:00
|
|
|
"""
|
2013-08-20 00:02:22 +04:00
|
|
|
Used to mark a method on a ViewSet that should be routed for list requests.
|
2013-04-04 23:35:40 +04:00
|
|
|
"""
|
2015-02-04 17:26:23 +03:00
|
|
|
methods = ['get'] if (methods is None) else methods
|
2015-02-04 17:13:30 +03:00
|
|
|
|
2013-04-04 23:35:40 +04:00
|
|
|
def decorator(func):
|
2013-05-25 02:28:47 +04:00
|
|
|
func.bind_to_methods = methods
|
2013-08-20 00:02:22 +04:00
|
|
|
func.detail = False
|
2013-06-06 01:39:14 +04:00
|
|
|
func.kwargs = kwargs
|
|
|
|
return func
|
|
|
|
return decorator
|