Browse Source

changes to alerts

feature/alerts-refactor
Daniel Gibbs 3 years ago
parent
commit
7eab749bc4
No known key found for this signature in database GPG Key ID: 2EBB36015C6D78E2
  1. 8
      lgsm/functions/alert.sh
  2. 4
      lgsm/functions/alert_discord.sh

8
lgsm/functions/alert.sh

@ -78,6 +78,7 @@ fn_alert_restart(){
fn_alert_restart_query(){
fn_script_log_info "Sending alert: Restarted: ${selfname}"
alerttype="short"
alerttitle="Alert - ${selfname} - Restarted"
alertemoji="🚨"
alertsound="2"
@ -90,9 +91,10 @@ fn_alert_restart_query(){
fn_alert_update(){
fn_script_log_info "Sending alert: Game server updated: ${selfname}"
alerttitle="Alert - ${selfname} - Game server updated"
alerttype="short"
alertemoji="🎉"
alertsound="1"
alerttriggermessage="${selfname} has received a game server update."
alerttriggermessage="${selfname} has received a game server update: ${localbuild}."
# Green
alertcolourhex="#00cd00"
alertcolourdec="52480"
@ -101,9 +103,10 @@ fn_alert_update(){
fn_alert_check_update(){
fn_script_log_info "Sending alert: Game server update available"
alerttitle="Alert - ${selfname} - Game server Update available"
alerttype="short"
alertemoji="💿"
alertsound="1"
alerttriggermessage="Game server update available for ${selfname}."
alerttriggermessage="Game server update available for ${selfname}: ${remotebuild}."
# Blue
alertcolourhex="#1e90ff"
alertcolourdec="2003199"
@ -112,6 +115,7 @@ fn_alert_check_update(){
fn_alert_update_linuxgsm(){
fn_script_log_info "Sending alert: LinuxGSM updated: ${selfname}"
alerttitle="Alert - ${selfname} - LinuxGSM updated"
alerttype="short"
alertemoji="🎉"
alertsound="1"
alerttriggermessage="${selfname} has received a LinuxGSM update."

4
lgsm/functions/alert_discord.sh

@ -15,13 +15,13 @@ jsonshort=$(cat <<EOF
"embeds": [
{
"author": {
"name": "LinuxGSM Alert",
"name": "${servername}",
"url": "",
"icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg"
},
"title": "${alertemoji} ${alerttriggermessage}",
"url": "",
"description": "${servername}",
"description": "",
"color": "${alertcolourdec}",
"thumbnail": {
"url": "${alerticon}"

Loading…
Cancel
Save