Add a refresher thread to keep your sub box up to date.

This commit is contained in:
voussoir 2020-01-06 22:07:43 -08:00
parent 78ce6a6f41
commit 29d819fe97

View file

@ -11,6 +11,8 @@ from flask import request
import json
import mimetypes
import os
import time
import threading
import traceback
import bot
@ -233,6 +235,7 @@ def post_refresh_channel():
force = request.form.get('force', False)
force = ycdl.helpers.truthystring(force)
youtube.add_channel(channel_id, commit=False)
youtube.refresh_channel(channel_id, force=force)
return make_json_response({})
@ -253,5 +256,20 @@ def post_start_download():
return make_json_response({'video_ids': video_ids, 'state': 'downloaded'})
####################################################################################################
####################################################################################################
####################################################################################################
####################################################################################################
def refresher_thread():
while True:
time.sleep(60 * 60 * 6)
print('Starting refresh job.')
refresh_job = threading.Thread(target=youtube.refresh_all_channels, kwargs={'force': False}, daemon=True)
refresh_job.start()
refresher = threading.Thread(target=refresher_thread, daemon=True)
refresher.start()
if __name__ == '__main__':
pass