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
- Template tag - list punctuation for a list of items by shapiromatron 8 months ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 8 months, 1 week ago
- Serializer factory with Django Rest Framework by julio 1 year, 3 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 3 months ago
- Help text hyperlinks by sa2812 1 year, 4 months ago
Comments
Please login first before commenting.