]> git.ipfire.org Git - people/ms/westferry.git/blob - src/westferry/services.py
Create a basic, modular frontend web service
[people/ms/westferry.git] / src / westferry / services.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 tornado.httpserver
23 import tornado.ioloop
24
25 from . import application
26
27 class Service(object):
28 pass
29
30
31 class WebService(Service):
32 def __init__(self, port=80):
33 self.port = port
34
35 def make_application(self, **kwargs):
36 return application.WebApplication(**kwargs)
37
38 @property
39 def ioloop(self):
40 return tornado.ioloop.IOLoop.instance()
41
42 def run(self, **kwargs):
43 app = self.make_application(**kwargs)
44
45 # Create a HTTP server instance
46 server = tornado.httpserver.HTTPServer(app)
47 server.bind(self.port)
48
49 # Launch the server
50 server.start()
51
52 # Launch the IOLoop
53 self.ioloop.start()