2005-10-09 05:44:37 +08:00
|
|
|
"Functions that help with dynamically creating decorators for views."
|
|
|
|
|
2007-07-05 19:10:27 +08:00
|
|
|
import types
|
2008-02-25 14:02:35 +08:00
|
|
|
try:
|
2010-03-12 21:06:13 +08:00
|
|
|
from functools import wraps, update_wrapper, WRAPPER_ASSIGNMENTS
|
2008-02-25 14:02:35 +08:00
|
|
|
except ImportError:
|
2010-05-04 22:00:30 +08:00
|
|
|
from django.utils.functional import wraps, update_wrapper, WRAPPER_ASSIGNMENTS # Python 2.4 fallback.
|
2009-09-22 06:31:51 +08:00
|
|
|
|
2009-10-16 04:25:20 +08:00
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
def method_decorator(decorator):
|
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
|
|
|
"""
|
2010-02-09 23:02:39 +08:00
|
|
|
def _dec(func):
|
|
|
|
def _wrapper(self, *args, **kwargs):
|
|
|
|
def bound_func(*args2, **kwargs2):
|
|
|
|
return func(self, *args2, **kwargs2)
|
|
|
|
# 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.
|
|
|
|
return decorator(bound_func)(*args, **kwargs)
|
|
|
|
return wraps(func)(_wrapper)
|
|
|
|
update_wrapper(_dec, decorator)
|
|
|
|
# Change the name to aid debugging.
|
2010-05-13 19:11:27 +08:00
|
|
|
_dec.__name__ = 'method_decorator(%s)' % decorator.__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
|
|
|
|
2010-03-12 21:06:13 +08:00
|
|
|
def available_attrs(fn):
|
|
|
|
"""
|
|
|
|
Return the list of functools-wrappable attributes on a callable.
|
|
|
|
This is required as a workaround for http://bugs.python.org/issue3445.
|
|
|
|
"""
|
|
|
|
return tuple(a for a in WRAPPER_ASSIGNMENTS if hasattr(fn, a))
|
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)
|
|
|
|
def _decorator(view_func):
|
|
|
|
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)
|
|
|
|
except Exception, e:
|
|
|
|
if hasattr(middleware, 'process_exception'):
|
|
|
|
result = middleware.process_exception(request, e)
|
|
|
|
if result is not None:
|
|
|
|
return result
|
|
|
|
raise
|
|
|
|
if hasattr(middleware, 'process_response'):
|
|
|
|
result = middleware.process_response(request, response)
|
2005-10-15 10:20:35 +08:00
|
|
|
if result is not None:
|
|
|
|
return result
|
2009-09-22 06:31:51 +08:00
|
|
|
return response
|
2010-03-12 21:06:13 +08:00
|
|
|
return wraps(view_func, assigned=available_attrs(view_func))(_wrapped_view)
|
2010-02-09 23:02:39 +08:00
|
|
|
return _decorator
|
2009-09-22 06:31:51 +08:00
|
|
|
return _make_decorator
|