|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
scriptVersion="1.0.301"
|
|
|
|
|
scriptVersion="1.0.302"
|
|
|
|
|
if [ -z "$lidarrUrl" ] || [ -z "$lidarrApiKey" ]; then
|
|
|
|
|
lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)"
|
|
|
|
|
if [ "$lidarrUrlBase" == "null" ]; then
|
|
|
|
@ -1835,34 +1835,6 @@ LidarrTaskStatusCheck () {
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
LidarrMissingAlbumSearch () {
|
|
|
|
|
|
|
|
|
|
log "Begin searching for missing artist albums via Lidarr Indexers..."
|
|
|
|
|
lidarrArtistIds=$(echo $lidarrMissingAlbumArtistsData | jq -r .id)
|
|
|
|
|
lidarrArtistIdsCount=$(echo "$lidarrArtistIds" | wc -l)
|
|
|
|
|
processCount=0
|
|
|
|
|
for lidarrArtistId in $(echo $lidarrArtistIds); do
|
|
|
|
|
processCount=$(( $processCount + 1))
|
|
|
|
|
lidarrArtistData=$(echo $lidarrMissingAlbumArtistsData | jq -r "select(.id==$lidarrArtistId)")
|
|
|
|
|
lidarrArtistName=$(echo $lidarrArtistData | jq -r .artistName)
|
|
|
|
|
lidarrArtistMusicbrainzId=$(echo $lidarrArtistData | jq -r .foreignArtistId)
|
|
|
|
|
if [ -d /config/extended/logs/searched/lidarr/artist ]; then
|
|
|
|
|
if [ -f /config/extended/logs/searched/lidarr/artist/$lidarrArtistMusicbrainzId ]; then
|
|
|
|
|
log "$processCount of $lidarrArtistIdsCount :: Previously Notified Lidarr to search for \"$lidarrArtistName\" :: Skipping..."
|
|
|
|
|
continue
|
|
|
|
|
fi
|
|
|
|
|
fi
|
|
|
|
|
log "$processCount of $lidarrArtistIdsCount :: Notified Lidarr to search for \"$lidarrArtistName\""
|
|
|
|
|
startLidarrArtistSearch=$(curl -s "$lidarrUrl/api/v1/command" -X POST -H "Content-Type: application/json" -H "X-Api-Key: $lidarrApiKey" --data-raw "{\"name\":\"ArtistSearch\",\"artistId\":$lidarrArtistId}")
|
|
|
|
|
if [ ! -d /config/extended/logs/searched/lidarr/artist ]; then
|
|
|
|
|
mkdir -p /config/extended/logs/searched/lidarr/artist
|
|
|
|
|
chmod -R 777 /config/extended/logs/searched/lidarr/artist
|
|
|
|
|
fi
|
|
|
|
|
touch /config/extended/logs/searched/lidarr/artist/$lidarrArtistMusicbrainzId
|
|
|
|
|
chmod 777 /config/extended/logs/searched/lidarr/artist/$lidarrArtistMusicbrainzId
|
|
|
|
|
done
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function levenshtein {
|
|
|
|
|
if [ "$1" == "$2" ]; then
|
|
|
|
|
echo 0
|
|
|
|
@ -1937,22 +1909,6 @@ if [ "$dlClientSource" == "tidal" ] || [ "$dlClientSource" == "both" ]; then
|
|
|
|
|
TidalClientSetup
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$addDeezerTopArtists" == "true" ]; then
|
|
|
|
|
AddDeezerTopArtists "$topLimit"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$addDeezerTopAlbumArtists" == "true" ]; then
|
|
|
|
|
AddDeezerTopAlbumArtists "$topLimit"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$addDeezerTopTrackArtists" == "true" ]; then
|
|
|
|
|
AddDeezerTopTrackArtists "$topLimit"
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$addRelatedArtists" == "true" ]; then
|
|
|
|
|
AddRelatedArtists
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
# Get artist list for LidarrMissingAlbumSearch process, to prevent searching for artists that will not be processed by the script
|
|
|
|
|
lidarrMissingAlbumArtistsData=$(wget --timeout=0 -q -O - "$lidarrUrl/api/v1/artist?apikey=$lidarrApiKey" | jq -r .[])
|
|
|
|
|
|
|
|
|
@ -1964,9 +1920,5 @@ else
|
|
|
|
|
log "ERROR :: dlClientSource set as: \"$dlClientSource\""
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
if [ "$addDeezerTopArtists" == "true" ] || [ "$addDeezerTopAlbumArtists" == "true" ] || [ "$addDeezerTopTrackArtists" == "true" ] || [ "$addRelatedArtists" == "true" ]; then
|
|
|
|
|
LidarrMissingAlbumSearch
|
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
log "Script end..."
|
|
|
|
|
exit
|
|
|
|
|