2016-11-29 04:16:16 +00:00
|
|
|
'''
|
|
|
|
Do not execute this file directly.
|
2021-04-03 01:00:01 +00:00
|
|
|
Use ycdl_flask_dev.py or ycdl_flask_prod.py.
|
2016-11-29 04:16:16 +00:00
|
|
|
'''
|
2020-03-28 23:49:33 +00:00
|
|
|
import flask; from flask import request
|
2020-01-07 06:07:43 +00:00
|
|
|
import threading
|
2020-03-28 23:49:33 +00:00
|
|
|
import time
|
2020-03-29 00:05:43 +00:00
|
|
|
|
2021-04-03 01:25:55 +00:00
|
|
|
from voussoirkit import flasktools
|
2020-03-29 00:05:43 +00:00
|
|
|
from voussoirkit import pathclass
|
2021-09-09 02:31:56 +00:00
|
|
|
from voussoirkit import vlogging
|
|
|
|
|
|
|
|
log = vlogging.getLogger(__name__)
|
2016-11-29 04:16:16 +00:00
|
|
|
|
|
|
|
import ycdl
|
|
|
|
|
2018-12-18 03:17:53 +00:00
|
|
|
from . import jinja_filters
|
|
|
|
|
2020-09-22 09:50:24 +00:00
|
|
|
# Flask init #######################################################################################
|
|
|
|
|
2017-10-09 04:39:07 +00:00
|
|
|
root_dir = pathclass.Path(__file__).parent.parent
|
|
|
|
|
|
|
|
TEMPLATE_DIR = root_dir.with_child('templates')
|
|
|
|
STATIC_DIR = root_dir.with_child('static')
|
|
|
|
FAVICON_PATH = STATIC_DIR.with_child('favicon.png')
|
|
|
|
|
|
|
|
site = flask.Flask(
|
|
|
|
__name__,
|
|
|
|
template_folder=TEMPLATE_DIR.absolute_path,
|
|
|
|
static_folder=STATIC_DIR.absolute_path,
|
|
|
|
)
|
2016-11-29 04:16:16 +00:00
|
|
|
site.config.update(
|
|
|
|
SEND_FILE_MAX_AGE_DEFAULT=180,
|
|
|
|
TEMPLATES_AUTO_RELOAD=True,
|
|
|
|
)
|
|
|
|
site.jinja_env.add_extension('jinja2.ext.do')
|
2020-09-22 09:50:24 +00:00
|
|
|
site.jinja_env.trim_blocks = True
|
|
|
|
site.jinja_env.lstrip_blocks = True
|
|
|
|
jinja_filters.register_all(site)
|
2016-11-29 04:16:16 +00:00
|
|
|
site.debug = True
|
2020-09-30 22:15:30 +00:00
|
|
|
site.localhost_only = False
|
2016-11-29 04:16:16 +00:00
|
|
|
|
2021-04-03 01:25:55 +00:00
|
|
|
# Request decorators ###############################################################################
|
2020-09-22 09:50:24 +00:00
|
|
|
|
2020-09-30 22:15:30 +00:00
|
|
|
@site.before_request
|
|
|
|
def before_request():
|
2021-06-05 04:34:05 +00:00
|
|
|
request.is_localhost = (request.remote_addr == '127.0.0.1')
|
2021-02-26 03:45:11 +00:00
|
|
|
if site.localhost_only and not request.is_localhost:
|
2020-09-30 22:15:30 +00:00
|
|
|
flask.abort(403)
|
|
|
|
|
2020-08-28 23:43:02 +00:00
|
|
|
@site.after_request
|
|
|
|
def after_request(response):
|
2021-04-03 01:25:55 +00:00
|
|
|
response = flasktools.gzip_response(request, response)
|
2020-08-28 23:43:02 +00:00
|
|
|
return response
|
|
|
|
|
2016-11-29 04:16:16 +00:00
|
|
|
####################################################################################################
|
|
|
|
|
2021-04-04 18:16:44 +00:00
|
|
|
# These functions will be called by the launcher, flask_dev, flask_prod.
|
|
|
|
|
2020-09-22 09:50:24 +00:00
|
|
|
def init_ycdldb(*args, **kwargs):
|
|
|
|
global ycdldb
|
2021-10-16 04:00:04 +00:00
|
|
|
ycdldb = ycdl.ycdldb.YCDLDB.closest_ycdldb(*args, **kwargs)
|
2016-11-29 04:16:16 +00:00
|
|
|
|
2020-03-28 23:42:54 +00:00
|
|
|
def refresher_thread(rate):
|
2020-01-07 06:07:43 +00:00
|
|
|
while True:
|
2020-03-28 23:42:54 +00:00
|
|
|
time.sleep(rate)
|
2021-09-09 02:31:56 +00:00
|
|
|
log.info('Starting refresh job.')
|
2020-01-19 18:53:49 +00:00
|
|
|
thread_kwargs = {'force': False, 'skip_failures': True}
|
2020-11-10 04:01:47 +00:00
|
|
|
refresh_job = threading.Thread(
|
|
|
|
target=ycdldb.refresh_all_channels,
|
|
|
|
kwargs=thread_kwargs,
|
|
|
|
daemon=True,
|
|
|
|
)
|
2020-01-07 06:07:43 +00:00
|
|
|
refresh_job.start()
|
|
|
|
|
2020-03-28 23:42:54 +00:00
|
|
|
def start_refresher_thread(rate):
|
2021-09-09 02:31:56 +00:00
|
|
|
log.info('Starting refresher thread, once per %d seconds.', rate)
|
2020-03-28 23:42:54 +00:00
|
|
|
refresher = threading.Thread(target=refresher_thread, args=[rate], daemon=True)
|
|
|
|
refresher.start()
|