2022-12-05 17:55:30 +00:00
|
|
|
from functools import partial, wraps
|
|
|
|
|
|
|
|
from django.views.decorators.cache import cache_page as dj_cache_page
|
|
|
|
|
|
|
|
from core.models import Config
|
|
|
|
|
|
|
|
|
|
|
|
def cache_page(
|
|
|
|
timeout: int | str = "cache_timeout_page_default",
|
|
|
|
*,
|
|
|
|
per_identity: bool = False,
|
|
|
|
key_prefix: str = "",
|
|
|
|
):
|
|
|
|
"""
|
|
|
|
Decorator for views that caches the page result.
|
|
|
|
timeout can either be the number of seconds or the name of a SystemOptions
|
|
|
|
value.
|
|
|
|
"""
|
2022-12-05 21:48:02 +00:00
|
|
|
_timeout = timeout
|
2022-12-05 17:55:30 +00:00
|
|
|
|
|
|
|
def decorator(function):
|
|
|
|
@wraps(function)
|
|
|
|
def inner(request, *args, **kwargs):
|
|
|
|
prefix = key_prefix
|
|
|
|
if per_identity:
|
|
|
|
identity_id = request.identity.pk if request.identity else "0"
|
|
|
|
prefix = f"{key_prefix or ''}:ident{identity_id}"
|
2022-12-05 21:48:02 +00:00
|
|
|
if isinstance(_timeout, str):
|
|
|
|
timeout = getattr(Config.system, _timeout)
|
|
|
|
else:
|
|
|
|
timeout = _timeout
|
|
|
|
return dj_cache_page(timeout=timeout, key_prefix=prefix)(function)(
|
2022-12-05 17:55:30 +00:00
|
|
|
request, *args, **kwargs
|
|
|
|
)
|
|
|
|
|
|
|
|
return inner
|
|
|
|
|
|
|
|
return decorator
|
|
|
|
|
|
|
|
|
|
|
|
per_identity_cache_page = partial(cache_page, per_identity=True)
|