]> git.ipfire.org Git - people/ms/westferry.git/blob - src/westferry/handlers/base.py
774d9f23aedb6c1bf27a5c122aa7211fd0d534fc
[people/ms/westferry.git] / src / westferry / handlers / base.py
1 #!/usr/bin/python3
2 ###############################################################################
3 # #
4 # Westferry - The IPFire web user interface #
5 # Copyright (C) 2015 IPFire development team #
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 ###############################################################################
21
22 import functools
23 import tornado.web
24
25 from .. import ui
26 from ..i18n import _, N_
27
28 _handlers = []
29
30 class HandlerRegistration(type):
31 def __init__(handler, name, bases, dict):
32 type.__init__(handler, name, bases, dict)
33
34 # The main class from which is inherited is not registered
35 # as a plugin
36 if name.endswith("BaseHandler"):
37 return
38
39 if handler.url is None:
40 raise RuntimeError(_("Handler %s is improperly configured") % handler)
41
42 _handlers.append(handler)
43
44 @staticmethod
45 def get_handlers():
46 return _handlers
47
48
49 class BaseHandler(tornado.web.RequestHandler, metaclass=HandlerRegistration):
50 url = None
51
52 title = N_("No Title")
53
54 # Points to the menu map of the section in which the handler is in
55 menu = None
56
57 @property
58 def backend(self):
59 """
60 Shortcut to access the backend
61 """
62 return self.application.backend
63
64 @functools.cached_property
65 def tabs(self):
66 return ui.tabs.Tabs(self)
67
68 def get_template_namespace(self):
69 ns = tornado.web.RequestHandler.get_template_namespace(self)
70
71 # Add some global constants
72 ns.update({
73 "VERSION" : self.backend.version,
74 })
75
76 # Add some more
77 ns.update({
78 "menu" : self.menu,
79 })
80
81 return ns
82
83 def get_argument_int(self, name, *args, **kwargs):
84 val = self.get_argument(name, *args, **kwargs)
85
86 if val is None:
87 return
88
89 try:
90 return int(val)
91 except ValueError:
92 raise tornado.web.HTTPError(400,
93 _("Invalid type for '%s', expected integer") % name)
94
95 def get(self):
96 # Render the default view
97 self.render("default.html")
98
99 def post(self):
100 """
101 This is the default handler which will find the correct form
102 and execute it.
103 """
104 form_id = self.get_argument("form")
105
106 # Find the form
107 form = self.tabs.get_form(form_id)
108 if not form:
109 raise tornado.web.HTTPError(400, "Could not find form with ID '%s'" % form_id)
110
111 # Execute the form action
112 form.execute()