Better session management at login
[cascardo/ipsilon.git] / ipsilon / login / common.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013  Simo Sorce <simo@redhat.com>
4 #
5 # see file 'COPYING' for use and warranty information
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 from ipsilon.util.page import Page
21 from ipsilon.util.user import UserSession
22 from ipsilon.util.plugin import PluginLoader, PluginObject
23 import cherrypy
24
25
26 class LoginManagerBase(PluginObject):
27
28     def __init__(self):
29         super(LoginManagerBase, self).__init__()
30         self.path = '/'
31         self.next_login = None
32
33     def redirect_to_path(self, path):
34         base = cherrypy.config.get('base.mount', "")
35         raise cherrypy.HTTPRedirect('%s/login/%s' % (base, path))
36
37     def auth_successful(self, username):
38         # save ref before calling UserSession login() as it
39         # may regenerate the session
40         session = UserSession()
41         ref = session.get_data('login', 'Return')
42         if not ref:
43             ref = cherrypy.config.get('base.mount', "") + '/'
44
45         session.login(username)
46         raise cherrypy.HTTPRedirect(ref)
47
48     def auth_failed(self):
49         # try with next module
50         if self.next_login:
51             return self.redirect_to_path(self.next_login.path)
52
53         # return to the caller if any
54         session = UserSession()
55         ref = session.get_data('login', 'Return')
56
57         # otherwise destroy session and return error
58         if not ref:
59             ref = cherrypy.config.get('base.mount', "") + '/unauthorized'
60             # Just make sure we destroy the session
61             session.logout(None)
62
63         raise cherrypy.HTTPRedirect(ref)
64
65
66 class LoginPageBase(Page):
67
68     def __init__(self, site, mgr):
69         super(LoginPageBase, self).__init__(site)
70         self.lm = mgr
71
72     def root(self, *args, **kwargs):
73         raise cherrypy.HTTPError(500)
74
75
76 FACILITY = 'login_config'
77
78
79 class Login(Page):
80
81     def __init__(self, *args, **kwargs):
82         super(Login, self).__init__(*args, **kwargs)
83         self.first_login = None
84
85         loader = PluginLoader(Login, FACILITY, 'LoginManager')
86         self._site[FACILITY] = loader.get_plugin_data()
87         plugins = self._site[FACILITY]
88
89         available = plugins['available'].keys()
90         self._debug('Available login managers: %s' % str(available))
91
92         prev_obj = None
93         for item in plugins['whitelist']:
94             self._debug('Login plugin in whitelist: %s' % item)
95             if item not in plugins['available']:
96                 continue
97             self._debug('Login plugin enabled: %s' % item)
98             plugins['enabled'].append(item)
99             obj = plugins['available'][item]
100             if prev_obj:
101                 prev_obj.next_login = obj
102             else:
103                 self.first_login = obj
104             prev_obj = obj
105             if item in plugins['config']:
106                 obj.set_config(plugins['config'][item])
107             self.__dict__[item] = obj.get_tree(self._site)
108
109     def root(self, *args, **kwargs):
110         if self.first_login:
111             raise cherrypy.HTTPRedirect('%s/login/%s' %
112                                         (self.basepath,
113                                          self.first_login.path))
114         return self._template('login/index.html', title='Login')
115
116
117 class Logout(Page):
118
119     def root(self, *args, **kwargs):
120         UserSession().logout(self.user)
121         return self._template('logout.html', title='Logout')