pylint 1.4.3 version fixes
[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         output_page = self._template(*args, **kwargs)
28         # for some reason cherrypy will choke if the output
29         # is a unicode object, so use str() here to please it
30         return str(output_page)
31
32     def handler(self, status, message, traceback, version):
33         self.debug(repr([status, message, traceback, version]))
34         return self._error_template('internalerror.html',
35                                     title='Internal Error')
36
37     # pylint: disable=W0221
38     def __call__(self, status, message, traceback, version):
39         return self.handler(status, message, traceback, version)
40
41
42 class Error_400(Errors):
43
44     def handler(self, status, message, traceback, version):
45         return self._error_template('badrequest.html',
46                                     title='Bad Request', message=message)
47
48
49 class Error_401(Errors):
50
51     def handler(self, status, message, traceback, version):
52         return self._error_template('unauthorized.html',
53                                     title='Unauthorized', message=message)
54
55
56 class Error_404(Errors):
57
58     def handler(self, status, message, traceback, version):
59         return self._error_template('notfound.html',
60                                     title='Not Found', message=message)