From 3041cb10861a806b6c481111a2bc5ca36f2ba046 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Mon, 21 Aug 2017 14:14:14 +0100 Subject: [PATCH] Improvements the alert message --- lgsm/functions/alert_discord.sh | 52 +++++++++++++++++++++++++++++++- lgsm/functions/alert_telegram.sh | 5 ++- 2 files changed, 53 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/alert_discord.sh b/lgsm/functions/alert_discord.sh index f1ea069d4..234817069 100644 --- a/lgsm/functions/alert_discord.sh +++ b/lgsm/functions/alert_discord.sh @@ -5,4 +5,54 @@ # Website: https://gameservermanagers.com # Description: Sends Discord alert including the server status. -curl -X POST --data '{ "embeds": [{"title": "${alertsubject}", "url": "https://example.com", "description": "${alertbody}", "type": "link", "thumbnail": {"url": "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/images/logo/lgsm-square-184-dark.png"}}] }' -H "Content-Type: application/json" "${discordwebhook}" \ No newline at end of file +json=$(cat <f +curl -v -X POST --data @f ${discordwebhook} diff --git a/lgsm/functions/alert_telegram.sh b/lgsm/functions/alert_telegram.sh index ed7477fbf..9e73b4a10 100644 --- a/lgsm/functions/alert_telegram.sh +++ b/lgsm/functions/alert_telegram.sh @@ -13,13 +13,12 @@ json=$(cat <${alertsubject} ${alertemoji}\nMessage: ${alertbody}\nServer name: ${servername}\nHostname: ${HOSTNAME}\nMore info: ${alerturl}", + "text": "${alertemoji} ${alertsubject} ${alertemoji}\n\nMessage\n${alertbody}\n\nGame\n${gamename}\n\nServer name\n${servername}\n\nHostname\n${HOSTNAME}\n\nServer IP\n${ip}:${port}\n\nMore info\n${alerturl}", "disable_web_page_preview": "yes", -} EOF ) -fn_print_dots "Sending Telegram Alert" +fn_print_dots "Sending Telegram alert" sleep 0.5 telegramsend=$(curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.telegram.org/bot${telegramtoken}/sendMessage" | grep -Po '(?<="description":").*?(?=")'|uniq)