7dda1d742a94f43af62b2716673d0d97ada1445d
[cascardo/ipsilon.git] / ipsilon / util / page.py
1 #!/usr/bin/python
2 #
3 # Copyright (C) 2013  Simo Sorce <simo@redhat.com>
4 #
5 # see file 'COPYING' for use and warranty information
6 #
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
19
20 from ipsilon.util.user import UserSession
21 import cherrypy
22
23
24 def admin_protect(fn):
25
26     def check(*args, **kwargs):
27         if UserSession().get_user().is_admin:
28             return fn(*args, **kwargs)
29
30         raise cherrypy.HTTPError(403)
31
32     return check
33
34
35 def protect():
36     UserSession().remote_login()
37
38
39 class Page(object):
40     def __init__(self, site):
41         if not 'template_env' in site:
42             raise ValueError('Missing template environment')
43         self._site = site
44         self.basepath = cherrypy.config.get('base.mount', "")
45         self.user = None
46
47     def __call__(self, *args, **kwargs):
48         # pylint: disable=star-args
49         self.user = UserSession().get_user()
50
51         if len(args) > 0:
52             op = getattr(self, args[0], None)
53             if callable(op) and getattr(self, args[0]+'.exposed', None):
54                 return op(*args[1:], **kwargs)
55         else:
56             op = getattr(self, 'root', None)
57             if callable(op):
58                 return op(*args, **kwargs)
59
60         return self.default(*args, **kwargs)
61
62     def _template_model(self):
63         model = dict()
64         model['basepath'] = self.basepath
65         model['title'] = 'IPSILON'
66         model['user'] = self.user
67         return model
68
69     def _template(self, *args, **kwargs):
70         # pylint: disable=star-args
71         t = self._site['template_env'].get_template(args[0])
72         m = self._template_model()
73         m.update(kwargs)
74         return t.render(**m)
75
76     def _debug(self, fact):
77         if cherrypy.config.get('debug', False):
78             cherrypy.log(fact)
79
80     def default(self, *args, **kwargs):
81         raise cherrypy.HTTPError(404)
82
83     exposed = True