2024-02-02 16:00:04 +01:00
|
|
|
### DISCLAIMER: This is a third party addition to dockcheck - best effort testing.
|
2025-05-25 12:26:13 -04:00
|
|
|
NOTIFY_TELEGRAM_VERSION="v0.2"
|
2024-02-02 16:00:04 +01:00
|
|
|
#
|
|
|
|
|
# Required receiving services must already be set up.
|
2025-05-25 12:26:13 -04:00
|
|
|
# Do not modify this file directly. Set TELEGRAM_CHAT_ID and TELEGRAM_TOKEN in your dockcheck.config file.
|
2024-02-02 16:00:04 +01:00
|
|
|
|
2025-05-25 12:26:13 -04:00
|
|
|
if [[ -z "${TELEGRAM_CHAT_ID:-}" ]] || [[ -z "${TELEGRAM_TOKEN:-}" ]]; then
|
|
|
|
|
printf "Telegram notification channel enabled, but required configuration variables are missing. Telegram notifications will not be sent.\n"
|
2025-02-10 19:46:23 +01:00
|
|
|
|
2025-05-25 12:26:13 -04:00
|
|
|
remove_channel telegram
|
|
|
|
|
fi
|
2025-05-02 21:40:24 +02:00
|
|
|
|
2025-05-25 12:26:13 -04:00
|
|
|
trigger_telegram_notification() {
|
|
|
|
|
if [[ "$PrintMarkdownURL" == true ]]; then
|
|
|
|
|
ParseMode="Markdown"
|
|
|
|
|
else
|
|
|
|
|
ParseMode="HTML"
|
|
|
|
|
fi
|
2025-05-02 21:40:24 +02:00
|
|
|
|
2025-05-25 12:26:13 -04:00
|
|
|
TelegramToken="${TELEGRAM_TOKEN}" # e.g. TELEGRAM_TOKEN=token-value
|
|
|
|
|
TelegramChatId="${TELEGRAM_CHAT_ID}" # e.g. TELEGRAM_CHAT_ID=mychatid
|
|
|
|
|
TelegramUrl="https://api.telegram.org/bot$TelegramToken"
|
|
|
|
|
TelegramTopicID=${TELEGRAM_TOPIC_ID:="0"}
|
|
|
|
|
TelegramData="{\"chat_id\":\"$TelegramChatId\",\"text\":\"$MessageBody\",\"message_thread_id\":\"$TelegramTopicID\",\"disable_notification\": false}"
|
2025-02-10 19:46:23 +01:00
|
|
|
|
2025-05-25 12:26:13 -04:00
|
|
|
curl -sS -o /dev/null --fail -X POST "$TelegramUrl/sendMessage" -H 'Content-Type: application/json' -d "$TelegramData"
|
2024-02-02 16:00:04 +01:00
|
|
|
}
|