2010-11-28 06:43:33 +08:00
|
|
|
import urlparse
|
2011-03-28 09:40:43 +08:00
|
|
|
from functools import wraps
|
2010-11-28 06:43:33 +08:00
|
|
|
from django.conf import settings
|
2007-04-25 16:49:57 +08:00
|
|
|
from django.contrib.auth import REDIRECT_FIELD_NAME
|
2011-08-12 22:15:41 +08:00
|
|
|
from django.core.exceptions import PermissionDenied
|
2010-04-09 19:07:17 +08:00
|
|
|
from django.utils.decorators import available_attrs
|
2010-02-09 23:02:39 +08:00
|
|
|
|
2005-11-26 15:20:07 +08:00
|
|
|
|
2007-09-15 03:25:37 +08:00
|
|
|
def user_passes_test(test_func, login_url=None, redirect_field_name=REDIRECT_FIELD_NAME):
|
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
|
|
|
"""
|
2009-09-22 06:34:45 +08:00
|
|
|
|
|
|
|
def decorator(view_func):
|
2010-11-28 06:43:33 +08:00
|
|
|
@wraps(view_func, assigned=available_attrs(view_func))
|
2009-09-22 06:34:45 +08:00
|
|
|
def _wrapped_view(request, *args, **kwargs):
|
|
|
|
if test_func(request.user):
|
|
|
|
return view_func(request, *args, **kwargs)
|
2010-11-28 06:43:33 +08:00
|
|
|
path = request.build_absolute_uri()
|
|
|
|
# If the login url is the same scheme and net location then just
|
|
|
|
# use the path as the "next" url.
|
|
|
|
login_scheme, login_netloc = urlparse.urlparse(login_url or
|
|
|
|
settings.LOGIN_URL)[:2]
|
|
|
|
current_scheme, current_netloc = urlparse.urlparse(path)[:2]
|
|
|
|
if ((not login_scheme or login_scheme == current_scheme) and
|
|
|
|
(not login_netloc or login_netloc == current_netloc)):
|
|
|
|
path = request.get_full_path()
|
|
|
|
from django.contrib.auth.views import redirect_to_login
|
|
|
|
return redirect_to_login(path, login_url, redirect_field_name)
|
|
|
|
return _wrapped_view
|
2010-02-09 23:02:39 +08:00
|
|
|
return decorator
|
|
|
|
|
2005-10-22 08:04:55 +08:00
|
|
|
|
2010-09-11 03:38:57 +08:00
|
|
|
def login_required(function=None, redirect_field_name=REDIRECT_FIELD_NAME, login_url=None):
|
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.
|
|
|
|
"""
|
2007-09-15 03:25:37 +08:00
|
|
|
actual_decorator = user_passes_test(
|
|
|
|
lambda u: u.is_authenticated(),
|
2010-09-11 03:38:57 +08:00
|
|
|
login_url=login_url,
|
2007-09-15 03:25:37 +08:00
|
|
|
redirect_field_name=redirect_field_name
|
2005-10-24 06:42:44 +08:00
|
|
|
)
|
2007-09-15 03:25:37 +08:00
|
|
|
if function:
|
|
|
|
return actual_decorator(function)
|
|
|
|
return actual_decorator
|
2006-09-22 09:44:28 +08:00
|
|
|
|
2010-02-09 23:02:39 +08:00
|
|
|
|
2011-08-12 22:15:41 +08:00
|
|
|
def permission_required(perm, login_url=None, raise_exception=False):
|
2006-09-22 09:44:28 +08:00
|
|
|
"""
|
2006-09-26 01:33:17 +08:00
|
|
|
Decorator for views that checks whether a user has a particular permission
|
2011-08-12 22:15:41 +08:00
|
|
|
enabled, redirecting to the log-in page if neccesary.
|
|
|
|
If the raise_exception parameter is given the PermissionDenied exception
|
|
|
|
is raised.
|
2006-09-22 09:44:28 +08:00
|
|
|
"""
|
2011-08-12 22:15:41 +08:00
|
|
|
def check_perms(user):
|
|
|
|
# First check if the user has the permission (even anon users)
|
|
|
|
if user.has_perm(perm):
|
|
|
|
return True
|
|
|
|
# In case the 403 handler should be called raise the exception
|
|
|
|
if raise_exception:
|
|
|
|
raise PermissionDenied
|
|
|
|
# As the last resort, show the login form
|
|
|
|
return False
|
|
|
|
return user_passes_test(check_perms, login_url=login_url)
|