Daniel Gibbs
4 years ago
No known key found for this signature in database
GPG Key ID: 2EBB36015C6D78E2
5 changed files with
2 additions and
5 deletions
-
lgsm/functions/alert_gotify.sh
-
lgsm/functions/alert_pushbullet.sh
-
lgsm/functions/alert_pushover.sh
-
lgsm/functions/alert_rocketchat.sh
-
lgsm/functions/alert_slack.sh
|
|
@ -17,7 +17,6 @@ EOF |
|
|
|
) |
|
|
|
|
|
|
|
fn_print_dots "Sending Gotify alert" |
|
|
|
|
|
|
|
gotifysend=$(curl --connect-timeout 10 -sSL "${gotifywebhook}/message"?token="${gotifytoken}" -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)") |
|
|
|
|
|
|
|
if [ -n "${gotifysend}" ]; then |
|
|
|
|
|
@ -18,7 +18,7 @@ EOF |
|
|
|
) |
|
|
|
|
|
|
|
fn_print_dots "Sending Pushbullet alert" |
|
|
|
pushbulletsend=$(curl --connect-timeout 10 -sSL -u """${pushbullettoken}"":" -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "https://api.pushbullet.com/v2/pushes" | grep "error_code") |
|
|
|
pushbulletsend=$(curl --connect-timeout 10 -sSL -H "Access-Token: ${pushbullettoken}" -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "https://api.pushbullet.com/v2/pushes" | grep "error_code") |
|
|
|
|
|
|
|
if [ -n "${pushbulletsend}" ]; then |
|
|
|
fn_print_fail_nl "Sending Pushbullet alert: ${pushbulletsend}" |
|
|
|
|
|
@ -22,7 +22,7 @@ else |
|
|
|
alertpriority="0" |
|
|
|
fi |
|
|
|
|
|
|
|
pushoversend=$(curl --connect-timeout 10 -sS -F token="${pushovertoken}" -F user="${pushoveruserkey}" -F html="1" -F sound="${alertsound}" -F priority="${alertpriority}" -F title="${alertemoji} ${alerttitle} ${alertemoji}" -F message="<b>Server name</b><br>${servername}<br><br><b>Trigger Message</b><br>${alerttriggermessage}<br><br><b>Game</b><br>${gamename}<br><br><b>Current Players</b><br>${alertplayers}<br><br><b>Map</b><br>${alertmap}<br><br><b>Server IP</b><br>${alertip}:${port}<br><br><b>Hostname</b><br>${HOSTNAME}<br><br><b>Version</b><br>${alertversion}<br><br><b>More info</b><br>${alerturl}" "https://api.pushover.net/1/messages.json" | grep errors) |
|
|
|
pushoversend=$(curl --connect-timeout 10 -sSL -F token="${pushovertoken}" -F user="${pushoveruserkey}" -F html="1" -F sound="${alertsound}" -F priority="${alertpriority}" -F title="${alertemoji} ${alerttitle} ${alertemoji}" -F message="<b>Server name</b><br>${servername}<br><br><b>Trigger Message</b><br>${alerttriggermessage}<br><br><b>Game</b><br>${gamename}<br><br><b>Current Players</b><br>${alertplayers}<br><br><b>Map</b><br>${alertmap}<br><br><b>Server IP</b><br>${alertip}:${port}<br><br><b>Hostname</b><br>${HOSTNAME}<br><br><b>Version</b><br>${alertversion}<br><br><b>More info</b><br>${alerturl}" "https://api.pushover.net/1/messages.json" | grep errors) |
|
|
|
|
|
|
|
if [ -n "${pushoversend}" ]; then |
|
|
|
fn_print_fail_nl "Sending Pushover alert: ${pushoversend}" |
|
|
|
|
|
@ -37,7 +37,6 @@ EOF |
|
|
|
) |
|
|
|
|
|
|
|
fn_print_dots "Sending Rocketchat alert" |
|
|
|
|
|
|
|
rocketchatsend=$(curl --connect-timeout 10 -sSL -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "${rocketchatwebhook}") |
|
|
|
|
|
|
|
if [ -n "${rocketchatsend}" ]; then |
|
|
|
|
|
@ -124,7 +124,6 @@ EOF |
|
|
|
) |
|
|
|
|
|
|
|
fn_print_dots "Sending Slack alert" |
|
|
|
|
|
|
|
slacksend=$(curl --connect-timeout 10 -sSL -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "${slackwebhook}") |
|
|
|
|
|
|
|
if [ "${slacksend}" == "ok" ]; then |
|
|
|