From e352b30709d513bb57d5756a0a7752d85189a932 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Tue, 6 Sep 2022 14:35:04 -0400 Subject: [PATCH] Create AutoExtras.bash --- root/scripts/AutoExtras.bash | 48 ++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 root/scripts/AutoExtras.bash diff --git a/root/scripts/AutoExtras.bash b/root/scripts/AutoExtras.bash new file mode 100644 index 0000000..85ef37b --- /dev/null +++ b/root/scripts/AutoExtras.bash @@ -0,0 +1,48 @@ +#!/usr/bin/env bash +scriptVersion="1.0.000" + +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 + 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 + +log () { + m_time=`date "+%F %T"` + echo $m_time" :: AutoExtras :: "$1 +} + +# auto-clean up log file to reduce space usage +if [ -f "/config/logs/AutoExtras.txt" ]; then + find /config/logs -type f -name "AutoExtras.txt" -size +1024k -delete +fi + +exec &>> "/config/logs/AutoExtras.txt" +chmod 666 "/config/logs/AutoExtras.txt" + +sonarrSeriesList=$(curl -s --header "X-Api-Key:"${arrApiKey} --request GET "$arrUrl/api/v3/series") +sonarrSeriesTotal=$(echo "${sonarrSeriesList}" | jq -r '.[].id' | wc -l) +sonarrSeriesIds=$(echo "${sonarrSeriesList}" | jq -r '.[].id') + +loopCount=0 +for id in $(echo $sonarrSeriesIds); do + loopCount=$(( $loopCount + 1 )) + arrSeriesData="$(echo "$sonarrSeriesList" | jq -r ".[] | select(.id==$id)")" + arrSeriesPath="$(echo "$arrSeriesData" | jq -r ".path")" + arrSeriesTitle="$(echo "$arrSeriesData" | jq -r ".title")" + if [ -d "$arrSeriesPath" ]; then + log "$loopCount of $sonarrSeriesTotal :: $id :: $arrSeriesTitle :: Processing with Extras.bash" + bash /config/extended/scripts/Extras.bash "$id" + else + log "$loopCount of $sonarrSeriesTotal :: $id :: $arrSeriesTitle :: Series folder does not exist, skipping..." + continue + fi +done + +exit