eventman/eventman_server.py

94 lines
2.9 KiB
Python
Raw Normal View History

2015-03-14 11:12:57 +01:00
#!/usr/bin/env python
"""Event Man(ager)
Your friendly manager of attendants at a conference.
"""
import os
import tornado.httpserver
import tornado.ioloop
import tornado.options
from tornado.options import define, options
import tornado.web
2015-03-15 18:00:08 +01:00
from tornado import gen, escape
2015-03-14 11:12:57 +01:00
2015-03-15 15:47:04 +01:00
class RootHandler(tornado.web.RequestHandler):
angular_app_path = os.path.join(os.path.dirname(__file__), "angular_app")
2015-03-14 13:05:04 +01:00
@gen.coroutine
2015-03-14 11:12:57 +01:00
def get(self):
2015-03-15 15:47:04 +01:00
with open(self.angular_app_path + "/index.html", 'r') as fd:
self.write(fd.read())
2015-03-14 17:32:45 +01:00
MOCKUP_PERSONS = [
{'name': 'Silvia', 'surname': 'Castellari',
'email': 'hackinbo.it@gmail.com',
'id': 1},
{'name': 'Daniele', 'surname': 'Castellari',
'email': 'hackinbo.it@gmail.com',
'id': 2},
{'name': 'Mario', 'surname': 'Anglani',
'email': 'hackinbo.it@gmail.com',
'id': 3}]
2015-03-15 18:00:08 +01:00
import datetime
MOCKUP_EVENTS = [
{'title': 'HackInBo 2015', 'begin-datetime': datetime.datetime(2015, 5, 23, 9, 0),
'end-datetime': datetime.datetime(2015, 5, 24, 17, 0),
'location': 'Bologna', 'id': 1},
{'title': 'La fiera del carciofo', 'begin-datetime': datetime.datetime(2015, 6, 23, 9, 0),
'end-datetime': datetime.datetime(2015, 6, 24, 17, 0),
'location': 'Gatteo a mare', 'id': 2},
]
import json
class ImprovedEncoder(json.JSONEncoder):
def default(self, o):
if isinstance(o, datetime.datetime):
return str(o)
return json.JSONEncoder.default(self, o)
json._default_encoder = ImprovedEncoder()
2015-03-14 11:12:57 +01:00
2015-03-14 17:32:45 +01:00
class PersonsHandler(tornado.web.RequestHandler):
@gen.coroutine
def get(self, id_=None):
self.write({'persons': MOCKUP_PERSONS})
2015-03-14 11:12:57 +01:00
2015-03-15 18:00:08 +01:00
class EventsHandler(tornado.web.RequestHandler):
@gen.coroutine
def get(self, id_=None):
self.write({'events': MOCKUP_EVENTS})
2015-03-14 11:12:57 +01:00
def main():
define("port", default=5242, help="run on the given port", type=int)
2015-03-14 17:32:45 +01:00
define("data", default=os.path.join(os.path.dirname(__file__), "data"),
help="specify the directory used to store the data")
define("debug", default=False, help="run in debug mode")
2015-03-14 11:12:57 +01:00
define("config", help="read configuration file",
callback=lambda path: tornado.options.parse_config_file(path, final=False))
tornado.options.parse_command_line()
application = tornado.web.Application([
2015-03-14 17:32:45 +01:00
(r"/persons/?(?P<id_>\d+)?", PersonsHandler),
2015-03-15 18:00:08 +01:00
(r"/events/?(?P<id_>\d+)?", EventsHandler),
2015-03-15 15:47:04 +01:00
(r"/(?:index.html)?", RootHandler),
2015-03-14 17:32:45 +01:00
(r'/(.*)', tornado.web.StaticFileHandler, {"path": "angular_app"})
2015-03-14 11:12:57 +01:00
],
2015-03-14 13:05:04 +01:00
template_path=os.path.join(os.path.dirname(__file__), "templates"),
2015-03-14 11:12:57 +01:00
static_path=os.path.join(os.path.dirname(__file__), "static"),
2015-03-14 13:05:04 +01:00
debug=options.debug)
2015-03-14 11:12:57 +01:00
http_server = tornado.httpserver.HTTPServer(application)
2015-03-14 11:22:19 +01:00
http_server.listen(options.port)
2015-03-14 11:12:57 +01:00
tornado.ioloop.IOLoop.instance().start()
if __name__ == '__main__':
main()