2.6 - Use Universal functions
This commit is contained in:
parent
5f2cb4de28
commit
5ef6f1cbd1
1 changed files with 6 additions and 67 deletions
|
@ -1,31 +1,13 @@
|
||||||
#!/usr/bin/with-contenv bash
|
#!/usr/bin/with-contenv bash
|
||||||
scriptVersion="2.5"
|
scriptVersion="2.6"
|
||||||
scriptName="Video"
|
scriptName="Video"
|
||||||
|
|
||||||
log () {
|
### Import Settings
|
||||||
m_time=`date "+%F %T"`
|
source /config/extended.conf
|
||||||
echo $m_time" :: $scriptName :: $scriptVersion :: "$1
|
#### Import Functions
|
||||||
}
|
source /config/extended/functions
|
||||||
|
|
||||||
logfileSetup () {
|
|
||||||
# auto-clean up log file to reduce space usage
|
|
||||||
if [ -f "/config/logs/$scriptName.txt" ]; then
|
|
||||||
find /config/logs -type f -name "$scriptName.txt" -size +1024k -delete
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ ! -f "/config/logs/$scriptName.txt" ]; then
|
|
||||||
touch "/config/logs/$scriptName.txt"
|
|
||||||
chmod 666 "/config/logs/$scriptName.txt"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Create Log, start writing...
|
|
||||||
logfileSetup
|
|
||||||
exec &> >(tee -a "/config/logs/$scriptName.txt")
|
|
||||||
|
|
||||||
verifyConfig () {
|
verifyConfig () {
|
||||||
#### Import Settings
|
|
||||||
source /config/extended.conf
|
|
||||||
videoContainer=mkv
|
videoContainer=mkv
|
||||||
|
|
||||||
if [ "$enableVideo" != "true" ]; then
|
if [ "$enableVideo" != "true" ]; then
|
||||||
|
@ -50,46 +32,6 @@ verifyConfig () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
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 [ "$arrPort" == "8989" ] || [ "$arrPort" == "7878" ]; then
|
|
||||||
arrApiVersion="v3"
|
|
||||||
elif [ "$arrPort" == "8686" ] || [ "$arrPort" == "8787" ]; 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
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Configuration () {
|
Configuration () {
|
||||||
if [ "$dlClientSource" = "tidal" ] || [ "$dlClientSource" = "both" ]; then
|
if [ "$dlClientSource" = "tidal" ] || [ "$dlClientSource" = "both" ]; then
|
||||||
sourcePreference=tidal
|
sourcePreference=tidal
|
||||||
|
@ -113,10 +55,7 @@ Configuration () {
|
||||||
log "3"; sleep 1
|
log "3"; sleep 1
|
||||||
log "2"; sleep 1
|
log "2"; sleep 1
|
||||||
log "1"; sleep 1
|
log "1"; sleep 1
|
||||||
processdownloadid="$(ps -A -o pid,cmd|grep "Video.sh" | grep -v grep | head -n 1 | awk '{print $1}')"
|
|
||||||
log "To kill script, use the following command:"
|
|
||||||
log "kill -9 $processdownloadid"
|
|
||||||
sleep 2
|
|
||||||
|
|
||||||
verifyApiAccess
|
verifyApiAccess
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue