Create AutoConfig.service
This commit is contained in:
parent
04ccc2b7ef
commit
a8a5ea75d5
1 changed files with 168 additions and 0 deletions
168
sonarr/AutoConfig.service
Normal file
168
sonarr/AutoConfig.service
Normal file
|
@ -0,0 +1,168 @@
|
|||
#!/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 666 "/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/autoconfig ]; then
|
||||
log "Sonarr previously configured with optimal settings, skipping..."
|
||||
log "To re-configure Sonarr, delete the following file:"
|
||||
log "/config/extended/autoconfig"
|
||||
exit
|
||||
fi
|
||||
|
||||
|
||||
if [ -f /config/extended/configs/naming.json ]; then
|
||||
log "Using custom Sonarr Naming (/config/extended/configs/naming.json)..."
|
||||
namingJson=$(cat /config/extended/configs/naming.json)
|
||||
else
|
||||
log "Getting Trash Guide Recommended Naming..."
|
||||
namingJson=$(curl -s "https://raw.githubusercontent.com/TRaSH-/Guides/master/docs/json/sonarr/naming/sonarr-naming.json")
|
||||
fi
|
||||
|
||||
standardNaming=$(echo "$namingJson" | jq -r '.episodes.standard."default:4"')
|
||||
dailyNaming=$(echo "$namingJson" | jq -r '.episodes.daily."default:4"')
|
||||
animeNaming=$(echo "$namingJson" | jq -r '.episodes.anime."default:4"')
|
||||
seriesNaming=$(echo "$namingJson" | jq -r '.series.default')
|
||||
seasonNaming=$(echo "$namingJson" | jq -r '.season.default')
|
||||
|
||||
log "Updating Sonarr File Naming..."
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/config/naming" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw "{
|
||||
\"renameEpisodes\":true,
|
||||
\"replaceIllegalCharacters\":true,
|
||||
\"multiEpisodeStyle\":5,
|
||||
\"standardEpisodeFormat\":\"$standardNaming\",
|
||||
\"dailyEpisodeFormat\":\"$dailyNaming\",
|
||||
\"animeEpisodeFormat\":\"$animeNaming\",
|
||||
\"seriesFolderFormat\":\"$seriesNaming\",
|
||||
\"seasonFolderFormat\":\"$seasonNaming\",
|
||||
\"specialsFolderFormat\":\"$seasonNaming\",
|
||||
\"includeSeriesTitle\":false,
|
||||
\"includeEpisodeTitle\":false,
|
||||
\"includeQuality\":false,
|
||||
\"replaceSpaces\":true,
|
||||
\"separator\":\" - \",
|
||||
\"numberStyle\":\"S{season:00}E{episode:00}\",
|
||||
\"id\":1
|
||||
}")
|
||||
log "Complete"
|
||||
|
||||
log "Updating Sonrr Media Management..."
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/config/mediamanagement" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw '{"autoUnmonitorPreviouslyDownloadedEpisodes":false,
|
||||
"recycleBin":"",
|
||||
"recycleBinCleanupDays":7,
|
||||
"downloadPropersAndRepacks":"doNotPrefer",
|
||||
"createEmptySeriesFolders":false,
|
||||
"deleteEmptyFolders":true,
|
||||
"fileDate":"none",
|
||||
"rescanAfterRefresh":"always",
|
||||
"setPermissionsLinux":false,
|
||||
"chmodFolder":"777",
|
||||
"chownGroup":"",
|
||||
"episodeTitleRequired":"always",
|
||||
"skipFreeSpaceCheckWhenImporting":false,
|
||||
"minimumFreeSpaceWhenImporting":100,
|
||||
"copyUsingHardlinks":true,
|
||||
"importExtraFiles":true,
|
||||
"extraFileExtensions":"srt",
|
||||
"enableMediaInfo":true,"id":1}')
|
||||
log "Complete"
|
||||
|
||||
log "Updating Sonarr 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":"seriesMetadata","value":true},{"name":"seriesMetadataEpisodeGuide","value":true},{"name":"seriesMetadataUrl","value":false},{"name":"episodeMetadata","value":true},{"name":"seriesImages","value":true},{"name":"seasonImages","value":true},{"name":"episodeImages","value":true}],"implementationName":"Kodi (XBMC) / Emby","implementation":"XbmcMetadata","configContract":"XbmcMetadataSettings","infoLink":"https://wiki.servarr.com/sonarr/supported#xbmcmetadata","tags":[],"id":1}')
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/metadata/4?" -X PUT -H "Content-Type: application/json" -H "X-Api-Key: $arrApiKey" --data-raw '{"enable":true,"name":"Plex","fields":[{"name":"seriesPlexMatchFile","value":true}],"implementationName":"Plex","implementation":"PlexMetadata","configContract":"PlexMetadataSettings","infoLink":"https://wiki.servarr.com/sonarr/supported#plexmetadata","tags":[],"id":4}')
|
||||
|
||||
log "Configuring Sonarr 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 Sonarr custom scripts"
|
||||
else
|
||||
log "Adding PlexNotify.bash to Sonarr custom scripts"
|
||||
# Send a command to check file path, to prevent error with adding...
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/filesystem?path=%2Fconfig%2Fextended%2Fscripts%2FPlexNotify.bash&allowFoldersWithoutTrailingSlashes=true&includeFiles=true" -H "X-Api-Key: ${arrApiKey}")
|
||||
|
||||
# Add PlexNotify.bash
|
||||
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,"onSeriesDelete":true,"onEpisodeFileDelete":true,"onEpisodeFileDeleteForUpgrade":true,"onHealthIssue":false,"onApplicationUpdate":false,"supportsOnGrab":true,"supportsOnDownload":true,"supportsOnUpgrade":true,"supportsOnRename":true,"supportsOnSeriesDelete":true,"supportsOnEpisodeFileDelete":true,"supportsOnEpisodeFileDeleteForUpgrade":true,"supportsOnHealthIssue":true,"supportsOnApplicationUpdate":true,"includeHealthWarnings":false,"name":"PlexNotify.bash","fields":[{"name":"path","value":"/config/extended/scripts/PlexNotify.bash"},{"name":"arguments"}],"implementationName":"Custom Script","implementation":"CustomScript","configContract":"CustomScriptSettings","infoLink":"https://wiki.servarr.com/sonarr/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 "DailySeriesEpisodeTrimmer.bash" | read; then
|
||||
log "DailySeriesEpisodeTrimmer.bash already added to Sonarr custom scripts"
|
||||
else
|
||||
log "Adding DailySeriesEpisodeTrimmer.bash to Sonarr custom scripts"
|
||||
# Send a command to check file path, to prevent error with adding...
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/filesystem?path=%2Fconfig%2Fextended%2Fscripts%2FDailySeriesEpisodeTrimmer.bash&allowFoldersWithoutTrailingSlashes=true&includeFiles=true" -H "X-Api-Key: ${arrApiKey}")
|
||||
|
||||
# Add DailySeriesEpisodeTrimmer.bash
|
||||
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,"onSeriesDelete":true,"onEpisodeFileDelete":false,"onEpisodeFileDeleteForUpgrade":false,"onHealthIssue":false,"onApplicationUpdate":false,"supportsOnGrab":true,"supportsOnDownload":true,"supportsOnUpgrade":true,"supportsOnRename":true,"supportsOnSeriesDelete":true,"supportsOnEpisodeFileDelete":true,"supportsOnEpisodeFileDeleteForUpgrade":true,"supportsOnHealthIssue":true,"supportsOnApplicationUpdate":true,"includeHealthWarnings":false,"name":"DailySeriesEpisodeTrimmer.bash","fields":[{"name":"path","value":"/config/extended/scripts/DailySeriesEpisodeTrimmer.bash"},{"name":"arguments"}],"implementationName":"Custom Script","implementation":"CustomScript","configContract":"CustomScriptSettings","infoLink":"https://wiki.servarr.com/sonarr/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 Sonarr custom scripts"
|
||||
else
|
||||
log "Adding Extras.bash to Sonarr custom scripts"
|
||||
# Send a command to check file path, to prevent error with adding...
|
||||
updateArr=$(curl -s "$arrUrl/api/v3/filesystem?path=%2Fconfig%2Fextended%2Fscripts%2FExtras.bash&allowFoldersWithoutTrailingSlashes=true&includeFiles=true" -H "X-Api-Key: ${arrApiKey}")
|
||||
|
||||
# Add Extras.bash
|
||||
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,"onSeriesDelete":false,"onEpisodeFileDelete":false,"onEpisodeFileDeleteForUpgrade":false,"onHealthIssue":false,"onApplicationUpdate":false,"supportsOnGrab":true,"supportsOnDownload":true,"supportsOnUpgrade":true,"supportsOnRename":true,"supportsOnSeriesDelete":false,"supportsOnEpisodeFileDelete":true,"supportsOnEpisodeFileDeleteForUpgrade":true,"supportsOnHealthIssue":true,"supportsOnApplicationUpdate":true,"includeHealthWarnings":false,"name":"Extras.bash","fields":[{"name":"path","value":"/config/extended/scripts/Extras.bash"},{"name":"arguments"}],"implementationName":"Custom Script","implementation":"CustomScript","configContract":"CustomScriptSettings","infoLink":"https://wiki.servarr.com/sonarr/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
|
||||
|
||||
touch /config/extended/autoconfig
|
||||
chmod 666 /config/extended/autoconfig
|
||||
|
||||
sleep infinity
|
||||
exit $?
|
Loading…
Reference in a new issue