arc-addons/updatenotify/all/usr/bin/arc-updatenotify.sh
AuxXxilium 8fc059e10e updatenotify: update
Signed-off-by: AuxXxilium <info@auxxxilium.tech>
2024-09-24 23:59:38 +02:00

88 lines
3.2 KiB
Bash
Executable File

#!/usr/bin/env bash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
function Create() {
if echo "$(cat /usr/syno/etc/synoschedule.d/root/*.task 2>/dev/null | grep '^name=' | cut -d'=' -f2)" | grep -q "Arc-UpdateNotify"; then
echo "Existence tasks"
else
echo "Create tasks"
schedule='{"date_type":0,"week_day":"0,1,2,3,4,5,6","repeat_date":1001,"monthly_week":[],"hour":0,"minute":0,"repeat_hour":2,"repeat_min":0,"last_work_hour":0,"repeat_min_store_config":[1,5,10,15,20,30],"repeat_hour_store_config":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23]}'
extra='{"notify_enable":false,"script":"/usr/bin/arc-updatenotify.sh","notify_mail":"","notify_if_error":false}'
synowebapi --exec api=SYNO.Core.TaskScheduler.Root method=create version=4 name='"Arc-UpdateNotify"' owner='"root"' enable=true schedule="${schedule}" extra="${extra}" type='"script"'
fi
exit 0
}
function Delete() {
for I in $(ls /usr/syno/etc/synoschedule.d/root/*.task); do
if [ "$(cat "${I}" 2>/dev/null | grep '^name=' | cut -d'=' -f2)" = "Arc-UpdateNotify" ]; then
id=$(cat "${I}" | grep '^id=' | cut -d'=' -f2)
[ -n "${id}" ] && synoschedtask --del id=${id}
fi
done
exit 0
}
function Check() {
LOCALTAG="$(cat /usr/arc/VERSION 2>/dev/null | grep LOADERVERSION | cut -d'=' -f2 | sed 's/\"//g')"
if [ -z "${LOCALTAG}" ]; then
echo "Unknown bootloader version!"
exit 0
fi
URL="https://github.com/AuxXxilium/arc"
TAG=""
if echo "$@" | grep -qw "\-p"; then
TAG="$(curl -skL --connect-timeout 10 "${URL}/tags" | grep /refs/tags/.*\.zip | head -1 | sed -r 's/.*\/refs\/tags\/(.*)\.zip.*$/\1/')"
else
LATESTURL="$(curl -skL --connect-timeout 10 -w %{url_effective} -o /dev/null "${URL}/releases/latest")"
TAG="${LATESTURL##*/}"
fi
[ "${TAG:0:1}" = "v" ] && TAG="${TAG:1}"
if [ -z "${TAG}" -o "${TAG}" = "latest" ]; then
echo "Error checking new version - Your version is ${LOCALTAG}"
exit 0
fi
if [ "${TAG}" = "${LOCALTAG}" ]; then
echo "Actual version is ${TAG} - Your version is ${LOCALTAG}"
exit 0
fi
# NOTIFICATION="Arc Notify"
# synodsmnotify -e false -b false "@administrators" "arc_notify" "{\"%NOTIFICATION%\": \"${NOTIFICATION}\"}"
# NOTIFICATION="Arc Update"
# SUBJECT="Arc <a href=\\\"${URL}/releases/tag/${TAG}\\\" target=blank>${TAG}</a> version has been released!"
# synodsmnotify -e false -b false "@administrators" "arc_notify_subject" "{\"%NOTIFICATION%\": \"${NOTIFICATION}\", \"%SUBJECT%\": \"${SUBJECT}\"}"
NOTIFICATION="Arc Release ${TAG}"
SUBJECT="$(curl -skL --connect-timeout 10 "${URL}/releases/tag/${TAG}" | pup 'div[data-test-selector="body-content"]')"
SUBJECT="${SUBJECT//\"/\\\\\\\"}"
synodsmnotify -e false -b false "@administrators" "arc_notify_subject" "{\"%NOTIFICATION%\": \"${NOTIFICATION}\", \"%SUBJECT%\": \"${SUBJECT}\"}"
exit 0
}
ACTION="${1}"
[ -z "${ACTION}" ] && ACTION="check"
case "${ACTION,,}" in
"create")
Create
;;
"delete")
Delete
;;
"check")
Check
;;
*)
echo "Unknown command!"
;;
esac