A login_required decorator that wraps the login view instead of redirecting to it.
This prevents your site from leaking login information with HTTP status codes as explained here.
This is the way Django's admin is protected, the difference being that it checks for is_active and is_staff instead of is_authenticated.
With this decorators, users directly see a login form (no redirect), post it to LOGIN_URL and are redirected to the page they first tried to see.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | from functools import wraps # adapt if you need python 2.4 support
from django.contrib.auth import REDIRECT_FIELD_NAME
from django.contrib.auth.views import login
def login_required(view_callable):
def check_login(request, *args, **kwargs):
if request.user.is_authenticated():
return view_callable(request, *args, **kwargs)
assert hasattr(request, 'session'), "Session middleware needed."
login_kwargs = {
'extra_context': {
REDIRECT_FIELD_NAME: request.get_full_path(),
},
}
return login(request, **login_kwargs)
return wraps(view_callable)(check_login)
|
More like this
- Serializer factory with Django Rest Framework by julio 5 months, 2 weeks ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 6 months, 1 week ago
- Help text hyperlinks by sa2812 7 months ago
- Stuff by NixonDash 9 months, 1 week ago
- Add custom fields to the built-in Group model by jmoppel 11 months, 2 weeks ago
Comments
Please login first before commenting.