Browse Source

further improvements to alerts

pull/1601/head
Daniel Gibbs 8 years ago
parent
commit
a1ab4c6f4b
  1. 24
      lgsm/functions/alert.sh
  2. 3
      lgsm/functions/alert_email.sh
  3. 22
      lgsm/functions/alert_pushbullet.sh
  4. 9
      lgsm/functions/alert_telegram.sh

24
lgsm/functions/alert.sh

@ -9,42 +9,42 @@ local commandaction="Alert"
fn_alert_test(){ fn_alert_test(){
fn_script_log_info "Sending test alert" fn_script_log_info "Sending test alert"
alertsubject="LinuxGSM Alert - Test - ${servername}" alertsubject="Alert - ${servicename}: Test"
alertemoji="🚨" alertemoji="🚨"
alerturl="https://gameservermanagers.com" alerturl="https://gameservermanagers.com"
alertbody="Testing LinuxGSM Alert. No action to be taken." alertbody="Testing LinuxGSM Alert. No action to be taken."
} }
fn_alert_restart(){ fn_alert_restart(){
fn_script_log_info "Sending restart alert: ${executable} process not running" fn_script_log_info "Sending alert: Restarted: ${executable} not running"
alertsubject="LinuxGSM Alert - Restarted - ${servername}" alertsubject="Alert - ${servicename}: Restarted"
alertemoji="🚨" alertemoji="🚨"
alerturl="https://gameservermanagers.com" alerturl="https://gameservermanagers.com"
alertbody="${servicename} ${executable} process not running" alertbody="${servicename} ${executable} not running"
} }
fn_alert_restart_query(){ fn_alert_restart_query(){
fn_script_log_info "Sending restart alert: ${gsquerycmd}" fn_script_log_info "Sending alert: Restarted: ${gsquerycmd}"
alertsubject="LinuxGSM Alert- Restarted - ${servername}" alertsubject="Alert - ${servicename}: Restarted"
alertemoji="🚨" alertemoji="🚨"
alerturl="https://gameservermanagers.com" alerturl="https://gameservermanagers.com"
alertbody="gsquery.py failed to query: ${gsquerycmd}" alertbody="gsquery.py failed to query: ${gsquerycmd}"
} }
fn_alert_update(){ fn_alert_update(){
fn_script_log_info "Sending update alert" fn_script_log_info "Sending alert: Updated"
alertsubject="LinuxGSM Alert- Updated - ${servername}" alertsubject="Alert - ${servicename}: Updated"
alertemoji="🎮" alertemoji="🎮"
alerturl="https://gameservermanagers.com" alerturl="https://gameservermanagers.com"
alertbody="${servicename} received update" alertbody="${gamename} received update"
} }
fn_alert_permissions(){ fn_alert_permissions(){
fn_script_log_info "Sending permissions error alert" fn_script_log_info "Sending alert: Permissions error"
alertsubject="LinuxGSM Alert - Error - ${servername}" alertsubject="Alert - ${servicename}: Permissions error"
alertemoji="❗" alertemoji="❗"
alerturl="https://gameservermanagers.com" alerturl="https://gameservermanagers.com"
alertbody="${servicename} has permissions issues." alertbody="${servicename} has permissions issues"
} }
if [ "${alert}" == "permissions" ]; then if [ "${alert}" == "permissions" ]; then

3
lgsm/functions/alert_email.sh

@ -2,7 +2,7 @@
# LinuxGSM alert_email.sh function # LinuxGSM alert_email.sh function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Sends email alert including server details and logs. # Description: Sends email alert.
local commandname="ALERT" local commandname="ALERT"
local commandaction="Alert" local commandaction="Alert"
@ -211,6 +211,7 @@ fn_alert_email_template_logs(){
} }
fn_print_dots "Sending alert: ${email}" fn_print_dots "Sending alert: ${email}"
sleep 0.5
fn_script_log_info "Sending alert: ${email}" fn_script_log_info "Sending alert: ${email}"
info_distro.sh info_distro.sh
info_config.sh info_config.sh

22
lgsm/functions/alert_pushbullet.sh

