1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
"""
Settings for django-session-security.
WARN_AFTER
Time (in seconds) before the user should be warned that is session will
expire because of inactivity. Default 540. Overridable in
``settings.SESSION_SECURITY_WARN_AFTER``.
EXPIRE_AFTER
Time (in seconds) before the user should be logged out if inactive. Default
is 600. Overridable in ``settings.SESSION_SECURITY_EXPIRE_AFTER``.
PASSIVE_URLS
List of urls that should be ignored by the middleware. For example the ping
ajax request of session_security is made without user intervention, as such
it should not be used to update the user's last activity datetime.
Overridable in ``settings.SESSION_SECURITY_PASSIVE_URLS``.
SESSION_SECURITY_INSECURE
Set this to True in your settings if you want the project to run without
having to set SESSION_EXPIRE_AT_BROWSER_CLOSE=True, which you should
because it makes no sense to use this app with
``SESSION_EXPIRE_AT_BROWSER_CLOSE`` to False.
"""
from django.conf import settings
__all__ = ['EXPIRE_AFTER', 'WARN_AFTER', 'PASSIVE_URLS']
EXPIRE_AFTER = getattr(settings, 'SESSION_SECURITY_EXPIRE_AFTER', 600)
WARN_AFTER = getattr(settings, 'SESSION_SECURITY_WARN_AFTER', 540)
PASSIVE_URLS = getattr(settings, 'SESSION_SECURITY_PASSIVE_URLS', [])
expire_at_browser_close = getattr(
settings,
'SESSION_EXPIRE_AT_BROWSER_CLOSE',
False
)
force_insecurity = getattr(
settings,
'SESSION_SECURITY_INSECURE',
False
)
if not (expire_at_browser_close or force_insecurity):
raise Exception(
'Enable SESSION_EXPIRE_AT_BROWSER_CLOSE or SESSION_SECURITY_INSECURE'
)
|