2008-02-25 14:02:35 +08:00
|
|
|
try:
|
|
|
|
from functools import wraps
|
|
|
|
except ImportError:
|
2010-05-04 22:00:30 +08:00
|
|
|
from django.utils.functional import wraps # Python 2.4 fallback.
|
2008-02-25 14:02:35 +08:00
|
|
|
|
2010-03-12 21:06:13 +08:00
|
|
|
from django.utils.decorators import decorator_from_middleware_with_args, available_attrs
|
2006-05-02 09:31:56 +08:00
|
|
|
from django.utils.cache import patch_cache_control, add_never_cache_headers
|
2005-10-09 08:55:08 +08:00
|
|
|
from django.middleware.cache import CacheMiddleware
|
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
|
2009-09-29 05:54:54 +08:00
|
|
|
def cache_page(*args, **kwargs):
|
2010-12-04 14:49:51 +08:00
|
|
|
"""
|
|
|
|
Decorator for views that tries getting the page from the cache and
|
|
|
|
populates the cache if the page isn't in the cache yet.
|
|
|
|
|
|
|
|
The cache is keyed by the URL and some data from the headers.
|
|
|
|
Additionally there is the key prefix that is used to distinguish different
|
|
|
|
cache areas in a multi-site setup. You could use the
|
|
|
|
sites.get_current().domain, for example, as that is unique across a Django
|
|
|
|
project.
|
|
|
|
|
|
|
|
Additionally, all headers from the response's Vary header will be taken
|
|
|
|
into account on caching -- just like the middleware does.
|
|
|
|
"""
|
2009-09-22 06:31:51 +08:00
|
|
|
# We need backwards compatibility with code which spells it this way:
|
|
|
|
# def my_view(): pass
|
2009-09-27 03:39:42 +08:00
|
|
|
# my_view = cache_page(my_view, 123)
|
2009-09-22 06:31:51 +08:00
|
|
|
# and this way:
|
|
|
|
# my_view = cache_page(123)(my_view)
|
2009-09-29 05:54:54 +08:00
|
|
|
# and this:
|
|
|
|
# my_view = cache_page(my_view, 123, key_prefix="foo")
|
|
|
|
# and this:
|
|
|
|
# my_view = cache_page(123, key_prefix="foo")(my_view)
|
2009-09-27 03:39:42 +08:00
|
|
|
# and possibly this way (?):
|
|
|
|
# my_view = cache_page(123, my_view)
|
2010-09-22 03:32:22 +08:00
|
|
|
# and also this way:
|
|
|
|
# my_view = cache_page(my_view)
|
|
|
|
# and also this way:
|
|
|
|
# my_view = cache_page()(my_view)
|
2009-09-24 07:47:53 +08:00
|
|
|
|
|
|
|
# We also add some asserts to give better error messages in case people are
|
|
|
|
# using other ways to call cache_page that no longer work.
|
2010-12-21 23:19:19 +08:00
|
|
|
cache_alias = kwargs.pop('cache', None)
|
2009-09-29 05:54:54 +08:00
|
|
|
key_prefix = kwargs.pop('key_prefix', None)
|
2010-12-21 23:19:19 +08:00
|
|
|
assert not kwargs, "The only keyword arguments are cache and key_prefix"
|
2009-09-22 06:31:51 +08:00
|
|
|
if len(args) > 1:
|
2009-09-24 07:47:53 +08:00
|
|
|
assert len(args) == 2, "cache_page accepts at most 2 arguments"
|
2009-09-27 03:39:42 +08:00
|
|
|
if callable(args[0]):
|
2010-12-21 23:19:19 +08:00
|
|
|
return decorator_from_middleware_with_args(CacheMiddleware)(cache_timeout=args[1], cache_alias=cache_alias, key_prefix=key_prefix)(args[0])
|
2009-09-27 03:39:42 +08:00
|
|
|
elif callable(args[1]):
|
2010-12-21 23:19:19 +08:00
|
|
|
return decorator_from_middleware_with_args(CacheMiddleware)(cache_timeout=args[0], cache_alias=cache_alias, key_prefix=key_prefix)(args[1])
|
2009-09-27 03:39:42 +08:00
|
|
|
else:
|
2010-09-22 03:32:22 +08:00
|
|
|
assert False, "cache_page must be passed a view function if called with two arguments"
|
|
|
|
elif len(args) == 1:
|
|
|
|
if callable(args[0]):
|
2010-12-21 23:19:19 +08:00
|
|
|
return decorator_from_middleware_with_args(CacheMiddleware)(cache_alias=cache_alias, key_prefix=key_prefix)(args[0])
|
2010-09-22 03:32:22 +08:00
|
|
|
else:
|
2010-12-21 23:19:19 +08:00
|
|
|
return decorator_from_middleware_with_args(CacheMiddleware)(cache_timeout=args[0], cache_alias=cache_alias, key_prefix=key_prefix)
|
2009-09-22 06:31:51 +08:00
|
|
|
else:
|
2010-12-21 23:19:19 +08:00
|
|
|
return decorator_from_middleware_with_args(CacheMiddleware)(cache_alias=cache_alias, key_prefix=key_prefix)
|
2005-10-30 01:00:20 +08:00
|
|
|
|
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
def cache_control(**kwargs):
|
2005-10-30 01:00:20 +08:00
|
|
|
def _cache_controller(viewfunc):
|
|
|
|
def _cache_controlled(request, *args, **kw):
|
|
|
|
response = viewfunc(request, *args, **kw)
|
|
|
|
patch_cache_control(response, **kwargs)
|
|
|
|
return response
|
2010-03-12 21:06:13 +08:00
|
|
|
return wraps(viewfunc, assigned=available_attrs(viewfunc))(_cache_controlled)
|
2010-02-09 23:02:39 +08:00
|
|
|
return _cache_controller
|
2005-10-30 01:00:20 +08:00
|
|
|
|
|
|
|
|
2006-05-02 09:31:56 +08:00
|
|
|
def never_cache(view_func):
|
|
|
|
"""
|
|
|
|
Decorator that adds headers to a response so that it will
|
|
|
|
never be cached.
|
|
|
|
"""
|
|
|
|
def _wrapped_view_func(request, *args, **kwargs):
|
|
|
|
response = view_func(request, *args, **kwargs)
|
|
|
|
add_never_cache_headers(response)
|
|
|
|
return response
|
2010-03-12 21:06:13 +08:00
|
|
|
return wraps(view_func, assigned=available_attrs(view_func))(_wrapped_view_func)
|