v1.3 - Use port instead of App Name

#17 #2
This commit is contained in:
RandomNinjaAtk 2023-07-14 19:08:32 -04:00 committed by GitHub
parent 22d997bb99
commit 2c93170ab2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,5 +1,5 @@
#!/usr/bin/with-contenv bash
scriptVersion="1.2"
scriptVersion="1.3"
scriptName="QueueCleaner"
log () {
@ -103,9 +103,9 @@ verifyApiAccess () {
do
arrApiTest=""
arrApiVersion=""
if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then
if [ "$arrName" == "8989" ] || [ "$arrPort" == "7878" ]; then
arrApiVersion="v3"
elif [ "$arrName" == "Lidarr" ] || [ "$arrName" == "Readarr" ]; then
elif [ "$arrPort" == "8686" ] || [ "$arrPort" == "8787" ]; then
arrApiVersion="v1"
fi
arrApiTest=$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .instanceName)
@ -118,8 +118,6 @@ verifyApiAccess () {
done
}
arrName="$(cat /config/config.xml | xq | jq -r .Config.InstanceName)"
if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ] || [ "$arrName" == "Lidarr" ] || [ "$arrName" == "Readarr" ]; then
for (( ; ; )); do
let i++
logfileSetup
@ -129,8 +127,5 @@ if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ] || [ "$arrName" == "
log "Sleeping 15m..."
sleep 15m
done
else
log "ERROR :: Arr app not detected, exiting..."
fi
exit