Update YoutubeSeriesDownloader.service

This commit is contained in:
RandomNinjaAtk 2023-07-12 11:14:14 +00:00 committed by GitHub
parent 8eccf80e3a
commit cc94e84838
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,10 +1,22 @@
#!/usr/bin/env bash
scriptVersion="1.2"
ytdlpExtraOpts="--user-agent facebookexternalhit/1.1"
scriptName="YoutubeSeriesDownloader"
#### Import Settings
source /config/extended.conf
log () {
m_time=`date "+%F %T"`
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
}
if [ "$enableYoutubeSeriesDownloader" != "true" ]; then
log "Script is not enabled, enable by setting enableYoutubeSeriesDownloader to \"true\" by modifying the \"/config/extended.conf\" config file..."
log "Sleeping (infinity)"
sleep infinity
fi
getArrAppInfo () {
# Get Arr App information
if [ -z "$arrUrl" ] || [ -z "$arrApiKey" ]; then
@ -41,12 +53,6 @@ verifyApiAccess () {
done
}
log () {
m_time=`date "+%F %T"`
echo $m_time" :: Youtube Series Downloader :: $scriptVersion :: "$1
}
# auto-clean up log file to reduce space usage
if [ -f "/config/logs/YoutubeSeriesDownloader.txt" ]; then
find /config/logs -type f -name "YoutubeSeriesDownloader.txt" -size +1024k -delete
@ -174,20 +180,13 @@ YoutubeSeriesDownloaderProcess () {
done
}
if [ "$enableYoutubeSeriesDownloader" == "true" ]; then
log "Starting Script...."
for (( ; ; )); do
let i++
getArrAppInfo
verifyApiAccess
YoutubeSeriesDownloaderProcess
log "Script sleeping for 2 hours..."
sleep 2h
done
else
log "Script is not enabled, enable by setting enableYoutubeSeriesDownloader to \"true\" by modifying the \"/config/extended.conf\" config file..."
log "Sleeping (infinity)"
sleep infinity
fi
log "Starting Script...."
for (( ; ; )); do
let i++
getArrAppInfo
verifyApiAccess
YoutubeSeriesDownloaderProcess
log "Script sleeping for 2 hours..."
sleep 2h
done
exit