@ -9,65 +9,205 @@ logger = logging.getLogger("Plex Meta Manager")
github_base = " https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Configs/master/ "
github_base = " https://raw.githubusercontent.com/meisnate12/Plex-Meta-Manager-Configs/master/ "
class MetadataFile :
def __init__ ( self , config , library , file_type , path ) :
def get_dict ( attribute , attr_data , check_list = None ) :
if check_list is None :
check_list = [ ]
if attr_data and attribute in attr_data :
if attr_data [ attribute ] :
if isinstance ( attr_data [ attribute ] , dict ) :
new_dict = { }
for _name , _data in attr_data [ attribute ] . items ( ) :
if _name in check_list :
logger . error (
f " Config Warning: Skipping duplicate { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } " )
elif _data is None :
logger . error (
f " Config Warning: { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } has no data " )
elif not isinstance ( _data , dict ) :
logger . error (
f " Config Warning: { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } must be a dictionary " )
else :
new_dict [ str ( _name ) ] = _data
return new_dict
else :
logger . warning ( f " Config Warning: { attribute } must be a dictionary " )
else :
logger . warning ( f " Config Warning: { attribute } attribute is blank " )
return None
class DataFile :
def __init__ ( self , config , file_type , path ) :
self . config = config
self . config = config
self . library = library
self . type = file_type
self . type = file_type
self . path = path
self . path = path
def get_dict ( attribute , attr_data , check_list = None ) :
self . data_type = " "
if check_list is None :
self . templates = { }
check_list = [ ]
if attr_data and attribute in attr_data :
def load_file ( self ) :
if attr_data [ attribute ] :
try :
if isinstance ( attr_data [ attribute ] , dict ) :
if self . type in [ " URL " , " Git " ] :
new_dict = { }
content_path = self . path if self . type == " URL " else f " { github_base } { self . path } .yml "
for _name , _data in attr_data [ attribute ] . items ( ) :
response = self . config . get ( content_path )
if _name in check_list :
if response . status_code > = 400 :
logger . error ( f " Config Warning: Skipping duplicate { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } " )
raise Failed ( f " URL Error: No file found at { content_path } " )
elif _data is None :
content = response . content
logger . error ( f " Config Warning: { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } has no data " )
elif os . path . exists ( os . path . abspath ( self . path ) ) :
elif not isinstance ( _data , dict ) :
content = open ( self . path , encoding = " utf-8 " )
logger . error ( f " Config Warning: { attribute [ : - 1 ] if attribute [ - 1 ] == ' s ' else attribute } : { _name } must be a dictionary " )
else :
else :
raise Failed ( f " File Error: File does not exist { self . path } " )
new_dict [ str ( _name ) ] = _data
data , _ , _ = yaml . util . load_yaml_guess_indent ( content )
return new_dict
return data
else :
except yaml . scanner . ScannerError as ye :
logger . warning ( f " Config Warning: { attribute } must be a dictionary " )
raise Failed ( f " YAML Error: { util . tab_new_lines ( ye ) } " )
except Exception as e :
util . print_stacktrace ( )
raise Failed ( f " YAML Error: { e } " )
def apply_template ( self , name , data , template ) :
if not self . templates :
raise Failed ( f " { self . data_type } Error: No templates found " )
elif not template :
raise Failed ( f " { self . data_type } Error: template attribute is blank " )
else :
logger . debug ( f " Value: { template } " )
for variables in util . get_list ( template , split = False ) :
if not isinstance ( variables , dict ) :
raise Failed ( f " { self . data_type } Error: template attribute is not a dictionary " )
elif " name " not in variables :
raise Failed ( f " { self . data_type } Error: template sub-attribute name is required " )
elif not variables [ " name " ] :
raise Failed ( f " { self . data_type } Error: template sub-attribute name is blank " )
elif variables [ " name " ] not in self . templates :
raise Failed ( f " { self . data_type } Error: template { variables [ ' name ' ] } not found " )
elif not isinstance ( self . templates [ variables [ " name " ] ] , dict ) :
raise Failed ( f " { self . data_type } Error: template { variables [ ' name ' ] } is not a dictionary " )
else :
else :
logger . warning ( f " Config Warning: { attribute } attribute is blank " )
for tm in variables :
return None
if not variables [ tm ] :
raise Failed ( f " { self . data_type } Error: template sub-attribute { tm } is blank " )
if self . data_type == " Collection " and " collection_name " not in variables :
variables [ " collection_name " ] = str ( name )
if self . data_type == " Playlist " and " playlist_name " not in variables :
variables [ " playlist_name " ] = str ( name )
template_name = variables [ " name " ]
template = self . templates [ template_name ]
default = { }
if " default " in template :
if template [ " default " ] :
if isinstance ( template [ " default " ] , dict ) :
for dv in template [ " default " ] :
if template [ " default " ] [ dv ] :
default [ dv ] = template [ " default " ] [ dv ]
else :
raise Failed ( f " { self . data_type } Error: template default sub-attribute { dv } is blank " )
else :
raise Failed ( f " { self . data_type } Error: template sub-attribute default is not a dictionary " )
else :
raise Failed ( f " { self . data_type } Error: template sub-attribute default is blank " )
optional = [ ]
if " optional " in template :
if template [ " optional " ] :
for op in util . get_list ( template [ " optional " ] ) :
if op not in default :
optional . append ( str ( op ) )
else :
logger . warning ( f " Template Warning: variable { op } cannot be optional if it has a default " )
else :
raise Failed ( f " { self . data_type } Error: template sub-attribute optional is blank " )
if " move_collection_prefix " in template :
if template [ " move_collection_prefix " ] :
for op in util . get_list ( template [ " move_collection_prefix " ] ) :
variables [ " collection_name " ] = variables [ " collection_name " ] . replace ( f " { str ( op ) . strip ( ) } " , " " ) + f " , { str ( op ) . strip ( ) } "
else :
raise Failed ( f " { self . data_type } Error: template sub-attribute move_collection_prefix is blank " )
def check_data ( _method , _data ) :
if isinstance ( _data , dict ) :
final_data = { }
for sm , sd in _data . items ( ) :
try :
final_data [ sm ] = check_data ( _method , sd )
except Failed :
continue
elif isinstance ( _data , list ) :
final_data = [ ]
for li in _data :
try :
final_data . append ( check_data ( _method , li ) )
except Failed :
continue
else :
txt = str ( _data )
def scan_text ( og_txt , var , var_value ) :
if og_txt == f " << { var } >> " :
return str ( var_value )
elif f " << { var } >> " in str ( og_txt ) :
return str ( og_txt ) . replace ( f " << { var } >> " , str ( var_value ) )
else :
return og_txt
for option in optional :
if option not in variables and f " << { option } >> " in txt :
raise Failed
for variable , variable_data in variables . items ( ) :
if ( variable == " collection_name " or variable == " playlist_name " ) and _method in [ " radarr_tag " , " item_radarr_tag " , " sonarr_tag " , " item_sonarr_tag " ] :
txt = scan_text ( txt , variable , variable_data . replace ( " , " , " " ) )
elif variable != " name " :
txt = scan_text ( txt , variable , variable_data )
for dm , dd in default . items ( ) :
txt = scan_text ( txt , dm , dd )
if txt in [ " true " , " True " ] :
final_data = True
elif txt in [ " false " , " False " ] :
final_data = False
else :
try :
num_data = float ( txt )
final_data = int ( num_data ) if num_data . is_integer ( ) else num_data
except ( ValueError , TypeError ) :
final_data = txt
return final_data
new_attributes = { }
for method_name , attr_data in template . items ( ) :
if method_name not in data and method_name not in [ " default " , " optional " , " move_collection_prefix " ] :
if attr_data is None :
logger . error ( f " Template Error: template attribute { method_name } is blank " )
continue
try :
new_attributes [ method_name ] = check_data ( method_name , attr_data )
except Failed :
continue
return new_attributes
class MetadataFile ( DataFile ) :
def __init__ ( self , config , library , file_type , path ) :
super ( ) . __init__ ( config , file_type , path )
self . data_type = " Collection "
self . library = library
if file_type == " Data " :
if file_type == " Data " :
self . metadata = None
self . metadata = None
self . collections = get_dict ( " collections " , path , library . collections )
self . collections = get_dict ( " collections " , path , library . collections )
self . templates = get_dict ( " templates " , path )
self . templates = get_dict ( " templates " , path )
else :
else :
try :
logger . info ( " " )
logger . info ( " " )
logger . info ( f " Loading Metadata { file_type } : { path } " )
logger . info ( f " Loading Metadata { file_type } : { path } " )
data = self . load_file ( )
if file_type in [ " URL " , " Git " ] :
self . metadata = get_dict ( " metadata " , data , library . metadatas )
content_path = path if file_type == " URL " else f " { github_base } { path } .yml "
self . templates = get_dict ( " templates " , data )
response = self . config . get ( content_path )
self . collections = get_dict ( " collections " , data , library . collections )
if response . status_code > = 400 :
raise Failed ( f " URL Error: No file found at { content_path } " )
if self . metadata is None and self . collections is None :
content = response . content
raise Failed ( " YAML Error: metadata or collections attribute is required " )
elif os . path . exists ( os . path . abspath ( path ) ) :
logger . info ( f " Metadata File Loaded Successfully " )
content = open ( path , encoding = " utf-8 " )
else :
raise Failed ( f " File Error: File does not exist { path } " )
data , ind , bsi = yaml . util . load_yaml_guess_indent ( content )
self . metadata = get_dict ( " metadata " , data , library . metadatas )
self . templates = get_dict ( " templates " , data )
self . collections = get_dict ( " collections " , data , library . collections )
if self . metadata is None and self . collections is None :
raise Failed ( " YAML Error: metadata or collections attribute is required " )
logger . info ( f " Metadata File Loaded Successfully " )
except yaml . scanner . ScannerError as ye :
raise Failed ( f " YAML Error: { util . tab_new_lines ( ye ) } " )
except Exception as e :
util . print_stacktrace ( )
raise Failed ( f " YAML Error: { e } " )
def get_collections ( self , requested_collections ) :
def get_collections ( self , requested_collections ) :
if requested_collections :
if requested_collections :
@ -403,3 +543,18 @@ class MetadataFile:
logger . error ( " Metadata Error: episodes attribute is blank " )
logger . error ( " Metadata Error: episodes attribute is blank " )
elif " episodes " in methods :
elif " episodes " in methods :
logger . error ( " Metadata Error: episodes attribute only works for show libraries " )
logger . error ( " Metadata Error: episodes attribute only works for show libraries " )
class PlaylistFile ( DataFile ) :
def __init__ ( self , config , file_type , path ) :
super ( ) . __init__ ( config , file_type , path )
self . data_type = " Playlist "
self . playlists = { }
logger . info ( " " )
logger . info ( f " Loading Playlist File { file_type } : { path } " )
data = self . load_file ( )
self . playlists = get_dict ( " playlists " , data , self . config . playlist_names )
self . templates = get_dict ( " templates " , data )
if not self . playlists :
raise Failed ( " YAML Error: playlists attribute is required " )
logger . info ( f " Playlist File Loaded Successfully " )