Browse Source
Merge pull request #3479 from mjbnz/dev
Update Telegram notification
pull/3460/head
neil
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
1 deletions
-
notify/telegram.sh
|
|
@ -27,15 +27,18 @@ telegram_send() { |
|
|
|
fi |
|
|
|
_saveaccountconf_mutable TELEGRAM_BOT_CHATID "$TELEGRAM_BOT_CHATID" |
|
|
|
|
|
|
|
_content="$(printf "%s" "$_content" | sed -e 's/*/\\\\*/')" |
|
|
|
_content="$(printf "*%s*\n%s" "$_subject" "$_content" | _json_encode)" |
|
|
|
_data="{\"text\": \"$_content\", " |
|
|
|
_data="$_data\"chat_id\": \"$TELEGRAM_BOT_CHATID\", " |
|
|
|
_data="$_data\"parse_mode\": \"markdown\", " |
|
|
|
_data="$_data\"disable_web_page_preview\": \"1\"}" |
|
|
|
|
|
|
|
_debug "$_data" |
|
|
|
|
|
|
|
export _H1="Content-Type: application/json" |
|
|
|
_telegram_bot_url="https://api.telegram.org/bot${TELEGRAM_BOT_APITOKEN}/sendMessage" |
|
|
|
if _post "$_data" "$_telegram_bot_url"; then |
|
|
|
if _post "$_data" "$_telegram_bot_url" >/dev/null; then |
|
|
|
# shellcheck disable=SC2154 |
|
|
|
_message=$(printf "%s\n" "$response" | sed -n 's/.*"ok":\([^,]*\).*/\1/p') |
|
|
|
if [ "$_message" = "true" ]; then |
|
|
|