Created
October 21, 2011 11:54
-
-
Save yuvadm/1303651 to your computer and use it in GitHub Desktop.
Django login_required with 403 on fail
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
try: | |
from functools import update_wrapper, wraps | |
except ImportError: | |
from django.utils.functional import update_wrapper, wraps # Python 2.4 fallback. | |
from django.http import HttpResponseForbidden | |
from django.utils.decorators import available_attrs | |
def user_passes_test(test_func): | |
def decorator(view_func): | |
def _wrapped_view(request, *args, **kwargs): | |
if test_func(request.user): | |
return view_func(request, *args, **kwargs) | |
return HttpResponseForbidden() | |
return wraps(view_func, assigned=available_attrs(view_func))(_wrapped_view) | |
return decorator | |
def login_required_403(function=None): | |
actual_decorator = user_passes_test( | |
lambda u: u.is_authenticated() | |
) | |
if function: | |
return actual_decorator(function) | |
return actual_decorator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment