lidarr-dl/universal/functions.bash

61 lines
1.8 KiB
Bash
Raw Normal View History

2023-07-20 12:26:49 +02:00
log () {
2024-11-26 22:00:50 +01:00
m_time=$(date "+%F %T")
echo "$m_time :: $scriptName :: $1"
2023-07-20 12:26:49 +02:00
}
getArrAppInfo () {
# Get Arr App information
if [ -z "$arrUrl" ] || [ -z "$arrApiKey" ]; then
arrUrlBase="$(cat /config/config.xml | xq | jq -r .Config.UrlBase)"
if [ "$arrUrlBase" == "null" ]; then
arrUrlBase=""
else
arrUrlBase="/$(echo "$arrUrlBase" | sed "s/\///")"
2023-07-20 12:26:49 +02:00
fi
arrName="$(cat /config/config.xml | xq | jq -r .Config.InstanceName)"
arrApiKey="$(cat /config/config.xml | xq | jq -r .Config.ApiKey)"
arrPort="$(cat /config/config.xml | xq | jq -r .Config.Port)"
arrUrl="http://127.0.0.1:${arrPort}${arrUrlBase}"
fi
}
verifyApiAccess () {
until false
do
arrApiTest=""
arrApiVersion=""
if [ -z "$arrApiTest" ]; then
2023-07-20 12:26:49 +02:00
arrApiVersion="v3"
arrApiTest="$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .instanceName)"
fi
if [ -z "$arrApiTest" ]; then
2023-07-20 12:26:49 +02:00
arrApiVersion="v1"
arrApiTest="$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .instanceName)"
2023-07-20 12:26:49 +02:00
fi
2024-11-26 22:00:50 +01:00
if [ -n "$arrApiTest" ]; then
2023-07-20 12:26:49 +02:00
break
else
log "$arrName is not ready, sleeping until valid response..."
sleep 1
fi
done
}
ConfValidationCheck () {
if [ ! -f "/config/extended.conf" ]; then
log "ERROR :: \"extended.conf\" file is missing..."
log "ERROR :: Download the extended.conf config file and place it into \"/config\" folder..."
log "ERROR :: Exiting..."
exit
fi
if [ -z "$enableAutoConfig" ]; then
log "ERROR :: \"extended.conf\" file is unreadable..."
log "ERROR :: Likely caused by editing with a non unix/linux compatible editor, to fix, replace the file with a valid one or correct the line endings..."
log "ERROR :: Exiting..."
exit
fi
}
2023-08-12 16:41:38 +02:00
logfileSetup
ConfValidationCheck