summaryrefslogtreecommitdiffstats
path: root/ipsilon/providers/saml2
diff options
context:
space:
mode:
authorSimo Sorce <simo@redhat.com>2014-03-27 12:57:19 -0400
committerSimo Sorce <simo@redhat.com>2014-03-28 17:17:47 -0400
commit15ef3579e537523ea97714bf80c63f2f8f30d4bd (patch)
treed5833242afe406a9924abcc4c27237df14080e19 /ipsilon/providers/saml2
parent7b56b1311ba0c730fa884c75ccf15dfbf996ebd8 (diff)
downloadipsilon-15ef3579e537523ea97714bf80c63f2f8f30d4bd.tar.gz
ipsilon-15ef3579e537523ea97714bf80c63f2f8f30d4bd.tar.xz
ipsilon-15ef3579e537523ea97714bf80c63f2f8f30d4bd.zip
Saml2 initial admin page
Signed-off-by: Simo Sorce <simo@redhat.com>
Diffstat (limited to 'ipsilon/providers/saml2')
-rwxr-xr-xipsilon/providers/saml2/admin.py49
1 files changed, 49 insertions, 0 deletions
diff --git a/ipsilon/providers/saml2/admin.py b/ipsilon/providers/saml2/admin.py
new file mode 100755
index 0000000..1e1ddb7
--- /dev/null
+++ b/ipsilon/providers/saml2/admin.py
@@ -0,0 +1,49 @@
+#!/usr/bin/python
+#
+# Copyright (C) 2014 Simo Sorce <simo@redhat.com>
+#
+# see file 'COPYING' for use and warranty information
+#
+# This program is free software; you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+from ipsilon.util.page import Page
+from ipsilon.providers.saml2.provider import ServiceProvider
+
+
+class AdminPage(Page):
+ def __init__(self, site, config):
+ super(AdminPage, self).__init__(site)
+ self.name = 'admin'
+ self.cfg = config
+ self.providers = []
+ self.menu = []
+ self.url = None
+
+ def mount(self, page):
+ self.menu = page.menu
+ self.url = '%s/%s' % (page.url, self.name)
+ for p in self.cfg.idp.get_providers():
+ try:
+ sp = ServiceProvider(self.cfg, p)
+ self.providers.append(sp)
+ except Exception, e: # pylint: disable=broad-except
+ self._debug("Failed to find provider %s: %s" % (p, str(e)))
+ page.add_subtree(self.name, self)
+
+ def root(self, *args, **kwargs):
+ return self._template('admin/providers/saml2.html',
+ title='SAML2 Administration',
+ providers=self.providers,
+ baseurl=self.url,
+ menu=self.menu)