Saml2 initial admin page
authorSimo Sorce <simo@redhat.com>
Thu, 27 Mar 2014 16:57:19 +0000 (12:57 -0400)
committerSimo Sorce <simo@redhat.com>
Fri, 28 Mar 2014 21:17:47 +0000 (17:17 -0400)
Signed-off-by: Simo Sorce <simo@redhat.com>
ipsilon/providers/saml2/admin.py [new file with mode: 0755]
ipsilon/providers/saml2idp.py
setup.py
templates/admin/providers/saml2.html [new file with mode: 0644]

diff --git a/ipsilon/providers/saml2/admin.py b/ipsilon/providers/saml2/admin.py
new file mode 100755 (executable)
index 0000000..1e1ddb7
--- /dev/null
@@ -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)
index b8d1851..c1e31dc 100755 (executable)
@@ -20,6 +20,7 @@
 from ipsilon.providers.common import ProviderBase, ProviderPageBase
 from ipsilon.providers.common import FACILITY
 from ipsilon.providers.saml2.auth import AuthenticateRequest
 from ipsilon.providers.common import ProviderBase, ProviderPageBase
 from ipsilon.providers.common import FACILITY
 from ipsilon.providers.saml2.auth import AuthenticateRequest
+from ipsilon.providers.saml2.admin import AdminPage
 from ipsilon.providers.saml2.certs import Certificate
 from ipsilon.providers.saml2 import metadata
 from ipsilon.util.user import UserSession
 from ipsilon.providers.saml2.certs import Certificate
 from ipsilon.providers.saml2 import metadata
 from ipsilon.util.user import UserSession
@@ -222,6 +223,7 @@ Provides SAML 2.0 authentication infrastructure. """
 
     def get_tree(self, site):
         self.page = SAML2(site, self)
 
     def get_tree(self, site):
         self.page = SAML2(site, self)
+        self.admin = AdminPage(site, self)
         return self.page
 
 
         return self.page
 
 
index ecda06a..7dd021d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -41,6 +41,8 @@ setup(
                   (DATA+'templates/login', glob('templates/login/*.html')),
                   (DATA+'templates/saml2', glob('templates/saml2/*.html')),
                   (DATA+'templates/install', glob('templates/install/*.conf')),
                   (DATA+'templates/login', glob('templates/login/*.html')),
                   (DATA+'templates/saml2', glob('templates/saml2/*.html')),
                   (DATA+'templates/install', glob('templates/install/*.conf')),
+                  (DATA+'templates/admin/providers',
+                   glob('templates/admin/providers/*.html')),
                  ]
 )
 
                  ]
 )
 
diff --git a/templates/admin/providers/saml2.html b/templates/admin/providers/saml2.html
new file mode 100644 (file)
index 0000000..0d0a05f
--- /dev/null
@@ -0,0 +1,23 @@
+{% extends "master-admin.html" %}
+{% block main %}
+{% if user.is_admin %}
+    <h2>Service Providers</h2>
+
+    <div class="row">
+        <div class="col-md-3 col-sm-3 col-xs-6">
+            <a href="{{ baseurl }}/new">Add New</a>
+        </div>
+    </div>
+    <hr/>
+    {% for p in providers %}
+        <div class="row">
+            <div class="col-md-3 col-sm-3 col-xs-6">
+                <a href="{{ baseurl }}/{{ p.name }}">{{ p.name }}</a>
+            </div>
+            <div class="col-md-3 col-sm-3 col-xs-6">
+                {{ p.provider_id }}
+            </div>
+        </div>
+    {% endfor %}
+{% endif %}
+{% endblock %}