1.0.4 - Add all remaining extras to "other" folder

This change was inspired by this PR #54 

All available extras that are not compatible with one of the designated folders are going to be placed in the other Category and appended with the type provided by themoviedb.
main
RandomNinjaAtk 1 year ago committed by GitHub
parent 2710b32e07
commit 16ecd9844b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,5 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
scriptVersion="1.0.3" scriptVersion="1.0.4"
arrEventType="$radarr_eventtype" arrEventType="$radarr_eventtype"
arrItemId=$radarr_movie_id arrItemId=$radarr_movie_id
tmdbApiKey="3b7751e3179f796565d88fdb2fcdf426" tmdbApiKey="3b7751e3179f796565d88fdb2fcdf426"
@ -152,16 +152,7 @@ do
elif [ "$tmdbExtraType" == "Behind the Scenes" ]; then elif [ "$tmdbExtraType" == "Behind the Scenes" ]; then
extraFolderName="behind the scenes" extraFolderName="behind the scenes"
else else
log "$itemTitle :: $i of $tmdbVideosListDataIdsCount :: $tmdbExtraType :: ERROR :: Extra Type Not found" extraFolderName="other"
if [ -f "/config/logs/MovieExtras-InvalidType.txt" ]; then
if cat "/config/logs/MovieExtras-InvalidType.txt" | grep "$tmdbExtraType" | read; then
continue
else
echo "$tmdbExtraType" >> "/config/logs/MovieExtras-InvalidType.txt"
fi
fi
echo "$tmdbExtraType" >> "/config/logs/MovieExtras-InvalidType.txt"
continue
fi fi
if [ "$extrasSingle" == "true" ]; then if [ "$extrasSingle" == "true" ]; then
@ -178,7 +169,11 @@ do
fi fi
else else
finalPath="$itemPath/$extraFolderName" finalPath="$itemPath/$extraFolderName"
finalFileName="$tmdbExtraTitleClean" if [ "$extraFolderName" == "other" ]; then
finalFileName="$tmdbExtraTitleClean ($tmdbExtraType)"
else
finalFileName="$tmdbExtraTitleClean"
fi
fi fi
if [ ! -d "$finalPath" ]; then if [ ! -d "$finalPath" ]; then

Loading…
Cancel
Save