From 5693193b3e06320043a349a44346491e7157ea84 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sat, 18 Mar 2023 11:39:15 -0400 Subject: [PATCH] Use new universal script.... --- root/etc/services.d/extended_recyclarr/run | 116 ++++++++++++++++++--- 1 file changed, 100 insertions(+), 16 deletions(-) diff --git a/root/etc/services.d/extended_recyclarr/run b/root/etc/services.d/extended_recyclarr/run index cbe1aea..86bfcbd 100644 --- a/root/etc/services.d/extended_recyclarr/run +++ b/root/etc/services.d/extended_recyclarr/run @@ -1,19 +1,103 @@ -#!/usr/bin/with-contenv bash -if [ "$enableRecyclarr" != "true" ]; then - echo "Recyclarr disabled, enable by setting parameter: enableRecyclarr=true" - sleep infinity -else - echo "Waiting for Radarr to startup..." - sleep 2m -fi +#!/usr/bin/env bash +scriptVersion="1.0.0" + +######## Settings +scriptInterval="15m" + +######## Package dependencies installation +apk add -U --update --no-cache curl jq python3-dev py3-pip &>/dev/null +pip install --upgrade --no-cache-dir -U yq &>/dev/null + +# Logging output function +log () { + m_time=`date "+%F %T"` + echo $m_time" :: QueueCleaner :: $scriptVersion :: "$1 +} + +QueueCleanerProcess () { + # 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 + + # auto-clean up log file to reduce space usage + if [ -f "/config/logs/QueueCleaner.txt" ]; then + find /config/logs -type f -name "QueueCleaner.txt" -size +1024k -delete + fi + + touch "/config/logs/QueueCleaner.txt" + chmod 666 "/config/logs/QueueCleaner.txt" + exec &> >(tee -a "/config/logs/QueueCleaner.txt") -echo "Starting Script...." -for (( ; ; )); do - let i++ - bash /config/extended/scripts/Recyclarr.bash - echo "Script sleeping for 4 hours..." - sleep 4h -done + if [ "$arrName" == "Sonarr" ]; then + arrQueueData="$(curl -s "$arrUrl/api/v3/queue?page=1&pagesize=200&sortDirection=descending&sortKey=progress&includeUnknownSeriesItems=true&apikey=${arrApiKey}" | jq -r .records[])" + fi + if [ "$arrName" == "Radarr" ]; then + arrQueueData="$(curl -s "$arrUrl/api/v3/queue?page=1&pagesize=200&sortDirection=descending&sortKey=progress&includeUnknownMovieItems=true&apikey=${arrApiKey}" | jq -r .records[])" + fi + + if [ "$arrName" == "Lidarr" ]; then + arrQueueData="$(curl -s "$arrUrl/api/v1/queue?page=1&pagesize=200&sortDirection=descending&sortKey=progress&includeUnknownArtistItems=true&apikey=${arrApiKey}" | jq -r .records[])" + fi + + arrQueueCompletedIds=$(echo "$arrQueueData" | jq -r 'select(.status=="completed") | select(.trackedDownloadStatus=="warning") | .id') + arrQueueIdsCompletedCount=$(echo "$arrQueueData" | jq -r 'select(.status=="completed") | select(.trackedDownloadStatus=="warning") | .id' | wc -l) + arrQueueFailedIds=$(echo "$arrQueueData" | jq -r 'select(.status=="failed") | .id') + arrQueueIdsFailedCount=$(echo "$arrQueueData" | jq -r 'select(.status=="failed") | .id' | wc -l) + arrQueuedIds=$(echo "$arrQueueCompletedIds"; echo "$arrQueueFailedIds") + arrQueueIdsCount=$(( $arrQueueIdsCompletedCount + $arrQueueIdsFailedCount )) + + if [ $arrQueueIdsCount -eq 0 ]; then + log "No items in queue to clean up..." + else + for queueId in $(echo $arrQueuedIds); do + arrQueueItemData="$(echo "$arrQueueData" | jq -r "select(.id==$queueId)")" + arrQueueItemTitle="$(echo "$arrQueueItemData" | jq -r .title)" + if [ "$arrName" == "Sonarr" ]; then + arrEpisodeId="$(echo "$arrQueueItemData" | jq -r .episodeId)" + arrEpisodeData="$(curl -s "$arrUrl/api/v3/episode/$arrEpisodeId?apikey=${arrApiKey}")" + arrEpisodeTitle="$(echo "$arrEpisodeData" | jq -r .title)" + arrEpisodeSeriesId="$(echo "$arrEpisodeData" | jq -r .seriesId)" + if [ "$arrEpisodeTitle" == "TBA" ]; then + log "$queueId ($arrQueueItemTitle) :: ERROR :: Episode title is \"$arrEpisodeTitle\" and prevents auto-import, refreshing series..." + refreshSeries=$(curl -s "$arrUrl/api/v3/command" -X POST -H 'Content-Type: application/json' -H "X-Api-Key: $arrApiKey" --data-raw "{\"name\":\"RefreshSeries\",\"seriesId\":$arrEpisodeSeriesId}") + continue + fi + fi + log "$queueId ($arrQueueItemTitle) :: Removing Failed Queue Item from $arrName..." + deleteItem=$(curl -sX DELETE "$arrUrl/api/v3/queue/$queueId?removeFromClient=true&blocklist=true&apikey=${arrApiKey}") + done + fi +} + +if [ "$enableQueueCleaner" == "false" ]; then + log "ERROR :: Script disabled, exiting..." + exit +fi + +arrName="$(cat /config/config.xml | xq | jq -r .Config.InstanceName)" +if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ] || [ "$arrName" == "Lidarr" ]; then + log "Waiting for $arrName to startup, sleeping for 2 minutes..." + sleep 2m + log "Starting Script...." + for (( ; ; )); do + let i++ + QueueCleanerProcess + log "Processing complete, sleeping for $scriptInterval..." + sleep $scriptInterval + done +else + log "ERROR :: Arr app not detected, exiting..." +fi -exit $? +exit