Saml2 initial admin page
[cascardo/ipsilon.git] / ipsilon / providers / saml2 / admin.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2014  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.providers.saml2.provider import ServiceProvider
22
23
24 class AdminPage(Page):
25     def __init__(self, site, config):
26         super(AdminPage, self).__init__(site)
27         self.name = 'admin'
28         self.cfg = config
29         self.providers = []
30         self.menu = []
31         self.url = None
32
33     def mount(self, page):
34         self.menu = page.menu
35         self.url = '%s/%s' % (page.url, self.name)
36         for p in self.cfg.idp.get_providers():
37             try:
38                 sp = ServiceProvider(self.cfg, p)
39                 self.providers.append(sp)
40             except Exception, e:  # pylint: disable=broad-except
41                 self._debug("Failed to find provider %s: %s" % (p, str(e)))
42         page.add_subtree(self.name, self)
43
44     def root(self, *args, **kwargs):
45         return self._template('admin/providers/saml2.html',
46                               title='SAML2 Administration',
47                               providers=self.providers,
48                               baseurl=self.url,
49                               menu=self.menu)