2017-01-29 22:06:08 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2015-08-02 20:59:11 +02:00
|
|
|
import os
|
|
|
|
import sys
|
2016-12-23 10:53:39 +02:00
|
|
|
|
2015-08-02 20:59:11 +02:00
|
|
|
base_path = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
# Insert local directories into path
|
2017-03-05 11:40:39 +02:00
|
|
|
sys.path.append(base_path)
|
|
|
|
sys.path.append(os.path.join(base_path, 'cps'))
|
|
|
|
sys.path.append(os.path.join(base_path, 'vendor'))
|
2015-08-02 20:59:11 +02:00
|
|
|
|
|
|
|
from cps import web
|
2017-03-19 18:14:16 +02:00
|
|
|
try:
|
|
|
|
from gevent.wsgi import WSGIServer
|
|
|
|
gevent_present = True
|
|
|
|
except ImportError:
|
|
|
|
from tornado.wsgi import WSGIContainer
|
|
|
|
from tornado.httpserver import HTTPServer
|
|
|
|
from tornado.ioloop import IOLoop
|
|
|
|
gevent_present = False
|
2015-08-02 20:59:11 +02:00
|
|
|
|
2016-12-23 10:53:39 +02:00
|
|
|
if __name__ == '__main__':
|
2017-01-28 21:16:40 +02:00
|
|
|
if web.ub.DEVELOPMENT:
|
2017-04-02 10:05:07 +02:00
|
|
|
web.app.run(port=web.ub.config.config_port, debug=True)
|
2017-01-28 21:16:40 +02:00
|
|
|
else:
|
2017-03-19 18:14:16 +02:00
|
|
|
if gevent_present:
|
2017-03-16 23:02:49 +02:00
|
|
|
web.app.logger.info('Attempting to start gevent')
|
|
|
|
web.start_gevent()
|
2017-03-19 18:14:16 +02:00
|
|
|
else:
|
2017-03-16 23:02:49 +02:00
|
|
|
web.app.logger.info('Falling back to Tornado')
|
2018-03-30 10:39:53 +02:00
|
|
|
# Max Buffersize set to 200MB
|
2018-03-30 21:20:47 +02:00
|
|
|
if web.ub.config.get_config_certfile() and web.ub.config.get_config_keyfile():
|
|
|
|
ssl={"certfile": web.ub.config.get_config_certfile(),
|
|
|
|
"keyfile": web.ub.config.get_config_keyfile()}
|
|
|
|
else:
|
|
|
|
ssl=None
|
|
|
|
http_server = HTTPServer(WSGIContainer(web.app),
|
|
|
|
max_buffer_size = 209700000,
|
|
|
|
ssl_options=ssl)
|
2017-03-08 00:38:23 +02:00
|
|
|
http_server.listen(web.ub.config.config_port)
|
|
|
|
IOLoop.instance().start()
|
2017-03-18 14:48:59 +02:00
|
|
|
IOLoop.instance().close(True)
|
2017-01-22 17:44:37 +02:00
|
|
|
|
2018-03-30 21:20:47 +02:00
|
|
|
|
2017-02-20 20:52:00 +02:00
|
|
|
if web.helper.global_task == 0:
|
2017-02-21 20:40:22 +02:00
|
|
|
web.app.logger.info("Performing restart of Calibre-web")
|
2017-01-28 21:16:40 +02:00
|
|
|
os.execl(sys.executable, sys.executable, *sys.argv)
|
2016-12-23 10:53:39 +02:00
|
|
|
else:
|
2017-02-21 20:40:22 +02:00
|
|
|
web.app.logger.info("Performing shutdown of Calibre-web")
|
2017-01-28 21:16:40 +02:00
|
|
|
sys.exit(0)
|