mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-25 05:00:16 +00:00
set error message in redis when process_url_list fails
This commit is contained in:
parent
4580ea6f87
commit
9070e04431
@ -168,6 +168,18 @@ class DownloadView(View):
|
|||||||
url_str = download_post['vid-url']
|
url_str = download_post['vid-url']
|
||||||
print('adding to queue')
|
print('adding to queue')
|
||||||
youtube_ids = process_url_list(url_str)
|
youtube_ids = process_url_list(url_str)
|
||||||
|
if not youtube_ids:
|
||||||
|
# failed to process
|
||||||
|
print(url_str)
|
||||||
|
mess_dict = {
|
||||||
|
"status": "downloading",
|
||||||
|
"level": "error",
|
||||||
|
"title": 'Failed to extract links.',
|
||||||
|
"message": ''
|
||||||
|
}
|
||||||
|
set_message('progress:download', mess_dict)
|
||||||
|
return redirect('downloads')
|
||||||
|
|
||||||
print(youtube_ids)
|
print(youtube_ids)
|
||||||
extrac_dl.delay(youtube_ids)
|
extrac_dl.delay(youtube_ids)
|
||||||
|
|
||||||
@ -454,9 +466,6 @@ class PostData:
|
|||||||
elif task == 'dl_pending':
|
elif task == 'dl_pending':
|
||||||
print('download pending')
|
print('download pending')
|
||||||
download_pending.delay()
|
download_pending.delay()
|
||||||
elif task == 'vid-url':
|
|
||||||
status_str = item['status']
|
|
||||||
print(urllib.parse.quote(status_str))
|
|
||||||
elif task == 'unsubscribe':
|
elif task == 'unsubscribe':
|
||||||
channel_id_unsub = item['status']
|
channel_id_unsub = item['status']
|
||||||
print('unsubscribe from ' + channel_id_unsub)
|
print('unsubscribe from ' + channel_id_unsub)
|
||||||
|
Loading…
Reference in New Issue
Block a user