Use python logging in install / log cherrypy at right severity
[cascardo/ipsilon.git] / ipsilon / util / errors.py
1 # Copyright (C) 2014  Simo Sorce <simo@redhat.com>
2 #
3 # see file 'COPYING' for use and warranty information
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation, either version 3 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 from ipsilon.util.page import Page
19
20
21 class Errors(Page):
22
23     def __init__(self, *args, **kwargs):
24         super(Errors, self).__init__(*args, **kwargs)
25
26     def _error_template(self, *args, **kwargs):
27         # pylint: disable=star-args
28         output_page = self._template(*args, **kwargs)
29         # for some reason cherrypy will choke if the output
30         # is a unicode object, so use str() here to please it
31         return str(output_page)
32
33     def handler(self, status, message, traceback, version):
34         self.debug(repr([status, message, traceback, version]))
35         return self._error_template('internalerror.html',
36                                     title='Internal Error')
37
38     # pylint: disable=W0221
39     def __call__(self, status, message, traceback, version):
40         return self.handler(status, message, traceback, version)
41
42
43 class Error_400(Errors):
44
45     def handler(self, status, message, traceback, version):
46         return self._error_template('badrequest.html',
47                                     title='Bad Request', message=message)
48
49
50 class Error_401(Errors):
51
52     def handler(self, status, message, traceback, version):
53         return self._error_template('unauthorized.html',
54                                     title='Unauthorized', message=message)
55
56
57 class Error_404(Errors):
58
59     def handler(self, status, message, traceback, version):
60         return self._error_template('notfound.html',
61                                     title='Not Found', message=message)