]> git.ipfire.org Git - ipfire.org.git/blame - src/web/auth.py
Refactor authentication
[ipfire.org.git] / src / web / auth.py
CommitLineData
08df6527
MT
1#!/usr/bin/python
2
3import logging
4import tornado.web
5
6from . import handlers_base as base
7
8class AuthenticationMixin(object):
9 def login(self, username, password):
10 # Find account
11 account = self.backend.accounts.find_account(username)
12 if not account:
13 raise tornado.web.HTTPError(401, "Unknown user: %s" % username)
14
15 # Check credentials
16 if not account.check_password(password):
17 raise tornado.web.HTTPError(401, "Invalid password for %s" % account)
18
19 # User has logged in, create a session
20 session_id, session_expires = self.backend.accounts.create_session(
21 account, self.request.host)
22
23 # Check if a new session was created
24 if not session_id:
25 raise tornado.web.HTTPError(500, "Could not create session")
26
27 # Send session cookie to the client
28 self.set_cookie("session_id", session_id,
29 domain=self.request.host, expires=session_expires)
30
31 def logout(self):
32 session_id = self.get_cookie("session_id")
33 if not session_id:
34 return
35
36 success = self.backend.accounts.destroy_session(session_id, self.request.host)
37 if success:
38 self.clear_cookie("session_id")
39
40
41
42class LoginHandler(AuthenticationMixin, base.BaseHandler):
43 def get(self):
44 next = self.get_argument("next", None)
45
46 self.render("auth/login.html", next=next)
47
48 def post(self):
49 username = self.get_argument("username")
50 password = self.get_argument("password")
51
52 with self.db.transaction():
53 self.login(username, password)
54
55 # Determine the page we should redirect to
56 next = self.get_argument("next", None)
57
58 return self.redirect(next or "/")
59
60
61class LogoutHandler(AuthenticationMixin, base.BaseHandler):
62 def get(self):
63 with self.db.transaction():
64 self.logout()
65
66 # Get back to the start page
67 self.redirect("/")