Use cherrypy handlers to render error pages
[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             session.logout(None)
60             raise cherrypy.HTTPError(401)
61
62         raise cherrypy.HTTPRedirect(ref)
63
64
65 class LoginPageBase(Page):
66
67     def __init__(self, site, mgr):
68         super(LoginPageBase, self).__init__(site)
69         self.lm = mgr
70
71     def root(self, *args, **kwargs):
72         raise cherrypy.HTTPError(500)
73
74
75 FACILITY = 'login_config'
76
77
78 class Login(Page):
79
80     def __init__(self, *args, **kwargs):
81         super(Login, self).__init__(*args, **kwargs)
82         self.first_login = None
83
84         loader = PluginLoader(Login, FACILITY, 'LoginManager')
85         self._site[FACILITY] = loader.get_plugin_data()
86         plugins = self._site[FACILITY]
87
88         available = plugins['available'].keys()
89         self._debug('Available login managers: %s' % str(available))
90
91         prev_obj = None
92         for item in plugins['whitelist']:
93             self._debug('Login plugin in whitelist: %s' % item)
94             if item not in plugins['available']:
95                 continue
96             self._debug('Login plugin enabled: %s' % item)
97             plugins['enabled'].append(item)
98             obj = plugins['available'][item]
99             if prev_obj:
100                 prev_obj.next_login = obj
101             else:
102                 self.first_login = obj
103             prev_obj = obj
104             if item in plugins['config']:
105                 obj.set_config(plugins['config'][item])
106             self.__dict__[item] = obj.get_tree(self._site)
107
108     def root(self, *args, **kwargs):
109         if self.first_login:
110             raise cherrypy.HTTPRedirect('%s/login/%s' %
111                                         (self.basepath,
112                                          self.first_login.path))
113         return self._template('login/index.html', title='Login')
114
115
116 class Logout(Page):
117
118     def root(self, *args, **kwargs):
119         UserSession().logout(self.user)
120         return self._template('logout.html', title='Logout')