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 1 year, 10 months ago
- ImageField for Google App Engine by davepeck 2 years, 6 months ago
- HTML/JS template filter to show localized dates/times by mback2k 3 years, 1 month ago
- rss news by montao 2 years, 5 months ago
- Scalable and invalidateble cache_page decorator by marinho 3 years ago
Comments
You probably want something like this instead:
#