From eede88e8cc366ff7ebfd88f4aeb4bad58f88eb79 Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sun, 9 Jul 2023 12:01:03 -0400 Subject: [PATCH] Create AutoConfig.service --- radarr/AutoConfig.service | 135 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 radarr/AutoConfig.service diff --git a/radarr/AutoConfig.service b/radarr/AutoConfig.service new file mode 100644 index 0000000..d0cb24f --- /dev/null +++ b/radarr/AutoConfig.service @@ -0,0 +1,135 @@ +#!/usr/bin/env bash +scriptVersion="1.0" + +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 +} + +verifyApiAccess () { + until false + do + arrApiTest="" + arrApiVersion="" + if [ "$arrName" == "Sonarr" ] || [ "$arrName" == "Radarr" ]; then + arrApiVersion="v3" + elif [ "$arrName" == "Lidarr" ] || [ "$arrName" == "Readarr" ]; 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 +} + +getArrAppInfo +verifyApiAccess + +# auto-clean up log file to reduce space usage +if [ -f "/config/logs/AutoConfig.txt" ]; then + find /config/logs -type f -name "AutoConfig.txt" -size +1024k -delete +fi + +if [ ! -f "/config/logs/AutoConfig.txt" ]; then + touch "/config/logs/AutoConfig.txt" + chmod 777 "/config/logs/AutoConfig.txt" +fi +exec &> >(tee -a "/config/logs/AutoConfig.txt") + +log () { + m_time=`date "+%F %T"` + echo $m_time" :: AutoConfig :: $scriptVersion :: "$1 +} + +if [ -f /config/extended/naming.json ]; then + log "Using custom Naming (/config/extended/naming.json)..." + namingJson=$(cat /config/extended/naming.json) +else + log "Getting Trash Guide Recommended Naming..." + namingJson=$(curl -s "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/radarr/naming/radarr-naming.json") +fi + +trashStandardMovieFormat=$(echo "$namingJson" | jq -r '.file.default') +trashMovieFolderFormat=$(echo "$namingJson" | jq -r '.folder.default') + +log "Updating Radarr Moving Naming..." +updateArr=$(curl -s "$arrUrl/api/v3/config/naming" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw "{ + \"renameMovies\":true, + \"replaceIllegalCharacters\":true, + \"colonReplacementFormat\":\"delete\", + \"standardMovieFormat\":\"$trashStandardMovieFormat\", + \"movieFolderFormat\":\"$trashMovieFolderFormat\", + \"includeQuality\":false, + \"replaceSpaces\":false, + \"id\":1 + }") + +log "Complete" + +log "Updating Radarr Media Management..." +updateArr=$(curl -s "$arrUrl/api/v3/config/mediamanagement" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw '{ + "autoUnmonitorPreviouslyDownloadedMovies":false, + "recycleBin":"", + "recycleBinCleanupDays":7, + "downloadPropersAndRepacks":"doNotPrefer", + "createEmptyMovieFolders":false, + "deleteEmptyFolders":true, + "fileDate":"none", + "rescanAfterRefresh":"always", + "autoRenameFolders":false, + "pathsDefaultStatic":false, + "setPermissionsLinux":false, + "chmodFolder":"777", + "chownGroup":"", + "skipFreeSpaceCheckWhenImporting":false, + "minimumFreeSpaceWhenImporting":100, + "copyUsingHardlinks":true, + "importExtraFiles":true, + "extraFileExtensions":"srt", + "enableMediaInfo":true, + "id":1 + }') +log "Complete" + +log "Updating Radarr Medata Settings..." +updateArr=$(curl -s "$arrUrl/api/v3/metadata/1?" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw '{ + "enable":true,"name":"Kodi (XBMC) / Emby","fields":[{"name":"movieMetadata","value":true},{"name":"movieMetadataURL","value":false},{"name":"movieMetadataLanguage","value":1},{"name":"movieImages","value":true},{"name":"useMovieNfo","value":true}],"implementationName":"Kodi (XBMC) / Emby","implementation":"XbmcMetadata","configContract":"XbmcMetadataSettings","infoLink":"https://wiki.servarr.com/radarr/supported#xbmcmetadata","tags":[],"id":1}') +log "Complete" + +log "Configuring Radarr Custom Scripts" +if curl -s "$arrUrl/api/v3/notification" -H "X-Api-Key: ${arrApiKey}" | jq -r .[].name | grep "PlexNotify.bash" | read; then + log "PlexNotify.bash already added to Radarr custom scripts" +else + log "Adding PlexNotify.bash to Radarr custom scripts" + updateArr=$(curl -s "$arrUrl/api/v3/filesystem?path=%2Fconfig%2Fextended%2Fscripts%2FPlexNotify.bash&allowFoldersWithoutTrailingSlashes=true&includeFiles=true" -H "X-Api-Key: ${arrApiKey}") + updateArr=$(curl -s "$arrUrl/api/v3/notification?" -X POST -H "Content-Type: application/json" -H "X-Api-Key: ${arrApiKey}" --data-raw '{"onGrab":false,"onDownload":true,"onUpgrade":true,"onRename":true,"onMovieAdded":false,"onMovieDelete":false,"onMovieFileDelete":true,"onMovieFileDeleteForUpgrade":true,"onHealthIssue":false,"onApplicationUpdate":false,"supportsOnGrab":true,"supportsOnDownload":true,"supportsOnUpgrade":true,"supportsOnRename":true,"supportsOnMovieAdded":true,"supportsOnMovieDelete":true,"supportsOnMovieFileDelete":true,"supportsOnMovieFileDeleteForUpgrade":true,"supportsOnHealthIssue":true,"supportsOnApplicationUpdate":true,"includeHealthWarnings":false,"name":"PlexNotify.bash","fields":[{"name":"path","value":"/config/extended/PlexNotify.bash"},{"name":"arguments"}],"implementationName":"Custom Script","implementation":"CustomScript","configContract":"CustomScriptSettings","infoLink":"https://wiki.servarr.com/radarr/supported#customscript","message":{"message":"Testing will execute the script with the EventType set to Test, ensure your script handles this correctly","type":"warning"},"tags":[]}') + log "Complete" +fi + +if curl -s "$arrUrl/api/v3/notification" -H "X-Api-Key: ${arrApiKey}" | jq -r .[].name | grep "Extras.bash" | read; then + log "Extras.bash already added to Radarr custom scripts" +else + log "Adding Extras.bash to Radarr custom scripts"ogs + updateArr=$(curl -s "$arrUrl/api/v3/filesystem?path=%2Fconfig%2Fextended%2Fscripts%2FExtras.bash&allowFoldersWithoutTrailingSlashes=true&includeFiles=true" -H "X-Api-Key: ${arrApiKey}") + updateArr=$(curl -s "$arrUrl/api/v3/notification?" -X POST -H "Content-Type: application/json" -H "X-Api-Key: ${arrApiKey}" --data-raw '{"onGrab":false,"onDownload":true,"onUpgrade":true,"onRename":true,"onMovieAdded":false,"onMovieDelete":false,"onMovieFileDelete":false,"onMovieFileDeleteForUpgrade":false,"onHealthIssue":false,"onApplicationUpdate":false,"supportsOnGrab":true,"supportsOnDownload":true,"supportsOnUpgrade":true,"supportsOnRename":true,"supportsOnMovieAdded":true,"supportsOnMovieDelete":true,"supportsOnMovieFileDelete":true,"supportsOnMovieFileDeleteForUpgrade":true,"supportsOnHealthIssue":true,"supportsOnApplicationUpdate":true,"includeHealthWarnings":false,"name":"Extras.bash","fields":[{"name":"path","value":"/config/extended/Extras.bash"},{"name":"arguments"}],"implementationName":"Custom Script","implementation":"CustomScript","configContract":"CustomScriptSettings","infoLink":"https://wiki.servarr.com/radarr/supported#customscript","message":{"message":"Testing will execute the script with the EventType set to Test, ensure your script handles this correctly","type":"warning"},"tags":[]}') + log "Complete" +fi + + +sleep infinity +exit $?