mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 11:50:14 +00:00
delete video backend functionality
This commit is contained in:
parent
8c97e6786a
commit
7405e960e5
@ -217,11 +217,12 @@ class YoutubeVideo:
|
|||||||
def __init__(self, youtube_id):
|
def __init__(self, youtube_id):
|
||||||
self.youtube_id = youtube_id
|
self.youtube_id = youtube_id
|
||||||
self.channel_id = None
|
self.channel_id = None
|
||||||
self.vid_dict = self.get_wrapper()
|
self.vid_dict = None
|
||||||
|
|
||||||
def get_wrapper(self):
|
def get_vid_dict(self):
|
||||||
"""wrapper to loop around youtube_dl to retry on failure"""
|
"""wrapper to loop around youtube_dl to retry on failure"""
|
||||||
print(f"get video data for {self.youtube_id}")
|
print(f"get video data for {self.youtube_id}")
|
||||||
|
vid_dict = False
|
||||||
for i in range(3):
|
for i in range(3):
|
||||||
try:
|
try:
|
||||||
vid_dict = self.get_youtubedl_vid_data()
|
vid_dict = self.get_youtubedl_vid_data()
|
||||||
@ -232,7 +233,7 @@ class YoutubeVideo:
|
|||||||
else:
|
else:
|
||||||
break
|
break
|
||||||
|
|
||||||
return vid_dict
|
self.vid_dict = vid_dict
|
||||||
|
|
||||||
def get_youtubedl_vid_data(self):
|
def get_youtubedl_vid_data(self):
|
||||||
"""parse youtubedl extract info"""
|
"""parse youtubedl extract info"""
|
||||||
@ -362,6 +363,22 @@ class YoutubeVideo:
|
|||||||
if not response.ok:
|
if not response.ok:
|
||||||
print(response.text)
|
print(response.text)
|
||||||
|
|
||||||
|
def delete_media_file(self):
|
||||||
|
"""delete video file, meta data, thumbnails"""
|
||||||
|
# delete media file
|
||||||
|
es_vid_dict = self.get_es_data()
|
||||||
|
media_url = es_vid_dict["_source"]["media_url"]
|
||||||
|
print(f"delete {media_url} from file system")
|
||||||
|
to_delete = os.path.join(self.VIDEOS, media_url)
|
||||||
|
os.remove(to_delete)
|
||||||
|
# delete from index
|
||||||
|
url = f"{self.ES_URL}/ta_video/_doc/{self.youtube_id}"
|
||||||
|
response = requests.delete(url)
|
||||||
|
if not response.ok:
|
||||||
|
print(response.text)
|
||||||
|
# delete thumbs from cache
|
||||||
|
self.delete_cache()
|
||||||
|
|
||||||
|
|
||||||
class WatchState:
|
class WatchState:
|
||||||
"""handle watched checkbox for videos and channels"""
|
"""handle watched checkbox for videos and channels"""
|
||||||
@ -454,6 +471,7 @@ class WatchState:
|
|||||||
def index_new_video(youtube_id, missing_vid=False):
|
def index_new_video(youtube_id, missing_vid=False):
|
||||||
"""combine video and channel classes for new video index"""
|
"""combine video and channel classes for new video index"""
|
||||||
vid_handler = YoutubeVideo(youtube_id)
|
vid_handler = YoutubeVideo(youtube_id)
|
||||||
|
vid_handler.get_vid_dict()
|
||||||
if not vid_handler.vid_dict:
|
if not vid_handler.vid_dict:
|
||||||
raise ValueError("failed to get metadata for " + youtube_id)
|
raise ValueError("failed to get metadata for " + youtube_id)
|
||||||
|
|
||||||
|
@ -144,6 +144,7 @@ class Reindex:
|
|||||||
def reindex_single_video(youtube_id):
|
def reindex_single_video(youtube_id):
|
||||||
"""refresh data for single video"""
|
"""refresh data for single video"""
|
||||||
vid_handler = YoutubeVideo(youtube_id)
|
vid_handler = YoutubeVideo(youtube_id)
|
||||||
|
vid_handler.get_vid_dict()
|
||||||
if not vid_handler.vid_dict:
|
if not vid_handler.vid_dict:
|
||||||
# stop if deactivated
|
# stop if deactivated
|
||||||
vid_handler.deactivate()
|
vid_handler.deactivate()
|
||||||
|
@ -15,7 +15,7 @@ from django.views import View
|
|||||||
from home.src.config import AppConfig
|
from home.src.config import AppConfig
|
||||||
from home.src.download import ChannelSubscription, PendingList
|
from home.src.download import ChannelSubscription, PendingList
|
||||||
from home.src.helper import RedisArchivist, RedisQueue, process_url_list
|
from home.src.helper import RedisArchivist, RedisQueue, process_url_list
|
||||||
from home.src.index import WatchState
|
from home.src.index import WatchState, YoutubeVideo
|
||||||
from home.src.searching import Pagination, SearchForm, SearchHandler
|
from home.src.searching import Pagination, SearchForm, SearchHandler
|
||||||
from home.tasks import (
|
from home.tasks import (
|
||||||
download_pending,
|
download_pending,
|
||||||
@ -509,6 +509,7 @@ class PostData:
|
|||||||
"db-restore": self.db_restore,
|
"db-restore": self.db_restore,
|
||||||
"fs-rescan": self.fs_rescan,
|
"fs-rescan": self.fs_rescan,
|
||||||
"channel-search": self.channel_search,
|
"channel-search": self.channel_search,
|
||||||
|
"delete-video": self.delete_video,
|
||||||
}
|
}
|
||||||
|
|
||||||
return exec_map[self.to_exec]
|
return exec_map[self.to_exec]
|
||||||
@ -673,3 +674,9 @@ class PostData:
|
|||||||
print("searching for: " + search_query)
|
print("searching for: " + search_query)
|
||||||
search_results = SearchForm().search_channels(search_query)
|
search_results = SearchForm().search_channels(search_query)
|
||||||
return search_results
|
return search_results
|
||||||
|
|
||||||
|
def delete_video(self):
|
||||||
|
"""delete media file, metadata and thumb"""
|
||||||
|
youtube_id = self.exec_val
|
||||||
|
YoutubeVideo(youtube_id).delete_media_file()
|
||||||
|
return {"success": True}
|
||||||
|
Loading…
Reference in New Issue
Block a user