|
|
|
@ -1,5 +1,5 @@
|
|
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
scriptVersion="1.0.038"
|
|
|
|
|
scriptVersion="1.0.039"
|
|
|
|
|
|
|
|
|
|
if [ -z "$lidarrUrl" ] || [ -z "$lidarrApiKey" ]; then
|
|
|
|
|
lidarrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)"
|
|
|
|
@ -187,10 +187,19 @@ TidalClientSetup () {
|
|
|
|
|
|
|
|
|
|
TidalClientTest () {
|
|
|
|
|
log "TIDAL :: tidal-dl client setup verification..."
|
|
|
|
|
TidaldlStatusCheck
|
|
|
|
|
tidal-dl -o $downloadPath/incomplete -l "166356219" &>/dev/null
|
|
|
|
|
|
|
|
|
|
downloadCount=$(find $downloadPath/incomplete/ -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" | wc -l)
|
|
|
|
|
i=0
|
|
|
|
|
while [ $i -lt 3 ]; do
|
|
|
|
|
i=$(( $i + 1 ))
|
|
|
|
|
TidaldlStatusCheck
|
|
|
|
|
tidal-dl -q Normal -o "$downloadPath"/incomplete -l "166356219" &>/dev/null
|
|
|
|
|
downloadCount=$(find "$downloadPath"/incomplete -type f -regex ".*/.*\.\(flac\|opus\|m4a\|mp3\)" | wc -l)
|
|
|
|
|
if [ $downloadCount -le 0 ]; then
|
|
|
|
|
continue
|
|
|
|
|
else
|
|
|
|
|
break
|
|
|
|
|
fi
|
|
|
|
|
done
|
|
|
|
|
|
|
|
|
|
if [ $downloadCount -le 0 ]; then
|
|
|
|
|
if [ -f /config/xdg/.tidal-dl.token.json ]; then
|
|
|
|
|
rm /config/xdg/.tidal-dl.token.json
|
|
|
|
@ -198,11 +207,11 @@ TidalClientTest () {
|
|
|
|
|
log "TIDAL :: ERROR :: Download failed"
|
|
|
|
|
log "TIDAL :: ERROR :: You will need to re-authenticate on next script run..."
|
|
|
|
|
log "TIDAL :: ERROR :: Exiting..."
|
|
|
|
|
rm -rf $downloadPath/incomplete/*
|
|
|
|
|
NotifyWebhook "Error" "TIDAL not authenticated but configured"
|
|
|
|
|
rm -rf "$downloadPath"/incomplete/*
|
|
|
|
|
NotifyWebhook "Error" "TIDAL not authenticated but configured"
|
|
|
|
|
exit
|
|
|
|
|
else
|
|
|
|
|
rm -rf $downloadPath/incomplete/*
|
|
|
|
|
rm -rf "$downloadPath"/incomplete/*
|
|
|
|
|
log "TIDAL :: Successfully Verified"
|
|
|
|
|
fi
|
|
|
|
|
}
|
|
|
|
|