ycdl/frontends/ycdl_flask/ycdl_flask_dev.py

99 lines
2.8 KiB
Python
Raw Normal View History

'''
This file is the gevent launcher for local / development use.
Simply run it on the command line:
python ycdl_flask_dev.py [port]
'''
2020-09-22 09:50:24 +00:00
import gevent.monkey; gevent.monkey.patch_all()
2017-10-09 04:39:07 +00:00
import logging
handler = logging.StreamHandler()
log_format = '{levelname}:ycdl.{module}.{funcName}: {message}'
handler.setFormatter(logging.Formatter(log_format, style='{'))
logging.getLogger().addHandler(handler)
2017-10-09 04:39:07 +00:00
import argparse
2016-11-29 04:16:16 +00:00
import gevent.pywsgi
import sys
2016-12-07 06:11:09 +00:00
2020-09-22 09:50:24 +00:00
from voussoirkit import pathclass
import bot
import ycdl
import backend
####################################################################################################
site = backend.site
2020-09-22 09:50:24 +00:00
HTTPS_DIR = pathclass.Path(__file__).parent.with_child('https')
2016-11-29 04:16:16 +00:00
def ycdl_flask_launch(
*,
create,
localhost_only,
port,
refresh_rate,
use_https,
):
2020-09-22 09:50:24 +00:00
if use_https is None:
use_https = port == 443
if use_https:
http = gevent.pywsgi.WSGIServer(
2020-09-22 09:50:24 +00:00
listener=('0.0.0.0', port),
application=site,
2020-09-22 09:50:24 +00:00
keyfile=HTTPS_DIR.with_child('ycdl.key').absolute_path,
certfile=HTTPS_DIR.with_child('ycdl.crt').absolute_path,
)
else:
http = gevent.pywsgi.WSGIServer(
listener=('0.0.0.0', port),
application=site,
)
2020-09-30 22:15:30 +00:00
if localhost_only:
site.localhost_only = True
2020-09-22 09:50:24 +00:00
youtube_core = ycdl.ytapi.Youtube(bot.get_youtube_key())
backend.common.init_ycdldb(youtube_core, create=create, log_level=logging.DEBUG)
2020-09-22 09:50:24 +00:00
if refresh_rate is not None:
backend.common.start_refresher_thread(refresh_rate)
2020-09-22 09:50:24 +00:00
message = f'Starting server on port {port}'
if use_https:
message += ' (https)'
print(message)
2020-09-22 09:50:24 +00:00
try:
http.serve_forever()
except KeyboardInterrupt:
pass
def ycdl_flask_launch_argparse(args):
return ycdl_flask_launch(
2020-09-22 09:50:24 +00:00
create=args.create,
2020-09-30 22:15:30 +00:00
localhost_only=args.localhost_only,
port=args.port,
refresh_rate=args.refresh_rate,
2020-09-22 09:50:24 +00:00
use_https=args.use_https,
2016-11-29 04:16:16 +00:00
)
def main(argv):
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument('port', nargs='?', type=int, default=5000)
2020-09-22 09:50:24 +00:00
parser.add_argument('--dont_create', '--dont-create', '--no-create', dest='create', action='store_false', default=True)
parser.add_argument('--https', dest='use_https', action='store_true', default=None)
2020-09-30 22:15:30 +00:00
parser.add_argument('--localhost_only', '--localhost-only', dest='localhost_only', action='store_true')
parser.add_argument('--refresh_rate', '--refresh-rate', dest='refresh_rate', type=int, default=None)
parser.set_defaults(func=ycdl_flask_launch_argparse)
args = parser.parse_args(argv)
return args.func(args)
2016-11-29 04:16:16 +00:00
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))