Use cherrypy handlers to render error pages
authorSimo Sorce <simo@redhat.com>
Mon, 24 Feb 2014 23:34:17 +0000 (18:34 -0500)
committerSimo Sorce <simo@redhat.com>
Tue, 25 Feb 2014 01:30:06 +0000 (20:30 -0500)
Replaces custom code to render 401 Unauthorized page as well as
adds 400 and 500 handlers

Signed-off-by: Simo Sorce <simo@redhat.com>
ipsilon/login/common.py
ipsilon/root.py
ipsilon/unauthorized.py [deleted file]
ipsilon/util/errors.py [new file with mode: 0755]
templates/badrequest.html [new file with mode: 0644]
templates/internalerror.html [new file with mode: 0644]
templates/unauthorized.html

index 5879fda..4ffdd8a 100755 (executable)
@@ -56,9 +56,8 @@ class LoginManagerBase(PluginObject):
 
         # otherwise destroy session and return error
         if not ref:
-            ref = cherrypy.config.get('base.mount', "") + '/unauthorized'
-            # Just make sure we destroy the session
             session.logout(None)
+            raise cherrypy.HTTPError(401)
 
         raise cherrypy.HTTPRedirect(ref)
 
index 88a15c6..19a47a4 100755 (executable)
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 from ipsilon.util.page import Page
+from ipsilon.util import errors
 from ipsilon.login.common import Login
 from ipsilon.login.common import Logout
 from ipsilon.admin.common import Admin
-from ipsilon.unauthorized import Unauthorized
+import cherrypy
 
 sites = dict()
 
@@ -36,7 +37,9 @@ class Root(Page):
         super(Root, self).__init__(sites[site])
 
         # set up error pages
-        self.unauthorized = Unauthorized(self._site)
+        cherrypy.config['error_page.400'] = errors.Error_400(self._site)
+        cherrypy.config['error_page.401'] = errors.Error_401(self._site)
+        cherrypy.config['error_page.500'] = errors.Errors(self._site)
 
         # now set up the default login plugins
         self.login = Login(self._site)
diff --git a/ipsilon/unauthorized.py b/ipsilon/unauthorized.py
deleted file mode 100644 (file)
index 52125d4..0000000
+++ /dev/null
@@ -1,28 +0,0 @@
-#!/usr/bin/python
-#
-# Copyright (C) 2014  Petr Vobornik <pvoborni@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
-import cherrypy
-
-
-class Unauthorized(Page):
-
-    def root(self):
-        cherrypy.response.status = "401 Unauthorized"
-        return self._template('unauthorized.html', title='Unauthorized')
diff --git a/ipsilon/util/errors.py b/ipsilon/util/errors.py
new file mode 100755 (executable)
index 0000000..16b7c70
--- /dev/null
@@ -0,0 +1,53 @@
+#!/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
+import cherrypy
+
+class Errors(Page):
+
+    def __init__(self, *args, **kwargs):
+        super(Errors, self).__init__(*args, **kwargs)
+
+    def _error_template(self, *args, **kwargs):
+        # pylint: disable=star-args
+        output_page = self._template(*args, **kwargs)
+        # for some reason cherrypy will choke if the output
+        # is a unicode object, so use str() here to please it
+        return str(output_page)
+
+    def handler(self, status, message, traceback, version):
+        self._debug(repr([status, message, traceback, version]))
+        return self._error_template('internalerror.html', title='Internal Error')
+
+    def __call__(self, status, message, traceback, version):
+        return self.handler(status, message, traceback, version)
+
+
+class Error_400(Errors):
+
+    def handler(self, status, message, traceback, version):
+        return self._error_template('badrequest.html',
+                                    title='Bad Request', message=message)
+
+class Error_401(Errors):
+
+    def handler(self, status, message, traceback, version):
+        return self._error_template('unauthorized.html',
+                                    title='Unauthorized', message=message)
diff --git a/templates/badrequest.html b/templates/badrequest.html
new file mode 100644 (file)
index 0000000..25a2731
--- /dev/null
@@ -0,0 +1,12 @@
+{% extends "master.html" %}
+{% block main %}
+<div class="col-sm-12">
+  <h1>400 - Bad Request</h1>
+  {% if message: %}
+    <p>{{ message }}</p>
+  {% else %}
+    <p>Your client made a request that could not be understood.</p>
+    <p>Sorry!</p>
+  {% endif %}
+</div>
+{% endblock %}
diff --git a/templates/internalerror.html b/templates/internalerror.html
new file mode 100644 (file)
index 0000000..9682c14
--- /dev/null
@@ -0,0 +1,15 @@
+{% extends "master.html" %}
+{% block main %}
+<div class="col-sm-12">
+  <h1>500 - Internal Server Error</h1>
+  {% if message: %}
+    <p>{{ message }}</p>
+  {% else %}
+    <p>Ipsilon encountered an unexpected internal error while trying to
+       fulfill your request.</p>
+  {% endif %}
+  <p>Please retry again.</p>
+  <p>If the error persists, contact the server administrator to resolve
+     the problem.</p>
+</div>
+{% endblock %}
index ee2f412..cdb34da 100644 (file)
@@ -2,7 +2,11 @@
 {% block main %}
 <div class="col-sm-12">
   <h1>401 - Unauthorized</h1>
-  <p>Authentication was not successful</p>
+  {% if message: %}
+    <p>{{ message }}</p>
+  {% else %}
+    <p>Authentication was not successful</p>
+  {% endif %}
   <p><a href="{{ basepath }}/login" title="Login">Try to login again</a></p>
 </div>
-{% endblock %}
\ No newline at end of file
+{% endblock %}