Browse Source

tidy up

pull/1601/head
Daniel Gibbs 8 years ago
parent
commit
1353d8c496
  1. 6
      lgsm/functions/alert_discord.sh
  2. 3
      lgsm/functions/alert_telegram.sh

6
lgsm/functions/alert_discord.sh

@ -5,10 +5,6 @@
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Sends Discord alert including the server status. # Description: Sends Discord alert including the server status.
local commandname="ALERT"
local commandaction="Alert"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
json=$(cat <<EOF json=$(cat <<EOF
{ {
"username":"LinuxGSM", "username":"LinuxGSM",
@ -49,7 +45,7 @@ json=$(cat <<EOF
"name": "More info", "name": "More info",
"value": "${alerturl}" "value": "${alerturl}"
} }
] ]
}] }]
} }
EOF EOF

3
lgsm/functions/alert_telegram.sh

@ -8,7 +8,6 @@ local commandname="ALERT"
local commandaction="Alert" local commandaction="Alert"
local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))" local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
json=$(cat <<EOF json=$(cat <<EOF
{ {
"chat_id": "${telegramchatid}", "chat_id": "${telegramchatid}",
@ -20,7 +19,7 @@ EOF
fn_print_dots "Sending Telegram alert" fn_print_dots "Sending Telegram alert"
sleep 0.5 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) telegramsend=$(curl -sSL -H "Content-Type: application/json" -X POST -d """${json}""" "https://api.telegram.org/bot${telegramtoken}/sendMessage")
if [ -n "${telegramsend}" ]; then if [ -n "${telegramsend}" ]; then
fn_print_fail_nl "Sending Telegram alert: ${telegramsend}" fn_print_fail_nl "Sending Telegram alert: ${telegramsend}"

Loading…
Cancel
Save