|
|
@ -684,59 +684,6 @@ class MetadataFile(DataFile):
|
|
|
|
for mapping_name, meta in self.metadata.items():
|
|
|
|
for mapping_name, meta in self.metadata.items():
|
|
|
|
methods = {mm.lower(): mm for mm in meta}
|
|
|
|
methods = {mm.lower(): mm for mm in meta}
|
|
|
|
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def add_edit(name, current_item, group=None, alias=None, key=None, value=None, var_type="str"):
|
|
|
|
|
|
|
|
nonlocal updated
|
|
|
|
|
|
|
|
if value or name in alias:
|
|
|
|
|
|
|
|
if value or group[alias[name]]:
|
|
|
|
|
|
|
|
if key is None: key = name
|
|
|
|
|
|
|
|
if value is None: value = group[alias[name]]
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
current = str(getattr(current_item, key, ""))
|
|
|
|
|
|
|
|
final_value = None
|
|
|
|
|
|
|
|
if var_type == "date":
|
|
|
|
|
|
|
|
final_value = util.validate_date(value, name, return_as="%Y-%m-%d")
|
|
|
|
|
|
|
|
current = current[:-9]
|
|
|
|
|
|
|
|
elif var_type == "float":
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
value = float(str(value))
|
|
|
|
|
|
|
|
if 0 <= value <= 10:
|
|
|
|
|
|
|
|
final_value = value
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
if final_value is None:
|
|
|
|
|
|
|
|
raise Failed(f"Metadata Error: {name} attribute must be a number between 0 and 10")
|
|
|
|
|
|
|
|
elif var_type == "int":
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
final_value = int(str(value))
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
if final_value is None:
|
|
|
|
|
|
|
|
raise Failed(f"Metadata Error: {name} attribute must be an integer")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
final_value = value
|
|
|
|
|
|
|
|
if current != str(final_value):
|
|
|
|
|
|
|
|
if key == "title":
|
|
|
|
|
|
|
|
current_item.editTitle(final_value)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
current_item.editField(key, final_value)
|
|
|
|
|
|
|
|
logger.info(f"Detail: {name} updated to {final_value}")
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
except Failed as ee:
|
|
|
|
|
|
|
|
logger.error(ee)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {name} attribute is blank")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def finish_edit(current_item, description):
|
|
|
|
|
|
|
|
nonlocal updated
|
|
|
|
|
|
|
|
if updated:
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
current_item.saveEdits()
|
|
|
|
|
|
|
|
logger.info(f"{description} Details Update Successful")
|
|
|
|
|
|
|
|
except BadRequest:
|
|
|
|
|
|
|
|
logger.error(f"{description} Details Update Failed")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logger.info("")
|
|
|
|
logger.info("")
|
|
|
|
if (isinstance(mapping_name, int) or mapping_name.startswith("tt")) and not self.library.is_music:
|
|
|
|
if (isinstance(mapping_name, int) or mapping_name.startswith("tt")) and not self.library.is_music:
|
|
|
|
if isinstance(mapping_name, int):
|
|
|
|
if isinstance(mapping_name, int):
|
|
|
@ -745,16 +692,20 @@ class MetadataFile(DataFile):
|
|
|
|
id_type = "IMDb"
|
|
|
|
id_type = "IMDb"
|
|
|
|
logger.separator(f"{id_type} ID: {mapping_name} Metadata", space=False, border=False)
|
|
|
|
logger.separator(f"{id_type} ID: {mapping_name} Metadata", space=False, border=False)
|
|
|
|
logger.info("")
|
|
|
|
logger.info("")
|
|
|
|
|
|
|
|
item = []
|
|
|
|
if self.library.is_movie and mapping_name in self.library.movie_map:
|
|
|
|
if self.library.is_movie and mapping_name in self.library.movie_map:
|
|
|
|
item = self.library.fetchItem(self.library.movie_map[mapping_name][0])
|
|
|
|
for item_id in self.library.movie_map[mapping_name]:
|
|
|
|
|
|
|
|
item.append(self.library.fetchItem(item_id))
|
|
|
|
elif self.library.is_show and mapping_name in self.library.show_map:
|
|
|
|
elif self.library.is_show and mapping_name in self.library.show_map:
|
|
|
|
item = self.library.fetchItem(self.library.show_map[mapping_name][0])
|
|
|
|
for item_id in self.library.show_map[mapping_name]:
|
|
|
|
|
|
|
|
item.append(self.library.fetchItem(item_id))
|
|
|
|
elif mapping_name in self.library.imdb_map:
|
|
|
|
elif mapping_name in self.library.imdb_map:
|
|
|
|
item = self.library.fetchItem(self.library.imdb_map[mapping_name][0])
|
|
|
|
for item_id in self.library.imdb_map[mapping_name]:
|
|
|
|
|
|
|
|
item.append(self.library.fetchItem(item_id))
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
logger.error(f"Metadata Error: {id_type} ID not mapped")
|
|
|
|
logger.error(f"Metadata Error: {id_type} ID not mapped")
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
title = item.title
|
|
|
|
title = None
|
|
|
|
if "title" in methods:
|
|
|
|
if "title" in methods:
|
|
|
|
if meta[methods["title"]] is None:
|
|
|
|
if meta[methods["title"]] is None:
|
|
|
|
logger.error("Metadata Error: title attribute is blank")
|
|
|
|
logger.error("Metadata Error: title attribute is blank")
|
|
|
@ -795,339 +746,396 @@ class MetadataFile(DataFile):
|
|
|
|
item = self.library.search_item(alt_title)
|
|
|
|
item = self.library.search_item(alt_title)
|
|
|
|
|
|
|
|
|
|
|
|
if item is None:
|
|
|
|
if item is None:
|
|
|
|
logger.error(f"Plex Error: Item {mapping_name} not found")
|
|
|
|
logger.error(f"Skipping {mapping_name}: Item {mapping_name} not found")
|
|
|
|
logger.error(f"Skipping {mapping_name}")
|
|
|
|
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not isinstance(item, list):
|
|
|
|
|
|
|
|
item = [item]
|
|
|
|
|
|
|
|
for i in item:
|
|
|
|
|
|
|
|
self.update_metadata_item(i, title, mapping_name, meta, methods)
|
|
|
|
|
|
|
|
|
|
|
|
logger.separator(f"{title} Metadata", space=False, border=False)
|
|
|
|
def update_metadata_item(self, item, title, mapping_name, meta, methods):
|
|
|
|
|
|
|
|
|
|
|
|
tmdb_item = None
|
|
|
|
updated = False
|
|
|
|
tmdb_is_movie = None
|
|
|
|
|
|
|
|
if not self.library.is_music and ("tmdb_show" in methods or "tmdb_id" in methods) and "tmdb_movie" in methods:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: Cannot use tmdb_movie and tmdb_show when editing the same metadata item")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if not self.library.is_music and "tmdb_show" in methods or "tmdb_id" in methods or "tmdb_movie" in methods:
|
|
|
|
def add_edit(name, current_item, group=None, alias=None, key=None, value=None, var_type="str"):
|
|
|
|
try:
|
|
|
|
nonlocal updated
|
|
|
|
if "tmdb_show" in methods or "tmdb_id" in methods:
|
|
|
|
if value or name in alias:
|
|
|
|
data = meta[methods["tmdb_show" if "tmdb_show" in methods else "tmdb_id"]]
|
|
|
|
if value or group[alias[name]]:
|
|
|
|
if data is None:
|
|
|
|
if key is None: key = name
|
|
|
|
logger.error("Metadata Error: tmdb_show attribute is blank")
|
|
|
|
if value is None: value = group[alias[name]]
|
|
|
|
else:
|
|
|
|
try:
|
|
|
|
tmdb_is_movie = False
|
|
|
|
current = str(getattr(current_item, key, ""))
|
|
|
|
tmdb_item = self.config.TMDb.get_show(util.regex_first_int(data, "Show"))
|
|
|
|
final_value = None
|
|
|
|
elif "tmdb_movie" in methods:
|
|
|
|
if var_type == "date":
|
|
|
|
if meta[methods["tmdb_movie"]] is None:
|
|
|
|
final_value = util.validate_date(value, name, return_as="%Y-%m-%d")
|
|
|
|
logger.error("Metadata Error: tmdb_movie attribute is blank")
|
|
|
|
current = current[:-9]
|
|
|
|
|
|
|
|
elif var_type == "float":
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
value = float(str(value))
|
|
|
|
|
|
|
|
if 0 <= value <= 10:
|
|
|
|
|
|
|
|
final_value = value
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
if final_value is None:
|
|
|
|
|
|
|
|
raise Failed(f"Metadata Error: {name} attribute must be a number between 0 and 10")
|
|
|
|
|
|
|
|
elif var_type == "int":
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
final_value = int(str(value))
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
if final_value is None:
|
|
|
|
|
|
|
|
raise Failed(f"Metadata Error: {name} attribute must be an integer")
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
tmdb_is_movie = True
|
|
|
|
final_value = value
|
|
|
|
tmdb_item = self.config.TMDb.get_movie(util.regex_first_int(meta[methods["tmdb_movie"]], "Movie"))
|
|
|
|
if current != str(final_value):
|
|
|
|
except Failed as e:
|
|
|
|
if key == "title":
|
|
|
|
logger.error(e)
|
|
|
|
current_item.editTitle(final_value)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
current_item.editField(key, final_value)
|
|
|
|
|
|
|
|
logger.info(f"Detail: {name} updated to {final_value}")
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
except Failed as ee:
|
|
|
|
|
|
|
|
logger.error(ee)
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {name} attribute is blank")
|
|
|
|
|
|
|
|
|
|
|
|
originally_available = None
|
|
|
|
def finish_edit(current_item, description):
|
|
|
|
original_title = None
|
|
|
|
nonlocal updated
|
|
|
|
rating = None
|
|
|
|
if updated:
|
|
|
|
studio = None
|
|
|
|
try:
|
|
|
|
tagline = None
|
|
|
|
current_item.saveEdits()
|
|
|
|
summary = None
|
|
|
|
logger.info(f"{description} Details Update Successful")
|
|
|
|
genres = []
|
|
|
|
except BadRequest:
|
|
|
|
if tmdb_item:
|
|
|
|
logger.error(f"{description} Details Update Failed")
|
|
|
|
originally_available = datetime.strftime(tmdb_item.release_date if tmdb_is_movie else tmdb_item.first_air_date, "%Y-%m-%d")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if tmdb_item.original_title != tmdb_item.title:
|
|
|
|
tmdb_item = None
|
|
|
|
original_title = tmdb_item.original_title
|
|
|
|
tmdb_is_movie = None
|
|
|
|
rating = tmdb_item.vote_average
|
|
|
|
if not self.library.is_music and ("tmdb_show" in methods or "tmdb_id" in methods) and "tmdb_movie" in methods:
|
|
|
|
studio = tmdb_item.studio
|
|
|
|
logger.error("Metadata Error: Cannot use tmdb_movie and tmdb_show when editing the same metadata item")
|
|
|
|
tagline = tmdb_item.tagline if len(tmdb_item.tagline) > 0 else None
|
|
|
|
|
|
|
|
summary = tmdb_item.overview
|
|
|
|
|
|
|
|
genres = tmdb_item.genres
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
item.batchEdits()
|
|
|
|
if not self.library.is_music and "tmdb_show" in methods or "tmdb_id" in methods or "tmdb_movie" in methods:
|
|
|
|
add_edit("title", item, meta, methods, value=title)
|
|
|
|
try:
|
|
|
|
add_edit("sort_title", item, meta, methods, key="titleSort")
|
|
|
|
if "tmdb_show" in methods or "tmdb_id" in methods:
|
|
|
|
add_edit("user_rating", item, meta, methods, key="userRating", var_type="float")
|
|
|
|
data = meta[methods["tmdb_show" if "tmdb_show" in methods else "tmdb_id"]]
|
|
|
|
if not self.library.is_music:
|
|
|
|
if data is None:
|
|
|
|
add_edit("originally_available", item, meta, methods, key="originallyAvailableAt", value=originally_available, var_type="date")
|
|
|
|
logger.error("Metadata Error: tmdb_show attribute is blank")
|
|
|
|
add_edit("critic_rating", item, meta, methods, value=rating, key="rating", var_type="float")
|
|
|
|
else:
|
|
|
|
add_edit("audience_rating", item, meta, methods, key="audienceRating", var_type="float")
|
|
|
|
tmdb_is_movie = False
|
|
|
|
add_edit("content_rating", item, meta, methods, key="contentRating")
|
|
|
|
tmdb_item = self.config.TMDb.get_show(util.regex_first_int(data, "Show"))
|
|
|
|
add_edit("original_title", item, meta, methods, key="originalTitle", value=original_title)
|
|
|
|
elif "tmdb_movie" in methods:
|
|
|
|
add_edit("studio", item, meta, methods, value=studio)
|
|
|
|
if meta[methods["tmdb_movie"]] is None:
|
|
|
|
add_edit("tagline", item, meta, methods, value=tagline)
|
|
|
|
logger.error("Metadata Error: tmdb_movie attribute is blank")
|
|
|
|
add_edit("summary", item, meta, methods, value=summary)
|
|
|
|
|
|
|
|
for tag_edit in util.tags_to_edit[self.library.type]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, item, meta, methods, extra=genres if tag_edit == "genre" else None):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(item, f"{self.library.type}: {mapping_name}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if self.library.type in util.advance_tags_to_edit:
|
|
|
|
|
|
|
|
advance_edits = {}
|
|
|
|
|
|
|
|
prefs = [p.id for p in item.preferences()]
|
|
|
|
|
|
|
|
for advance_edit in util.advance_tags_to_edit[self.library.type]:
|
|
|
|
|
|
|
|
if advance_edit in methods:
|
|
|
|
|
|
|
|
if advance_edit in ["metadata_language", "use_original_title"] and self.library.agent not in plex.new_plex_agents:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {advance_edit} attribute only works for with the New Plex Movie Agent and New Plex TV Agent")
|
|
|
|
|
|
|
|
elif meta[methods[advance_edit]]:
|
|
|
|
|
|
|
|
ad_key, options = plex.item_advance_keys[f"item_{advance_edit}"]
|
|
|
|
|
|
|
|
method_data = str(meta[methods[advance_edit]]).lower()
|
|
|
|
|
|
|
|
if method_data not in options:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {meta[methods[advance_edit]]} {advance_edit} attribute invalid")
|
|
|
|
|
|
|
|
elif ad_key in prefs and getattr(item, ad_key) != options[method_data]:
|
|
|
|
|
|
|
|
advance_edits[ad_key] = options[method_data]
|
|
|
|
|
|
|
|
logger.info(f"Detail: {advance_edit} updated to {method_data}")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {advance_edit} attribute is blank")
|
|
|
|
|
|
|
|
if advance_edits:
|
|
|
|
|
|
|
|
if self.library.edit_advance(item, advance_edits):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
logger.info(f"{mapping_name} Advanced Details Update Successful")
|
|
|
|
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
logger.error(f"{mapping_name} Advanced Details Update Failed")
|
|
|
|
tmdb_is_movie = True
|
|
|
|
|
|
|
|
tmdb_item = self.config.TMDb.get_movie(util.regex_first_int(meta[methods["tmdb_movie"]], "Movie"))
|
|
|
|
|
|
|
|
except Failed as e:
|
|
|
|
|
|
|
|
logger.error(e)
|
|
|
|
|
|
|
|
|
|
|
|
logger.info(f"{self.library.type}: {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
originally_available = None
|
|
|
|
|
|
|
|
original_title = None
|
|
|
|
|
|
|
|
rating = None
|
|
|
|
|
|
|
|
studio = None
|
|
|
|
|
|
|
|
tagline = None
|
|
|
|
|
|
|
|
summary = None
|
|
|
|
|
|
|
|
genres = []
|
|
|
|
|
|
|
|
if tmdb_item:
|
|
|
|
|
|
|
|
originally_available = datetime.strftime(tmdb_item.release_date if tmdb_is_movie else tmdb_item.first_air_date, "%Y-%m-%d")
|
|
|
|
|
|
|
|
|
|
|
|
self.set_images(item, meta, methods)
|
|
|
|
if tmdb_item.original_title != tmdb_item.title:
|
|
|
|
|
|
|
|
original_title = tmdb_item.original_title
|
|
|
|
|
|
|
|
rating = tmdb_item.vote_average
|
|
|
|
|
|
|
|
studio = tmdb_item.studio
|
|
|
|
|
|
|
|
tagline = tmdb_item.tagline if len(tmdb_item.tagline) > 0 else None
|
|
|
|
|
|
|
|
summary = tmdb_item.overview
|
|
|
|
|
|
|
|
genres = tmdb_item.genres
|
|
|
|
|
|
|
|
|
|
|
|
if "seasons" in methods and self.library.is_show:
|
|
|
|
item.batchEdits()
|
|
|
|
if not meta[methods["seasons"]]:
|
|
|
|
if title:
|
|
|
|
logger.error("Metadata Error: seasons attribute is blank")
|
|
|
|
add_edit("title", item, meta, methods, value=title)
|
|
|
|
elif not isinstance(meta[methods["seasons"]], dict):
|
|
|
|
add_edit("sort_title", item, meta, methods, key="titleSort")
|
|
|
|
logger.error("Metadata Error: seasons attribute must be a dictionary")
|
|
|
|
add_edit("user_rating", item, meta, methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
if not self.library.is_music:
|
|
|
|
|
|
|
|
add_edit("originally_available", item, meta, methods, key="originallyAvailableAt", value=originally_available, var_type="date")
|
|
|
|
|
|
|
|
add_edit("critic_rating", item, meta, methods, value=rating, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("audience_rating", item, meta, methods, key="audienceRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("content_rating", item, meta, methods, key="contentRating")
|
|
|
|
|
|
|
|
add_edit("original_title", item, meta, methods, key="originalTitle", value=original_title)
|
|
|
|
|
|
|
|
add_edit("studio", item, meta, methods, value=studio)
|
|
|
|
|
|
|
|
add_edit("tagline", item, meta, methods, value=tagline)
|
|
|
|
|
|
|
|
add_edit("summary", item, meta, methods, value=summary)
|
|
|
|
|
|
|
|
for tag_edit in util.tags_to_edit[self.library.type]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, item, meta, methods, extra=genres if tag_edit == "genre" else None):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(item, f"{self.library.type}: {mapping_name}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if self.library.type in util.advance_tags_to_edit:
|
|
|
|
|
|
|
|
advance_edits = {}
|
|
|
|
|
|
|
|
prefs = [p.id for p in item.preferences()]
|
|
|
|
|
|
|
|
for advance_edit in util.advance_tags_to_edit[self.library.type]:
|
|
|
|
|
|
|
|
if advance_edit in methods:
|
|
|
|
|
|
|
|
if advance_edit in ["metadata_language", "use_original_title"] and self.library.agent not in plex.new_plex_agents:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {advance_edit} attribute only works for with the New Plex Movie Agent and New Plex TV Agent")
|
|
|
|
|
|
|
|
elif meta[methods[advance_edit]]:
|
|
|
|
|
|
|
|
ad_key, options = plex.item_advance_keys[f"item_{advance_edit}"]
|
|
|
|
|
|
|
|
method_data = str(meta[methods[advance_edit]]).lower()
|
|
|
|
|
|
|
|
if method_data not in options:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {meta[methods[advance_edit]]} {advance_edit} attribute invalid")
|
|
|
|
|
|
|
|
elif ad_key in prefs and getattr(item, ad_key) != options[method_data]:
|
|
|
|
|
|
|
|
advance_edits[ad_key] = options[method_data]
|
|
|
|
|
|
|
|
logger.info(f"Detail: {advance_edit} updated to {method_data}")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: {advance_edit} attribute is blank")
|
|
|
|
|
|
|
|
if advance_edits:
|
|
|
|
|
|
|
|
if self.library.edit_advance(item, advance_edits):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
logger.info(f"{mapping_name} Advanced Details Update Successful")
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
seasons = {}
|
|
|
|
logger.error(f"{mapping_name} Advanced Details Update Failed")
|
|
|
|
for season in item.seasons():
|
|
|
|
|
|
|
|
seasons[season.title] = season
|
|
|
|
|
|
|
|
seasons[int(season.index)] = season
|
|
|
|
|
|
|
|
for season_id, season_dict in meta[methods["seasons"]].items():
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
logger.info("")
|
|
|
|
|
|
|
|
logger.info(f"Updating season {season_id} of {mapping_name}...")
|
|
|
|
|
|
|
|
if season_id in seasons:
|
|
|
|
|
|
|
|
season = seasons[season_id]
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: Season: {season_id} not found")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
season_methods = {sm.lower(): sm for sm in season_dict}
|
|
|
|
|
|
|
|
season.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", season, season_dict, season_methods)
|
|
|
|
|
|
|
|
add_edit("summary", season, season_dict, season_methods)
|
|
|
|
|
|
|
|
add_edit("user_rating", season, season_dict, season_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
if self.edit_tags("label", season, season_dict, season_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(season, f"Season: {season_id}")
|
|
|
|
|
|
|
|
self.set_images(season, season_dict, season_methods)
|
|
|
|
|
|
|
|
logger.info(f"Season {season_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "episodes" in season_methods and self.library.is_show:
|
|
|
|
logger.info(f"{self.library.type}: {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
if not season_dict[season_methods["episodes"]]:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: episodes attribute is blank")
|
|
|
|
|
|
|
|
elif not isinstance(season_dict[season_methods["episodes"]], dict):
|
|
|
|
|
|
|
|
logger.error("Metadata Error: episodes attribute must be a dictionary")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
episodes = {}
|
|
|
|
|
|
|
|
for episode in season.episodes():
|
|
|
|
|
|
|
|
episodes[episode.title] = episode
|
|
|
|
|
|
|
|
episodes[int(episode.index)] = episode
|
|
|
|
|
|
|
|
for episode_str, episode_dict in season_dict[season_methods["episodes"]].items():
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
logger.info("")
|
|
|
|
|
|
|
|
logger.info(f"Updating episode {episode_str} in {season_id} of {mapping_name}...")
|
|
|
|
|
|
|
|
if episode_str in episodes:
|
|
|
|
|
|
|
|
episode = episodes[episode_str]
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: Episode {episode_str} in Season {season_id} not found")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
episode_methods = {em.lower(): em for em in episode_dict}
|
|
|
|
|
|
|
|
episode.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
add_edit("sort_title", episode, episode_dict, episode_methods, key="titleSort")
|
|
|
|
|
|
|
|
add_edit("critic_rating", episode, episode_dict, episode_methods, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("audience_rating", episode, episode_dict, episode_methods, key="audienceRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("user_rating", episode, episode_dict, episode_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("originally_available", episode, episode_dict, episode_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
|
|
|
|
add_edit("summary", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["director", "writer", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, episode, episode_dict, episode_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(episode, f"Episode: {episode_str} in Season: {season_id}")
|
|
|
|
|
|
|
|
self.set_images(episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
logger.info(f"Episode {episode_str} in Season {season_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "episodes" in methods and self.library.is_show:
|
|
|
|
self.set_images(item, meta, methods)
|
|
|
|
if not meta[methods["episodes"]]:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: episodes attribute is blank")
|
|
|
|
|
|
|
|
elif not isinstance(meta[methods["episodes"]], dict):
|
|
|
|
|
|
|
|
logger.error("Metadata Error: episodes attribute must be a dictionary")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
for episode_str, episode_dict in meta[methods["episodes"]].items():
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
logger.info("")
|
|
|
|
|
|
|
|
match = re.search("[Ss]\\d+[Ee]\\d+", episode_str)
|
|
|
|
|
|
|
|
if not match:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: episode {episode_str} invalid must have S##E## format")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
output = match.group(0)[1:].split("E" if "E" in match.group(0) else "e")
|
|
|
|
|
|
|
|
season_id = int(output[0])
|
|
|
|
|
|
|
|
episode_id = int(output[1])
|
|
|
|
|
|
|
|
logger.info(f"Updating episode S{season_id}E{episode_id} of {mapping_name}...")
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
episode = item.episode(season=season_id, episode=episode_id)
|
|
|
|
|
|
|
|
except NotFound:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: episode {episode_id} of season {season_id} not found")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
episode_methods = {em.lower(): em for em in episode_dict}
|
|
|
|
|
|
|
|
episode.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
add_edit("sort_title", episode, episode_dict, episode_methods, key="titleSort")
|
|
|
|
|
|
|
|
add_edit("critic_rating", episode, episode_dict, episode_methods, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("audience_rating", episode, episode_dict, episode_methods, key="audienceRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("user_rating", episode, episode_dict, episode_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("originally_available", episode, episode_dict, episode_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
|
|
|
|
add_edit("summary", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["director", "writer", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, episode, episode_dict, episode_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(episode, f"Episode: {episode_str} in Season: {season_id}")
|
|
|
|
|
|
|
|
self.set_images(episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
logger.info(f"Episode S{season_id}E{episode_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "albums" in methods and self.library.is_music:
|
|
|
|
if "seasons" in methods and self.library.is_show:
|
|
|
|
if not meta[methods["albums"]]:
|
|
|
|
if not meta[methods["seasons"]]:
|
|
|
|
logger.error("Metadata Error: albums attribute is blank")
|
|
|
|
logger.error("Metadata Error: seasons attribute is blank")
|
|
|
|
elif not isinstance(meta[methods["albums"]], dict):
|
|
|
|
elif not isinstance(meta[methods["seasons"]], dict):
|
|
|
|
logger.error("Metadata Error: albums attribute must be a dictionary")
|
|
|
|
logger.error("Metadata Error: seasons attribute must be a dictionary")
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
albums = {album.title: album for album in item.albums()}
|
|
|
|
seasons = {}
|
|
|
|
for album_name, album_dict in meta[methods["albums"]].items():
|
|
|
|
for season in item.seasons():
|
|
|
|
updated = False
|
|
|
|
seasons[season.title] = season
|
|
|
|
title = None
|
|
|
|
seasons[int(season.index)] = season
|
|
|
|
album_methods = {am.lower(): am for am in album_dict}
|
|
|
|
for season_id, season_dict in meta[methods["seasons"]].items():
|
|
|
|
logger.info("")
|
|
|
|
updated = False
|
|
|
|
logger.info(f"Updating album {album_name} of {mapping_name}...")
|
|
|
|
logger.info("")
|
|
|
|
if album_name in albums:
|
|
|
|
logger.info(f"Updating season {season_id} of {mapping_name}...")
|
|
|
|
album = albums[album_name]
|
|
|
|
if season_id in seasons:
|
|
|
|
elif "alt_title" in album_methods and album_dict[album_methods["alt_title"]] and album_dict[album_methods["alt_title"]] in albums:
|
|
|
|
season = seasons[season_id]
|
|
|
|
album = albums[album_dict[album_methods["alt_title"]]]
|
|
|
|
else:
|
|
|
|
title = album_name
|
|
|
|
logger.error(f"Metadata Error: Season: {season_id} not found")
|
|
|
|
else:
|
|
|
|
continue
|
|
|
|
logger.error(f"Metadata Error: Album: {album_name} not found")
|
|
|
|
season_methods = {sm.lower(): sm for sm in season_dict}
|
|
|
|
continue
|
|
|
|
season.batchEdits()
|
|
|
|
if not title:
|
|
|
|
add_edit("title", season, season_dict, season_methods)
|
|
|
|
title = album.title
|
|
|
|
add_edit("summary", season, season_dict, season_methods)
|
|
|
|
album.batchEdits()
|
|
|
|
add_edit("user_rating", season, season_dict, season_methods, key="userRating", var_type="float")
|
|
|
|
add_edit("title", album, album_dict, album_methods, value=title)
|
|
|
|
if self.edit_tags("label", season, season_dict, season_methods):
|
|
|
|
add_edit("sort_title", album, album_dict, album_methods, key="titleSort")
|
|
|
|
updated = True
|
|
|
|
add_edit("critic_rating", album, album_dict, album_methods, key="rating", var_type="float")
|
|
|
|
finish_edit(season, f"Season: {season_id}")
|
|
|
|
add_edit("user_rating", album, album_dict, album_methods, key="userRating", var_type="float")
|
|
|
|
self.set_images(season, season_dict, season_methods)
|
|
|
|
add_edit("originally_available", album, album_dict, album_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
logger.info(f"Season {season_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
add_edit("record_label", album, album_dict, album_methods, key="studio")
|
|
|
|
|
|
|
|
add_edit("summary", album, album_dict, album_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["genre", "style", "mood", "collection", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, album, album_dict, album_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(album, f"Album: {title}")
|
|
|
|
|
|
|
|
self.set_images(album, album_dict, album_methods)
|
|
|
|
|
|
|
|
logger.info(f"Album: {title} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "tracks" in album_methods:
|
|
|
|
if "episodes" in season_methods and self.library.is_show:
|
|
|
|
if not album_dict[album_methods["tracks"]]:
|
|
|
|
if not season_dict[season_methods["episodes"]]:
|
|
|
|
logger.error("Metadata Error: tracks attribute is blank")
|
|
|
|
logger.error("Metadata Error: episodes attribute is blank")
|
|
|
|
elif not isinstance(album_dict[album_methods["tracks"]], dict):
|
|
|
|
elif not isinstance(season_dict[season_methods["episodes"]], dict):
|
|
|
|
logger.error("Metadata Error: tracks attribute must be a dictionary")
|
|
|
|
logger.error("Metadata Error: episodes attribute must be a dictionary")
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
tracks = {}
|
|
|
|
episodes = {}
|
|
|
|
for track in album.tracks():
|
|
|
|
for episode in season.episodes():
|
|
|
|
tracks[track.title] = track
|
|
|
|
episodes[episode.title] = episode
|
|
|
|
tracks[int(track.index)] = track
|
|
|
|
episodes[int(episode.index)] = episode
|
|
|
|
for track_num, track_dict in album_dict[album_methods["tracks"]].items():
|
|
|
|
for episode_str, episode_dict in season_dict[season_methods["episodes"]].items():
|
|
|
|
updated = False
|
|
|
|
updated = False
|
|
|
|
title = None
|
|
|
|
logger.info("")
|
|
|
|
track_methods = {tm.lower(): tm for tm in track_dict}
|
|
|
|
logger.info(f"Updating episode {episode_str} in {season_id} of {mapping_name}...")
|
|
|
|
logger.info("")
|
|
|
|
if episode_str in episodes:
|
|
|
|
logger.info(f"Updating track {track_num} on {album_name} of {mapping_name}...")
|
|
|
|
episode = episodes[episode_str]
|
|
|
|
if track_num in tracks:
|
|
|
|
else:
|
|
|
|
track = tracks[track_num]
|
|
|
|
logger.error(f"Metadata Error: Episode {episode_str} in Season {season_id} not found")
|
|
|
|
elif "alt_title" in track_methods and track_dict[track_methods["alt_title"]] and track_dict[track_methods["alt_title"]] in tracks:
|
|
|
|
continue
|
|
|
|
track = tracks[track_dict[track_methods["alt_title"]]]
|
|
|
|
episode_methods = {em.lower(): em for em in episode_dict}
|
|
|
|
title = track_num
|
|
|
|
episode.batchEdits()
|
|
|
|
else:
|
|
|
|
add_edit("title", episode, episode_dict, episode_methods)
|
|
|
|
logger.error(f"Metadata Error: Track: {track_num} not found")
|
|
|
|
add_edit("sort_title", episode, episode_dict, episode_methods, key="titleSort")
|
|
|
|
continue
|
|
|
|
add_edit("critic_rating", episode, episode_dict, episode_methods, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("audience_rating", episode, episode_dict, episode_methods, key="audienceRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("user_rating", episode, episode_dict, episode_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("originally_available", episode, episode_dict, episode_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
|
|
|
|
add_edit("summary", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["director", "writer", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, episode, episode_dict, episode_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(episode, f"Episode: {episode_str} in Season: {season_id}")
|
|
|
|
|
|
|
|
self.set_images(episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
logger.info(f"Episode {episode_str} in Season {season_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
if not title:
|
|
|
|
if "episodes" in methods and self.library.is_show:
|
|
|
|
title = track.title
|
|
|
|
if not meta[methods["episodes"]]:
|
|
|
|
track.batchEdits()
|
|
|
|
logger.error("Metadata Error: episodes attribute is blank")
|
|
|
|
add_edit("title", track, track_dict, track_methods, value=title)
|
|
|
|
elif not isinstance(meta[methods["episodes"]], dict):
|
|
|
|
add_edit("user_rating", track, track_dict, track_methods, key="userRating", var_type="float")
|
|
|
|
logger.error("Metadata Error: episodes attribute must be a dictionary")
|
|
|
|
add_edit("track", track, track_dict, track_methods, key="index", var_type="int")
|
|
|
|
else:
|
|
|
|
add_edit("disc", track, track_dict, track_methods, key="parentIndex", var_type="int")
|
|
|
|
for episode_str, episode_dict in meta[methods["episodes"]].items():
|
|
|
|
add_edit("original_artist", track, track_dict, track_methods, key="originalTitle")
|
|
|
|
updated = False
|
|
|
|
for tag_edit in ["mood", "collection", "label"]:
|
|
|
|
logger.info("")
|
|
|
|
if self.edit_tags(tag_edit, track, track_dict, track_methods):
|
|
|
|
match = re.search("[Ss]\\d+[Ee]\\d+", episode_str)
|
|
|
|
updated = True
|
|
|
|
if not match:
|
|
|
|
finish_edit(track, f"Track: {title}")
|
|
|
|
logger.error(f"Metadata Error: episode {episode_str} invalid must have S##E## format")
|
|
|
|
logger.info(f"Track: {track_num} on Album: {title} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
continue
|
|
|
|
|
|
|
|
output = match.group(0)[1:].split("E" if "E" in match.group(0) else "e")
|
|
|
|
|
|
|
|
season_id = int(output[0])
|
|
|
|
|
|
|
|
episode_id = int(output[1])
|
|
|
|
|
|
|
|
logger.info(f"Updating episode S{season_id}E{episode_id} of {mapping_name}...")
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
episode = item.episode(season=season_id, episode=episode_id)
|
|
|
|
|
|
|
|
except NotFound:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: episode {episode_id} of season {season_id} not found")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
episode_methods = {em.lower(): em for em in episode_dict}
|
|
|
|
|
|
|
|
episode.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
add_edit("sort_title", episode, episode_dict, episode_methods, key="titleSort")
|
|
|
|
|
|
|
|
add_edit("critic_rating", episode, episode_dict, episode_methods, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("audience_rating", episode, episode_dict, episode_methods, key="audienceRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("user_rating", episode, episode_dict, episode_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("originally_available", episode, episode_dict, episode_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
|
|
|
|
add_edit("summary", episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["director", "writer", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, episode, episode_dict, episode_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(episode, f"Episode: {episode_str} in Season: {season_id}")
|
|
|
|
|
|
|
|
self.set_images(episode, episode_dict, episode_methods)
|
|
|
|
|
|
|
|
logger.info(f"Episode S{season_id}E{episode_id} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
if "f1_season" in methods and self.library.is_show:
|
|
|
|
if "albums" in methods and self.library.is_music:
|
|
|
|
f1_season = None
|
|
|
|
if not meta[methods["albums"]]:
|
|
|
|
current_year = datetime.now().year
|
|
|
|
logger.error("Metadata Error: albums attribute is blank")
|
|
|
|
if meta[methods["f1_season"]] is None:
|
|
|
|
elif not isinstance(meta[methods["albums"]], dict):
|
|
|
|
raise Failed("Metadata Error: f1_season attribute is blank")
|
|
|
|
logger.error("Metadata Error: albums attribute must be a dictionary")
|
|
|
|
try:
|
|
|
|
else:
|
|
|
|
year_value = int(str(meta[methods["f1_season"]]))
|
|
|
|
albums = {album.title: album for album in item.albums()}
|
|
|
|
if 1950 <= year_value <= current_year:
|
|
|
|
for album_name, album_dict in meta[methods["albums"]].items():
|
|
|
|
f1_season = year_value
|
|
|
|
updated = False
|
|
|
|
except ValueError:
|
|
|
|
title = None
|
|
|
|
pass
|
|
|
|
album_methods = {am.lower(): am for am in album_dict}
|
|
|
|
if f1_season is None:
|
|
|
|
logger.info("")
|
|
|
|
raise Failed(f"Metadata Error: f1_season attribute must be an integer between 1950 and {current_year}")
|
|
|
|
logger.info(f"Updating album {album_name} of {mapping_name}...")
|
|
|
|
round_prefix = False
|
|
|
|
if album_name in albums:
|
|
|
|
if "round_prefix" in methods:
|
|
|
|
album = albums[album_name]
|
|
|
|
if meta[methods["round_prefix"]] is True:
|
|
|
|
elif "alt_title" in album_methods and album_dict[album_methods["alt_title"]] and album_dict[album_methods["alt_title"]] in albums:
|
|
|
|
round_prefix = True
|
|
|
|
album = albums[album_dict[album_methods["alt_title"]]]
|
|
|
|
else:
|
|
|
|
title = album_name
|
|
|
|
logger.error("Metadata Error: round_prefix must be true to do anything")
|
|
|
|
|
|
|
|
shorten_gp = False
|
|
|
|
|
|
|
|
if "shorten_gp" in methods:
|
|
|
|
|
|
|
|
if meta[methods["shorten_gp"]] is True:
|
|
|
|
|
|
|
|
shorten_gp = True
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: shorten_gp must be true to do anything")
|
|
|
|
|
|
|
|
f1_language = None
|
|
|
|
|
|
|
|
if "f1_language" in methods:
|
|
|
|
|
|
|
|
if str(meta[methods["f1_language"]]).lower() in ergast.translations:
|
|
|
|
|
|
|
|
f1_language = str(meta[methods["f1_language"]]).lower()
|
|
|
|
|
|
|
|
else:
|
|
|
|
else:
|
|
|
|
logger.error(f"Metadata Error: f1_language must be a language code PMM has a translation for. Options: {ergast.translations}")
|
|
|
|
logger.error(f"Metadata Error: Album: {album_name} not found")
|
|
|
|
logger.info(f"Setting Metadata of {item.title} to F1 Season {f1_season}")
|
|
|
|
|
|
|
|
races = self.config.Ergast.get_races(f1_season, f1_language)
|
|
|
|
|
|
|
|
race_lookup = {r.round: r for r in races}
|
|
|
|
|
|
|
|
for season in item.seasons():
|
|
|
|
|
|
|
|
if not season.seasonNumber:
|
|
|
|
|
|
|
|
continue
|
|
|
|
continue
|
|
|
|
sprint_weekend = False
|
|
|
|
if not title:
|
|
|
|
|
|
|
|
title = album.title
|
|
|
|
|
|
|
|
album.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", album, album_dict, album_methods, value=title)
|
|
|
|
|
|
|
|
add_edit("sort_title", album, album_dict, album_methods, key="titleSort")
|
|
|
|
|
|
|
|
add_edit("critic_rating", album, album_dict, album_methods, key="rating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("user_rating", album, album_dict, album_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("originally_available", album, album_dict, album_methods, key="originallyAvailableAt", var_type="date")
|
|
|
|
|
|
|
|
add_edit("record_label", album, album_dict, album_methods, key="studio")
|
|
|
|
|
|
|
|
add_edit("summary", album, album_dict, album_methods)
|
|
|
|
|
|
|
|
for tag_edit in ["genre", "style", "mood", "collection", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, album, album_dict, album_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(album, f"Album: {title}")
|
|
|
|
|
|
|
|
self.set_images(album, album_dict, album_methods)
|
|
|
|
|
|
|
|
logger.info(f"Album: {title} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "tracks" in album_methods:
|
|
|
|
|
|
|
|
if not album_dict[album_methods["tracks"]]:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: tracks attribute is blank")
|
|
|
|
|
|
|
|
elif not isinstance(album_dict[album_methods["tracks"]], dict):
|
|
|
|
|
|
|
|
logger.error("Metadata Error: tracks attribute must be a dictionary")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
tracks = {}
|
|
|
|
|
|
|
|
for track in album.tracks():
|
|
|
|
|
|
|
|
tracks[track.title] = track
|
|
|
|
|
|
|
|
tracks[int(track.index)] = track
|
|
|
|
|
|
|
|
for track_num, track_dict in album_dict[album_methods["tracks"]].items():
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
title = None
|
|
|
|
|
|
|
|
track_methods = {tm.lower(): tm for tm in track_dict}
|
|
|
|
|
|
|
|
logger.info("")
|
|
|
|
|
|
|
|
logger.info(f"Updating track {track_num} on {album_name} of {mapping_name}...")
|
|
|
|
|
|
|
|
if track_num in tracks:
|
|
|
|
|
|
|
|
track = tracks[track_num]
|
|
|
|
|
|
|
|
elif "alt_title" in track_methods and track_dict[track_methods["alt_title"]] and track_dict[track_methods["alt_title"]] in tracks:
|
|
|
|
|
|
|
|
track = tracks[track_dict[track_methods["alt_title"]]]
|
|
|
|
|
|
|
|
title = track_num
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: Track: {track_num} not found")
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if not title:
|
|
|
|
|
|
|
|
title = track.title
|
|
|
|
|
|
|
|
track.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", track, track_dict, track_methods, value=title)
|
|
|
|
|
|
|
|
add_edit("user_rating", track, track_dict, track_methods, key="userRating", var_type="float")
|
|
|
|
|
|
|
|
add_edit("track", track, track_dict, track_methods, key="index", var_type="int")
|
|
|
|
|
|
|
|
add_edit("disc", track, track_dict, track_methods, key="parentIndex", var_type="int")
|
|
|
|
|
|
|
|
add_edit("original_artist", track, track_dict, track_methods, key="originalTitle")
|
|
|
|
|
|
|
|
for tag_edit in ["mood", "collection", "label"]:
|
|
|
|
|
|
|
|
if self.edit_tags(tag_edit, track, track_dict, track_methods):
|
|
|
|
|
|
|
|
updated = True
|
|
|
|
|
|
|
|
finish_edit(track, f"Track: {title}")
|
|
|
|
|
|
|
|
logger.info(f"Track: {track_num} on Album: {title} of {mapping_name} Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if "f1_season" in methods and self.library.is_show:
|
|
|
|
|
|
|
|
f1_season = None
|
|
|
|
|
|
|
|
current_year = datetime.now().year
|
|
|
|
|
|
|
|
if meta[methods["f1_season"]] is None:
|
|
|
|
|
|
|
|
raise Failed("Metadata Error: f1_season attribute is blank")
|
|
|
|
|
|
|
|
try:
|
|
|
|
|
|
|
|
year_value = int(str(meta[methods["f1_season"]]))
|
|
|
|
|
|
|
|
if 1950 <= year_value <= current_year:
|
|
|
|
|
|
|
|
f1_season = year_value
|
|
|
|
|
|
|
|
except ValueError:
|
|
|
|
|
|
|
|
pass
|
|
|
|
|
|
|
|
if f1_season is None:
|
|
|
|
|
|
|
|
raise Failed(f"Metadata Error: f1_season attribute must be an integer between 1950 and {current_year}")
|
|
|
|
|
|
|
|
round_prefix = False
|
|
|
|
|
|
|
|
if "round_prefix" in methods:
|
|
|
|
|
|
|
|
if meta[methods["round_prefix"]] is True:
|
|
|
|
|
|
|
|
round_prefix = True
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: round_prefix must be true to do anything")
|
|
|
|
|
|
|
|
shorten_gp = False
|
|
|
|
|
|
|
|
if "shorten_gp" in methods:
|
|
|
|
|
|
|
|
if meta[methods["shorten_gp"]] is True:
|
|
|
|
|
|
|
|
shorten_gp = True
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error("Metadata Error: shorten_gp must be true to do anything")
|
|
|
|
|
|
|
|
f1_language = None
|
|
|
|
|
|
|
|
if "f1_language" in methods:
|
|
|
|
|
|
|
|
if str(meta[methods["f1_language"]]).lower() in ergast.translations:
|
|
|
|
|
|
|
|
f1_language = str(meta[methods["f1_language"]]).lower()
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.error(f"Metadata Error: f1_language must be a language code PMM has a translation for. Options: {ergast.translations}")
|
|
|
|
|
|
|
|
logger.info(f"Setting Metadata of {item.title} to F1 Season {f1_season}")
|
|
|
|
|
|
|
|
races = self.config.Ergast.get_races(f1_season, f1_language)
|
|
|
|
|
|
|
|
race_lookup = {r.round: r for r in races}
|
|
|
|
|
|
|
|
for season in item.seasons():
|
|
|
|
|
|
|
|
if not season.seasonNumber:
|
|
|
|
|
|
|
|
continue
|
|
|
|
|
|
|
|
sprint_weekend = False
|
|
|
|
|
|
|
|
for episode in season.episodes():
|
|
|
|
|
|
|
|
if "sprint" in episode.locations[0].lower():
|
|
|
|
|
|
|
|
sprint_weekend = True
|
|
|
|
|
|
|
|
break
|
|
|
|
|
|
|
|
if season.seasonNumber in race_lookup:
|
|
|
|
|
|
|
|
race = race_lookup[season.seasonNumber]
|
|
|
|
|
|
|
|
title = race.format_name(round_prefix, shorten_gp)
|
|
|
|
|
|
|
|
updated = False
|
|
|
|
|
|
|
|
season.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", season, value=title)
|
|
|
|
|
|
|
|
finish_edit(season, f"Season: {title}")
|
|
|
|
|
|
|
|
logger.info(f"Race {season.seasonNumber} of F1 Season {f1_season}: Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
for episode in season.episodes():
|
|
|
|
for episode in season.episodes():
|
|
|
|
if "sprint" in episode.locations[0].lower():
|
|
|
|
if len(episode.locations) > 0:
|
|
|
|
sprint_weekend = True
|
|
|
|
ep_title, session_date = race.session_info(episode.locations[0], sprint_weekend)
|
|
|
|
break
|
|
|
|
episode.batchEdits()
|
|
|
|
if season.seasonNumber in race_lookup:
|
|
|
|
add_edit("title", episode, value=ep_title)
|
|
|
|
race = race_lookup[season.seasonNumber]
|
|
|
|
add_edit("originally_available", episode, key="originallyAvailableAt", var_type="date", value=session_date)
|
|
|
|
title = race.format_name(round_prefix, shorten_gp)
|
|
|
|
finish_edit(episode, f"Season: {season.seasonNumber} Episode: {episode.episodeNumber}")
|
|
|
|
updated = False
|
|
|
|
logger.info(f"Session {episode.title}: Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
season.batchEdits()
|
|
|
|
else:
|
|
|
|
add_edit("title", season, value=title)
|
|
|
|
logger.warning(f"Ergast Error: No Round: {season.seasonNumber} for Season {f1_season}")
|
|
|
|
finish_edit(season, f"Season: {title}")
|
|
|
|
|
|
|
|
logger.info(f"Race {season.seasonNumber} of F1 Season {f1_season}: Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
for episode in season.episodes():
|
|
|
|
|
|
|
|
if len(episode.locations) > 0:
|
|
|
|
|
|
|
|
ep_title, session_date = race.session_info(episode.locations[0], sprint_weekend)
|
|
|
|
|
|
|
|
episode.batchEdits()
|
|
|
|
|
|
|
|
add_edit("title", episode, value=ep_title)
|
|
|
|
|
|
|
|
add_edit("originally_available", episode, key="originallyAvailableAt", var_type="date", value=session_date)
|
|
|
|
|
|
|
|
finish_edit(episode, f"Season: {season.seasonNumber} Episode: {episode.episodeNumber}")
|
|
|
|
|
|
|
|
logger.info(f"Session {episode.title}: Details Update {'Complete' if updated else 'Not Needed'}")
|
|
|
|
|
|
|
|
else:
|
|
|
|
|
|
|
|
logger.warning(f"Ergast Error: No Round: {season.seasonNumber} for Season {f1_season}")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class PlaylistFile(DataFile):
|
|
|
|
class PlaylistFile(DataFile):
|
|
|
@ -1144,6 +1152,7 @@ class PlaylistFile(DataFile):
|
|
|
|
raise Failed("YAML Error: playlists attribute is required")
|
|
|
|
raise Failed("YAML Error: playlists attribute is required")
|
|
|
|
logger.info(f"Playlist File Loaded Successfully")
|
|
|
|
logger.info(f"Playlist File Loaded Successfully")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class OverlayFile(DataFile):
|
|
|
|
class OverlayFile(DataFile):
|
|
|
|
def __init__(self, config, library, file_type, path, temp_vars, asset_directory):
|
|
|
|
def __init__(self, config, library, file_type, path, temp_vars, asset_directory):
|
|
|
|
super().__init__(config, file_type, path, temp_vars, asset_directory)
|
|
|
|
super().__init__(config, file_type, path, temp_vars, asset_directory)
|
|
|
|