mirror of
https://github.com/tubearchivist/tubearchivist.git
synced 2024-12-22 18:00:13 +00:00
implement skip_on_empty in update_playlist
This commit is contained in:
parent
97b6d7d606
commit
f874d402b1
@ -287,18 +287,7 @@ class YoutubeChannel(YouTubeItem):
|
|||||||
def _index_single_playlist(playlist):
|
def _index_single_playlist(playlist):
|
||||||
"""add single playlist if needed"""
|
"""add single playlist if needed"""
|
||||||
playlist = YoutubePlaylist(playlist[0])
|
playlist = YoutubePlaylist(playlist[0])
|
||||||
playlist.build_json()
|
playlist.update_playlist(skip_on_empty=True)
|
||||||
if not playlist.json_data:
|
|
||||||
return
|
|
||||||
|
|
||||||
entries = playlist.json_data["playlist_entries"]
|
|
||||||
downloaded = [i for i in entries if i["downloaded"]]
|
|
||||||
if not downloaded:
|
|
||||||
return
|
|
||||||
|
|
||||||
playlist.upload_to_es()
|
|
||||||
playlist.add_vids_to_playlist()
|
|
||||||
playlist.get_playlist_art()
|
|
||||||
|
|
||||||
def get_channel_videos(self):
|
def get_channel_videos(self):
|
||||||
"""get all videos from channel"""
|
"""get all videos from channel"""
|
||||||
|
@ -160,16 +160,24 @@ class YoutubePlaylist(YouTubeItem):
|
|||||||
if status_code == 200:
|
if status_code == 200:
|
||||||
print(f"{self.youtube_id}: removed {video_id} from playlist")
|
print(f"{self.youtube_id}: removed {video_id} from playlist")
|
||||||
|
|
||||||
def update_playlist(self):
|
def update_playlist(self, skip_on_empty=False):
|
||||||
"""update metadata for playlist with data from YouTube"""
|
"""update metadata for playlist with data from YouTube"""
|
||||||
self.build_json(scrape=True)
|
self.build_json(scrape=True)
|
||||||
if not self.json_data:
|
if not self.json_data:
|
||||||
# return false to deactivate
|
# return false to deactivate
|
||||||
return False
|
return False
|
||||||
|
|
||||||
|
if skip_on_empty:
|
||||||
|
has_item_downloaded = next(
|
||||||
|
i["downloaded"] for i in self.json_data["playlist_entries"]
|
||||||
|
)
|
||||||
|
if not has_item_downloaded:
|
||||||
|
return True
|
||||||
|
|
||||||
self.upload_to_es()
|
self.upload_to_es()
|
||||||
self.add_vids_to_playlist()
|
self.add_vids_to_playlist()
|
||||||
self.remove_vids_from_playlist()
|
self.remove_vids_from_playlist()
|
||||||
|
self.get_playlist_art()
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def build_nav(self, youtube_id):
|
def build_nav(self, youtube_id):
|
||||||
|
Loading…
Reference in New Issue
Block a user