| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- #!/bin/bash
- # LinuxGSM alert_pushover.sh module
- # Author: Daniel Gibbs
- # Contributors: https://linuxgsm.com/contrib
- # Website: https://linuxgsm.com
- # Description: Sends Pushover alert.
- moduleselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
- fn_print_dots "Sending Pushover alert"
- # Different alerts are given different priorities and notification sounds.
- if [ "${alertsound}" == "1" ]; then
- alertsound=""
- alertpriority="0"
- elif [ "${alertsound}" == "2" ]; then
- # restarted.
- alertsound="siren"
- alertpriority="1"
- else
- alertsound=""
- alertpriority="0"
- fi
- message=" <b>Server name</b><br>${servername}<br><br><b>Information</b><br>${alertmessage}<br><br><b>Game</b><br>${gamename}<br><br><b>Server IP</b><br>${alertip}:${port}<br><br><b>Hostname</b><br>${HOSTNAME}<br><br>"
- if [ -n "${querytype}" ]; then
- message+="<b>Is my Game Server Online?</b><br><a href='https://ismygameserver.online/${imgsoquerytype}/${alertip}:${queryport}'>Check here</a><br><br>"
- fi
- if [ -n "${alerturl}" ]; then
- message+="<b>More info</b><br><a href='${alerturl}'>${alerturl}</a><br><br>"
- fi
- message+="Server Time<br>$(date)"
- pushoversend=$(curl --connect-timeout 3 -sS \
- -F token="${pushovertoken}" \
- -F user="${pushoveruserkey}" \
- -F html="1" \
- -F sound="${alertsound}" \
- -F priority="${alertpriority}" \
- -F title="${alerttitle}" \
- -F message="${message}" \
- "https://api.pushover.net/1/messages.json" | grep errors)
- if [ -n "${pushoversend}" ]; then
- fn_print_fail_nl "Sending Pushover alert: ${pushoversend}"
- fn_script_log_fail "Sending Pushover alert: ${pushoversend}"
- else
- fn_print_ok_nl "Sending Pushover alert"
- fn_script_log_pass "Sent Pushover alert"
- fi
|