2005-11-26 15:20:07 +08:00
|
|
|
from django.views.auth import login
|
|
|
|
|
|
|
|
def user_passes_test(test_func, login_url=login.LOGIN_URL):
|
2005-07-13 09:25:57 +08:00
|
|
|
"""
|
2005-10-22 08:04:55 +08:00
|
|
|
Decorator for views that checks that the user passes the given test,
|
|
|
|
redirecting to the log-in page if necessary. The test should be a callable
|
|
|
|
that takes the user object and returns True if the user passes.
|
2005-07-13 09:25:57 +08:00
|
|
|
"""
|
2005-10-24 06:42:44 +08:00
|
|
|
def _dec(view_func):
|
|
|
|
def _checklogin(request, *args, **kwargs):
|
|
|
|
if test_func(request.user):
|
|
|
|
return view_func(request, *args, **kwargs)
|
2005-11-26 15:20:07 +08:00
|
|
|
return login.redirect_to_login(request.path, login_url)
|
2005-10-24 06:42:44 +08:00
|
|
|
return _checklogin
|
|
|
|
return _dec
|
2005-10-22 08:04:55 +08:00
|
|
|
|
2005-10-24 06:42:44 +08:00
|
|
|
login_required = user_passes_test(lambda u: not u.is_anonymous())
|
|
|
|
login_required.__doc__ = (
|
2005-10-22 08:04:55 +08:00
|
|
|
"""
|
|
|
|
Decorator for views that checks that the user is logged in, redirecting
|
|
|
|
to the log-in page if necessary.
|
|
|
|
"""
|
2005-10-24 06:42:44 +08:00
|
|
|
)
|