1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | from django.http import HttpResponsePermanentRedirect
from google.appengine.api import users
def loginrequired(func):
def redirect_to_login(request):
return HttpResponsePermanentRedirect(users.create_login_url(request.get_full_path()))
user = users.get_current_user()
if user:
return func
else:
return redirect_to_login
@loginrequired
def i_am_protected(request):
pass # clearly, this is a top secret view that needs protecting.
|
More like this
- Managing Google AppEngine datastore maintenance by cvedovini 2 years, 11 months ago
- ImageField for Google App Engine by davepeck 3 years, 7 months ago
- login_required decorator that doesn't redirect by brutasse 2 years, 4 months ago
- HTML/JS template filter to show localized dates/times by mback2k 4 years, 2 months ago
- Conditional cache decorator by alexisbellido 9 months, 4 weeks ago
Comments
You probably want something like this instead:
#