@ -2,7 +2,7 @@
# LinuxGSM alert_pushbullet.sh function # LinuxGSM alert_pushbullet.sh function
# Author: Daniel Gibbs # Author: Daniel Gibbs
# Website: https://gameservermanagers.com # Website: https://gameservermanagers.com
# Description: Sends Pushbullet alert including the server status. # Description: Sends Pushbullet alert.
local commandname="ALERT" local commandname="ALERT"
local commandaction="Alert" local commandaction="Alert"
@ -24,20 +24,22 @@ fn_rawurlencode() {
esac esac
encoded+="${o}" encoded+="${o}"
done done
echo "${encoded}" # If echo is faster, let's just echo it. echo "${encoded}"
} }
pbalertbody=$(fn_rawurlencode "${alertbody}") pbalertbody=$(fn_rawurlencode "Message: ${alertbody} - More Info: ${alerturl}")
pbalertsubject=$(fn_rawurlencode "${alertsubject}") pbalertsubject=$(fn_rawurlencode "${alertsubject}")
fn_print_dots "Sending Pushbullet alert" fn_print_dots "Sending Pushbullet alert"
sleep 1 sleep 0.5
pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d channel_tag="${channeltag}" -d type="note" -d body="${pbalertbody}" -d title="${pbalertsubject}" 'https://api.pushbullet.com/v2/pushes'|grep -o invalid_access_token|uniq) pushbulletsend=$(curl --silent -u """${pushbullettoken}"":" -d channel_tag="${channeltag}" -d type="note" -d body="${pbalertbody}" -d title="${alertemoji} ${pbalertsubject} ${alertemoji}" 'https://api.pushbullet.com/v2/pushes')
if [ "${pushbulletsend}" == "invalid_access_token" ]; then pberror=$(echo "${pushbulletsend}" |grep "error_code")
fn_print_fail_nl "Sending Pushbullet alert: invalid_access_token" pberrormsg=$(echo "${pushbulletsend}" |sed -n -e 's/^.*error_code//p' | tr -d '=\";,:{}')
fn_script_log_fatal "Sending Pushbullet alert: invalid_access_token" if [ -n "${pberror}" ]; then
fn_print_fail_nl "Sending Pushbullet alert: ${pberrormsg}"
fn_script_log_fatal "Sending Pushbullet alert: ${pberrormsg}"
else else
fn_print_ok_nl "Sending Pushbullet alert" fn_print_ok_nl "Sending Pushbullet alert"
fn_script_log_pass "Sent Pushbullet alert" fn_script_log_pass "Sent Pushbullet alert"
fi fi

9
lgsm/functions/alert_telegram.sh

@ -2,7 +2,7 @@
# LinuxGSM alert_telegram.sh function # LinuxGSM alert_telegram.sh function
# Author: Bennet Becker <[email protected]> # Author: Bennet Becker <[email protected]>
# Website: https://bytegaming.de # Website: https://bytegaming.de
# Description: Sends Telegram Message alert including the server status. # Description: Sends Telegram Message alert.
local commandname="ALERT" local commandname="ALERT"
local commandaction="Alert" local commandaction="Alert"
@ -12,14 +12,15 @@ local function_selfname="$(basename $(readlink -f "${BASH_SOURCE[0]}"))"
json=$(cat <<EOF json=$(cat <<EOF
{ {
"chat_id": "${telegramchatid}", "chat_id": "${telegramchatid}",
"text": "${alertemoji} <b><a href="${alerturl}">${alertsubject}</a></b> ${alertemoji}\n\n${alertbody}",
"parse_mode": "HTML", "parse_mode": "HTML",
"text": "${alertemoji} <b>${alertsubject}</b> ${alertemoji}\n<b>Message:</b> ${alertbody}\n<b>Server name:</b> ${servername}\n<b>Hostname:</b> ${HOSTNAME}\n<b>More info:</b> <a href='${alerturl}'>${alerturl}</a>",
"disable_web_page_preview": "yes",
} }
EOF EOF
) )
fn_print_dots "Sending Telegram Message" fn_print_dots "Sending Telegram Alert"
sleep 1 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" | grep -Po '(?<="description":").*?(?=")'|uniq)
if [ -n "${telegramsend}" ]; then if [ -n "${telegramsend}" ]; then

Loading…
Cancel
Save