lidarr-dl/radarr/UnmappedFolderCleaner.bash

116 lines
3.1 KiB
Bash
Raw Normal View History

2023-07-15 21:39:43 +02:00
#!/usr/bin/env bash
2023-07-19 16:45:37 +02:00
scriptVersion="1.3"
2023-07-15 21:50:52 +02:00
scriptName="UnmappedFolderCleaner"
2023-07-15 21:39:43 +02:00
log () {
m_time=`date "+%F %T"`
2023-07-15 21:50:52 +02:00
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
}
logfileSetup () {
# auto-clean up log file to reduce space usage
2023-07-15 22:07:23 +02:00
if [ -f "/config/logs/$scriptName.txt" ]; then
find /config/logs -type f -name "$scriptName.txt" -size +1024k -delete
2023-07-15 21:50:52 +02:00
fi
2023-07-15 22:07:23 +02:00
if [ ! -f "/config/logs/$scriptName.txt" ]; then
touch "/config/logs/$scriptName.txt"
chmod 666 "/config/logs/$scriptName.txt"
2023-07-15 21:50:52 +02:00
fi
}
2023-07-19 16:45:37 +02:00
# Create Log, start writing...
logfileSetup
exec &> >(tee -a "/config/logs/$scriptName.txt")
2023-07-15 21:50:52 +02:00
verifyConfig () {
#### Import Settings
source /config/extended.conf
if [ "$enableUnmappedFolderCleaner" != "true" ]; then
log "Script is not enabled, enable by setting enableUnmappedFolderCleaner to \"true\" by modifying the \"/config/extended.conf\" config file..."
log "Sleeping (infinity)"
sleep infinity
fi
if [ -z "$unmappedFolderCleanerScriptInterval" ]; then
unmappedFolderCleanerScriptInterval="1h"
fi
}
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/\///g")"
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
if [ "$arrPort" == "7878" ]; then
recylcarrApp="radarr"
fi
if [ "$arrPort" == "8989" ]; then
recylcarrApp="sonarr"
fi
}
verifyApiAccess () {
until false
do
arrApiTest=""
arrApiVersion=""
if [ "$arrPort" == "8989" ] || [ "$arrPort" == "7878" ]; then
arrApiVersion="v3"
elif [ "$arrPort" == "8686" ] || [ "$arrPort" == "8787" ]; then
arrApiVersion="v1"
fi
arrApiTest=$(curl -s "$arrUrl/api/$arrApiVersion/system/status?apikey=$arrApiKey" | jq -r .instanceName)
if [ "$arrApiTest" == "$arrName" ]; then
break
else
log "$arrName is not ready, sleeping until valid response..."
sleep 1
fi
done
2023-07-15 21:39:43 +02:00
}
2023-07-15 21:50:52 +02:00
UnmappedFolderCleanerProcess () {
log "Finding UnmappedFolders to purge..."
OLDIFS="$IFS"
IFS=$'\n'
unmappedFolders=$(curl -s "$arrUrl/api/v3/rootFolder" -H "X-Api-Key: $arrApiKey" | jq -r ".[].unmappedFolders[].path")
unmappedFoldersCount=$(echo -n "$unmappedFolders" | wc -l)
log "$unmappedFoldersCount Folders Found!"
if [ $unmappedFoldersCount = 0 ]; then
log "No cleanup required, exiting..."
return
2023-07-15 21:50:52 +02:00
fi
for folder in $(echo "$unmappedFolders"); do
log "Removing $folder"
rm -rf "$folder"
done
IFS="$OLDIFS"
}
# Loop Script
for (( ; ; )); do
let i++
logfileSetup
log "Script starting..."
2023-07-15 21:50:52 +02:00
verifyConfig
getArrAppInfo
verifyApiAccess
UnmappedFolderCleanerProcess
2023-07-15 21:51:19 +02:00
log "Script sleeping for $unmappedFolderCleanerScriptInterval..."
sleep $unmappedFolderCleanerScriptInterval
2023-07-15 21:39:43 +02:00
done
exit