1 contributor
#!/bin/bash
DB=/var/lib/navidrome/navidrome.db
medias=/music
no_cover_flag=.no_cover
cover_img=cover
mbz_agent='getCover/0.1 (https://seb.lautre.net/git/seb/scripts)'
test -e $0.conf && source $0.conf
coverartarchive_api="https://coverartarchive.org/release"
coverart=$(mktemp --dry-run /dev/shm/XXXXXXXX)
sizes=(small 250 500 large 1200)
OK () { echo -e "\e[3;32m ${1:-OK} \e[0;m"; return 0; }
WARNING () { echo -e "\e[3;33m ${1:-alerte} \e[0;m"; return 1; }
ERROR () { echo -e "\e[3;31m ${1:-erreur} \e[0;m"; return 1; }
if ! test -d $medias; then
ERROR "$medias n'est pas un répertoire"
exit 1
fi
sql_request () {
sqlite3 $DB <<< "$1"
}
covered () {
case "${forcing_level:-none}" in
retry)
if test -w "${album#*:}/$no_cover_flag"; then
rm -f "${album#*:}/$no_cover_flag" 2>/dev/null
return 1
else
return 0
fi
;;
force)
rm -f "${album#*:}/$no_cover_flag" 2>/dev/null
return 1
;;
none)
if compgen -G "${album#*:}/$cover_img.*" > /dev/null; then
return 0
elif test -e "${album#*:}/$no_cover_flag"; then
return 0
else
return 1
fi
;;
esac
}
get_image () {
if curl -Ls $1 > /dev/shm/$2; then
mime_type=$(file -bn --mime-type /dev/shm/$2)
if [[ ${mime_type:-erreur} =~ ^image/ ]]; then
mv -f /dev/shm/$2 ${album#*:}/$cover_img.${2##*.} \
|| ERROR "échec en écriture"
else
WARNING "${album%%:*} type $mime_type"
fi
else
ERROR "${album%%:*} échec du téléchargement"
fi
}
if test -n "$spotifyID" -a -n "$spotifySecret"; then
spotify_access_token=$(curl --silent \
--request POST \
--url https://accounts.spotify.com/api/token \
--header 'Content-Type: application/x-www-form-urlencoded' \
--header "Authorization: Basic $(base64 -w0 <<< $spotifyID:$spotifySecret | sed 's/K$/=/')" \
-d 'grant_type=client_credentials' | jq -r '.access_token // empty')
if test -z "$spotify_access_token"; then
ERROR "problème d'identifant Spotify"
echo ID: $spotifyID
exit 1
fi
fi
if declare -f pre_get_cover > /dev/null; then
pre_get_cover
fi
IFS=$'\n'
for arg in $@; do
if [[ $arg =~ ^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}:/ ]]; then
from_CLI=1
albums[${#albums[@]}]="${arg%/}"
elif [[ $arg =~ ^/ ]]; then
from_CLI=1
albums[${#albums[@]}]=":${arg%/}"
elif [[ $arg =~ ^(force|retry)$ ]]; then
forcing_level=$arg
else
WARNING "incohérence sur $arg"
fi
done
if test -n "$from_CLI"; then
forcing_level=force
fi
if test ${#albums[@]} -eq 0; then
albums=($(sql_request 'select printf("%s:'${medias%/}'/%s/%s", mbz_album_id, artist, name)
from album where cover_art_path = ""
and name != "[Unknown Album]"'))
fi
get_from_mbz () {
curl -Ls $coverartarchive_api/${album%%:*} > $coverart
if test $(file -bn --mime-type $coverart) = application/json; then
unset img
for size in ${sizes[@]}; do
img=$(jq -r '.images | .[] | select(.front == true) | .thumbnails | ."'$size'"?' $coverart 2>/dev/null)
test -n "$img" && break
done
if test -n "$img"; then
get_image "$img" "${album%%:*}.${img##*.}"
fi
else
WARNING "${album%%:*} réponse inattendue de musicbrainz"
fi
}
get_from_spotify () {
eval "$(sql_request 'select printf("artist=""%s"";album_name=""%s""", artist, name)
from album
where artist || "/" || name = "'${album#*:$medias/}'"')"
if test -n "$album_name" -a -n "$artist"; then
curl --request GET --silent \
--header "Authorization: Bearer $spotify_access_token" \
--header 'Content-Type: application/json' \
--url "https://api.spotify.com/v1/search?type=album&query=album:${album_name// /%20}${artist:+%20artist:${artist// /%20}}" > $coverart
found_albums=$(jq -r '.albums .total // empty' $coverart)
if test ${found_albums:-0} -gt 0; then
img=$(jq --raw-output --arg artist "${artist^^}" --arg album "${album_name^^}" "
.albums .items
| .[]
| select(.name | ascii_upcase == \$album)
| select(.artists | .[].name | ascii_upcase == \$artist)
| .images
| .[]
| select(.height == 300)
| .url // empty" $coverart)
if test -n "$img"; then
get_image "$img" "${img##*/}.jpg"
else
WARNING "pas d'image trouvée sur spotify (artist: $artist; album: $album_name)"
fi
else
WARNING "aucun album trouvé sur spotify"
fi
else
ERROR "album: $album_name; artist: $artist"
fi
}
for album in ${albums[@]}; do
if ! test -d "${album#*:}"; then
if test -n "$from_CLI"; then
WARNING "${album#*:}: chemin inconnu"
fi
continue
fi
if ! covered; then
echo -n "${album#*:} "
if test -n "${album%%:*}"; then
if get_from_mbz; then
OK
elif test -n "$spotify_access_token"; then
if get_from_spotify; then
OK
else
touch "${album#*:}/$no_cover_flag"
fi
fi
elif test -n "$spotify_access_token"; then
if get_from_spotify; then
OK
else
touch "${album#*:}/$no_cover_flag"
fi
fi
fi
done
rm -f $coverart
if declare -f post_get_cover > /dev/null; then
post_get_cover
fi