diff options
author | eliott <eliott@cactuswax.net> | 2007-12-26 11:20:24 -0800 |
---|---|---|
committer | eliott <eliott@cactuswax.net> | 2007-12-26 11:20:24 -0800 |
commit | 6ee7a9368645c4e01de831bfdfc92ef925e9d68b (patch) | |
tree | d98bce80175bd2efc2aa9d379578b04c57fe0d23 /lib/sitelogin.py | |
parent | 6226b02f8be136a81ceff2b79b8c4280cfc5e3fb (diff) |
initial stab at an authentication middleware
Diffstat (limited to 'lib/sitelogin.py')
-rw-r--r-- | lib/sitelogin.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/lib/sitelogin.py b/lib/sitelogin.py new file mode 100644 index 00000000..3edec7c1 --- /dev/null +++ b/lib/sitelogin.py @@ -0,0 +1,13 @@ +from django.contrib.auth.views import logout_then_login, login +from django.conf import settings + +class SiteLogin: + def __init__(self): + self.login_path = settings.LOGIN_URL + def process_request(self, request): + if request.user.is_anonymous() and request.path != self.login_path: + if request.POST: + return login(request) + else: + return HttpResponseRedirect('%s?next=%s' % (self.login_path, request.path)) + |