Browse Source

allow map and player info on alert

feature/alerts-refactor
Daniel Gibbs 4 years ago
parent
commit
92f24b6ab5
  1. 38
      lgsm/functions/alert.sh
  2. 92
      lgsm/functions/alert_discord.sh
  3. 2
      lgsm/functions/info_messages.sh

38
lgsm/functions/alert.sh

@ -10,8 +10,6 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
# Generates alert log of the details at the time of the alert. # Generates alert log of the details at the time of the alert.
# Used with email alerts. # Used with email alerts.
fn_alert_log(){ fn_alert_log(){
info_distro.sh
info_game.sh
info_messages.sh info_messages.sh
if [ -f "${alertlog}" ]; then if [ -f "${alertlog}" ]; then
rm -f "${alertlog:?}" rm -f "${alertlog:?}"
@ -90,6 +88,42 @@ fn_alert_config(){
alertbody="${selfname} has received a new _default.cfg. Check file for changes." alertbody="${selfname} has received a new _default.cfg. Check file for changes."
} }
info_distro.sh
info_game.sh
query_gamedig.sh
# Allow Alert to display gamedig info if available.
if [ "${querystatus}" != "0" ]; then
if [ -n "${maxplayers}" ]; then
alertplayerstitle="Maxplayers"
alertplayers="-${maxplayers}"
fi
else
if [ -n "${gdplayers}" ]&&[ -n "${gdmaxplayers}" ]; then
alertplayerstitle="Players"
alertplayers="${gdplayers}/${gdmaxplayers}"
elif [ -n "${gdplayers}" ]&&[ -n "${maxplayers}" ]; then
alertplayerstitle="Players"
alertplayers="${gdplayers}/${maxplayers}"
elif [ -z "${gdplayers}" ]&&[ -n "${gdmaxplayers}" ]; then
alertplayerstitle="Players"
alertplayers="-1/${gdmaxplayers}"
elif [ -n "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]; then
alertplayerstitle="Players"
alertplayers="${gdplayers}/∞"
elif [ -z "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]&&[ -n "${maxplayers}" ]; then
alertplayerstitle="Maxplayers"
alertplayers="${maxplayers}"
fi
fi
if [ -n "${gdmap}" ]; then
alertmap="${gdmap}"
else
alertmap="Unknown"
fi
if [ "${alert}" == "permissions" ]; then if [ "${alert}" == "permissions" ]; then
fn_alert_permissions fn_alert_permissions
elif [ "${alert}" == "restart" ]; then elif [ "${alert}" == "restart" ]; then

92
lgsm/functions/alert_discord.sh

@ -9,53 +9,63 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF json=$(cat <<EOF
{ {
"username": "LinuxGSM Alert", "username": "LinuxGSM Alert",
"avatar_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg", "avatar_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg",
"content": "", "content": "",
"embeds": [ "embeds": [
{ {
"author": { "author": {
"name": "LinuxGSM", "name": "LinuxGSM",
"url": "", "url": "",
"icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg" "icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg"
}, },
"title": "${servername}", "title": "${servername}",
"url": "", "url": "",
"description": "${alertemoji} ${alertsubject}", "description": "${alertemoji} ${alertsubject}",
"color": 15258703, "color": 15258703,
"fields": [ "fields": [
{ {
"name": "Game", "name": "Game",
"value": "${gamename}", "value": "${gamename}",
"inline": true "inline": true
}, },
{ {
"name": "Server IP", "name": "Players",
"value": "${alertplayers}",
"inline": true
},
{
"name": "Map",
"value": "${alertmap}",
"inline": true
},
{
"name": "Server IP",
"value": "[${alertip}:${port}](https://www.gametracker.com/server_info/${alertip}:${port})", "value": "[${alertip}:${port}](https://www.gametracker.com/server_info/${alertip}:${port})",
"inline": true "inline": true
}, },
{ {
"name": "Hostname", "name": "Hostname",
"value": "${HOSTNAME}", "value": "${HOSTNAME}",
"inline": true "inline": true
}, },
{ {
"name": "Information", "name": "Information",
"value": "${alertbody} \n More info: ${alerturl}" "value": "${alertbody} \n More info: ${alerturl}"
} }
], ],
"thumbnail": { "thumbnail": {
"url": "https://linuxgsm.com/wp-content/uploads/2020/07/minecraft-bedrock-icon.jpg" "url": "https://linuxgsm.com/wp-content/uploads/2020/07/minecraft-bedrock-icon.jpg"
}, },
"image": { "image": {
"url": "https://linuxgsm.com/wp-content/uploads/2021/02/mcbe-header.jpg" "url": "https://linuxgsm.com/wp-content/uploads/2021/02/mcbe-header.jpg"
}, },
"footer": { "footer": {
"text": "Powered by LinuxGSM", "text": "Powered by LinuxGSM",
"icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg" "icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg"
} }
} }
] ]
} }
EOF EOF
) )

2
lgsm/functions/info_messages.sh

@ -331,7 +331,7 @@ fn_info_message_gameserver(){
elif [ -n "${gdplayers}" ]&&[ -n "${maxplayers}" ]; then elif [ -n "${gdplayers}" ]&&[ -n "${maxplayers}" ]; then
echo -e "${lightblue}Players:\t${default}${gdplayers}/${maxplayers}" echo -e "${lightblue}Players:\t${default}${gdplayers}/${maxplayers}"
elif [ -z "${gdplayers}" ]&&[ -n "${gdmaxplayers}" ]; then elif [ -z "${gdplayers}" ]&&[ -n "${gdmaxplayers}" ]; then
echo -e "${lightblue}Players:\t${default}0/${gdmaxplayers}" echo -e "${lightblue}Players:\t${default}-1/${gdmaxplayers}"
elif [ -n "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]; then elif [ -n "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]; then
echo -e "${lightblue}Players:\t${default}${gdplayers}/∞" echo -e "${lightblue}Players:\t${default}${gdplayers}/∞"
elif [ -z "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]&&[ -n "${maxplayers}" ]; then elif [ -z "${gdplayers}" ]&&[ -z "${gdmaxplayers}" ]&&[ -n "${maxplayers}" ]; then

Loading…
Cancel
Save