2005-10-09 05:44:37 +08:00
|
|
|
"Functions that help with dynamically creating decorators for views."
|
|
|
|
|
2017-01-20 00:28:30 +08:00
|
|
|
# For backwards compatibility in Django 2.0.
|
|
|
|
from contextlib import ContextDecorator # noqa
|
2015-01-28 20:35:27 +08:00
|
|
|
from functools import WRAPPER_ASSIGNMENTS, update_wrapper, wraps
|
2009-09-22 06:31:51 +08:00
|
|
|
|
2013-03-12 18:28:01 +08:00
|
|
|
|
2010-11-20 13:10:13 +08:00
|
|
|
class classonlymethod(classmethod):
|
2015-10-26 23:31:16 +08:00
|
|
|
def __get__(self, instance, cls=None):
|
2010-11-20 13:10:13 +08:00
|
|
|
if instance is not None:
|
2014-08-15 21:03:43 +08:00
|
|
|
raise AttributeError("This method is available only on the class, not on instances.")
|
2017-01-21 21:13:44 +08:00
|
|
|
return super().__get__(instance, cls)
|
2009-10-16 04:25:20 +08:00
|
|
|
|
2013-03-12 18:28:01 +08:00
|
|
|
|
2015-07-22 04:54:37 +08:00
|
|
|
def method_decorator(decorator, name=''):
|
2009-09-22 06:31:51 +08:00
|
|
|
"""
|
2010-02-09 23:02:39 +08:00
|
|
|
Converts a function decorator into a method decorator
|
2009-09-22 06:31:51 +08:00
|
|
|
"""
|
2015-07-22 04:54:37 +08:00
|
|
|
# 'obj' can be a class or a function. If 'obj' is a function at the time it
|
|
|
|
# is passed to _dec, it will eventually be a method of the class it is
|
|
|
|
# defined on. If 'obj' is a class, the 'name' is required to be the name
|
|
|
|
# of the method that will be decorated.
|
|
|
|
def _dec(obj):
|
|
|
|
is_class = isinstance(obj, type)
|
|
|
|
if is_class:
|
|
|
|
if name and hasattr(obj, name):
|
|
|
|
func = getattr(obj, name)
|
|
|
|
if not callable(func):
|
|
|
|
raise TypeError(
|
|
|
|
"Cannot decorate '{0}' as it isn't a callable "
|
|
|
|
"attribute of {1} ({2})".format(name, obj, func)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
raise ValueError(
|
|
|
|
"The keyword argument `name` must be the name of a method "
|
|
|
|
"of the decorated class: {0}. Got '{1}' instead".format(
|
|
|
|
obj, name,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
else:
|
|
|
|
func = obj
|
|
|
|
|
2015-08-11 19:35:50 +08:00
|
|
|
def decorate(function):
|
|
|
|
"""
|
|
|
|
Apply a list/tuple of decorators if decorator is one. Decorator
|
|
|
|
functions are applied so that the call order is the same as the
|
|
|
|
order in which they appear in the iterable.
|
|
|
|
"""
|
|
|
|
if hasattr(decorator, '__iter__'):
|
|
|
|
for dec in decorator[::-1]:
|
|
|
|
function = dec(function)
|
|
|
|
return function
|
|
|
|
return decorator(function)
|
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
def _wrapper(self, *args, **kwargs):
|
2015-08-11 19:35:50 +08:00
|
|
|
@decorate
|
2010-02-09 23:02:39 +08:00
|
|
|
def bound_func(*args2, **kwargs2):
|
2014-02-09 19:10:05 +08:00
|
|
|
return func.__get__(self, type(self))(*args2, **kwargs2)
|
2010-02-09 23:02:39 +08:00
|
|
|
# bound_func has the signature that 'decorator' expects i.e. no
|
|
|
|
# 'self' argument, but it is a closure over self so it can call
|
|
|
|
# 'func' correctly.
|
2010-10-21 22:56:49 +08:00
|
|
|
return bound_func(*args, **kwargs)
|
|
|
|
# In case 'decorator' adds attributes to the function it decorates, we
|
|
|
|
# want to copy those. We don't have access to bound_func in this scope,
|
|
|
|
# but we can cheat by using it on a dummy function.
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2015-08-11 19:35:50 +08:00
|
|
|
@decorate
|
2010-10-21 22:56:49 +08:00
|
|
|
def dummy(*args, **kwargs):
|
|
|
|
pass
|
|
|
|
update_wrapper(_wrapper, dummy)
|
|
|
|
# Need to preserve any existing attributes of 'func', including the name.
|
|
|
|
update_wrapper(_wrapper, func)
|
|
|
|
|
2015-07-22 04:54:37 +08:00
|
|
|
if is_class:
|
|
|
|
setattr(obj, name, _wrapper)
|
|
|
|
return obj
|
|
|
|
|
2010-10-21 22:56:49 +08:00
|
|
|
return _wrapper
|
2015-08-11 19:35:50 +08:00
|
|
|
# Don't worry about making _dec look similar to a list/tuple as it's rather
|
|
|
|
# meaningless.
|
|
|
|
if not hasattr(decorator, '__iter__'):
|
2017-01-22 02:20:17 +08:00
|
|
|
update_wrapper(_dec, decorator)
|
2010-02-09 23:02:39 +08:00
|
|
|
# Change the name to aid debugging.
|
2013-11-26 20:00:50 +08:00
|
|
|
if hasattr(decorator, '__name__'):
|
|
|
|
_dec.__name__ = 'method_decorator(%s)' % decorator.__name__
|
|
|
|
else:
|
|
|
|
_dec.__name__ = 'method_decorator(%s)' % decorator.__class__.__name__
|
2010-02-09 23:02:39 +08:00
|
|
|
return _dec
|
2009-09-22 06:31:51 +08:00
|
|
|
|
|
|
|
|
|
|
|
def decorator_from_middleware_with_args(middleware_class):
|
|
|
|
"""
|
|
|
|
Like decorator_from_middleware, but returns a function
|
|
|
|
that accepts the arguments to be passed to the middleware_class.
|
|
|
|
Use like::
|
|
|
|
|
2009-09-23 05:21:51 +08:00
|
|
|
cache_page = decorator_from_middleware_with_args(CacheMiddleware)
|
2009-09-22 06:31:51 +08:00
|
|
|
# ...
|
|
|
|
|
|
|
|
@cache_page(3600)
|
|
|
|
def my_view(request):
|
|
|
|
# ...
|
|
|
|
"""
|
|
|
|
return make_middleware_decorator(middleware_class)
|
2007-07-05 19:10:27 +08:00
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
|
2005-10-09 05:44:37 +08:00
|
|
|
def decorator_from_middleware(middleware_class):
|
|
|
|
"""
|
|
|
|
Given a middleware class (not an instance), returns a view decorator. This
|
2009-09-22 06:31:51 +08:00
|
|
|
lets you use middleware functionality on a per-view basis. The middleware
|
|
|
|
is created with no params passed.
|
2005-10-09 05:44:37 +08:00
|
|
|
"""
|
2009-09-22 06:31:51 +08:00
|
|
|
return make_middleware_decorator(middleware_class)()
|
|
|
|
|
2010-05-13 19:11:27 +08:00
|
|
|
|
2017-01-22 02:20:17 +08:00
|
|
|
# Unused, for backwards compatibility in Django 2.0.
|
2010-03-12 21:06:13 +08:00
|
|
|
def available_attrs(fn):
|
|
|
|
"""
|
|
|
|
Return the list of functools-wrappable attributes on a callable.
|
2016-12-01 18:38:01 +08:00
|
|
|
This was required as a workaround for http://bugs.python.org/issue3445
|
2013-03-12 18:28:01 +08:00
|
|
|
under Python 2.
|
2010-03-12 21:06:13 +08:00
|
|
|
"""
|
2016-12-01 18:38:01 +08:00
|
|
|
return WRAPPER_ASSIGNMENTS
|
2010-02-09 23:02:39 +08:00
|
|
|
|
2010-05-13 19:11:27 +08:00
|
|
|
|
2009-09-22 06:31:51 +08:00
|
|
|
def make_middleware_decorator(middleware_class):
|
|
|
|
def _make_decorator(*m_args, **m_kwargs):
|
|
|
|
middleware = middleware_class(*m_args, **m_kwargs)
|
2013-10-22 18:21:07 +08:00
|
|
|
|
2009-09-22 06:31:51 +08:00
|
|
|
def _decorator(view_func):
|
2017-01-22 02:20:17 +08:00
|
|
|
@wraps(view_func)
|
2009-09-22 06:31:51 +08:00
|
|
|
def _wrapped_view(request, *args, **kwargs):
|
|
|
|
if hasattr(middleware, 'process_request'):
|
|
|
|
result = middleware.process_request(request)
|
|
|
|
if result is not None:
|
|
|
|
return result
|
|
|
|
if hasattr(middleware, 'process_view'):
|
|
|
|
result = middleware.process_view(request, view_func, args, kwargs)
|
|
|
|
if result is not None:
|
|
|
|
return result
|
|
|
|
try:
|
|
|
|
response = view_func(request, *args, **kwargs)
|
2012-04-29 00:09:37 +08:00
|
|
|
except Exception as e:
|
2009-09-22 06:31:51 +08:00
|
|
|
if hasattr(middleware, 'process_exception'):
|
|
|
|
result = middleware.process_exception(request, e)
|
|
|
|
if result is not None:
|
|
|
|
return result
|
|
|
|
raise
|
2011-05-25 05:28:43 +08:00
|
|
|
if hasattr(response, 'render') and callable(response.render):
|
|
|
|
if hasattr(middleware, 'process_template_response'):
|
|
|
|
response = middleware.process_template_response(request, response)
|
|
|
|
# Defer running of process_response until after the template
|
|
|
|
# has been rendered:
|
|
|
|
if hasattr(middleware, 'process_response'):
|
2016-01-24 00:47:07 +08:00
|
|
|
def callback(response):
|
|
|
|
return middleware.process_response(request, response)
|
2011-05-25 05:28:43 +08:00
|
|
|
response.add_post_render_callback(callback)
|
|
|
|
else:
|
|
|
|
if hasattr(middleware, 'process_response'):
|
|
|
|
return middleware.process_response(request, response)
|
2009-09-22 06:31:51 +08:00
|
|
|
return response
|
2011-05-02 00:46:02 +08:00
|
|
|
return _wrapped_view
|
2010-02-09 23:02:39 +08:00
|
|
|
return _decorator
|
2009-09-22 06:31:51 +08:00
|
|
|
return _make_decorator
|
2014-08-20 00:32:02 +08:00
|
|
|
|
|
|
|
|
2017-01-19 15:39:46 +08:00
|
|
|
class classproperty:
|
2015-06-11 04:57:51 +08:00
|
|
|
def __init__(self, method=None):
|
|
|
|
self.fget = method
|
|
|
|
|
2015-10-26 23:31:16 +08:00
|
|
|
def __get__(self, instance, cls=None):
|
|
|
|
return self.fget(cls)
|
2015-06-11 04:57:51 +08:00
|
|
|
|
|
|
|
def getter(self, method):
|
|
|
|
self.fget = method
|
|
|
|
return self
|