Browse Source

update slack

feature/alerts-refactor
Daniel Gibbs 4 years ago
parent
commit
1f1a4f67ae
  1. 2
      lgsm/functions/alert_discord.sh
  2. 2
      lgsm/functions/alert_ifttt.sh
  3. 82
      lgsm/functions/alert_slack.sh

2
lgsm/functions/alert_discord.sh

@ -15,7 +15,7 @@ json=$(cat <<EOF
"embeds": [
{
"author": {
"name": "LinuxGSM",
"name": "LinuxGSM Alert",
"url": "",
"icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg"
},

2
lgsm/functions/alert_ifttt.sh

@ -11,7 +11,7 @@ json=$(cat <<EOF
{
"value1": "${selfname}",
"value2": "${alertemoji} ${alertsubject} ${alertemoji}",
"value3": "Server name\n${servername}\n\nInformation\n${alertdescription}\n\nGame\n${gamename}\n\n${alertplayerstitle}\n${alertplayers}\n\nMap\n${alertmap}\n\nServer IP\n${alertip}:${port}\n\nHostname\n${HOSTNAME}\n\nMore info\n${alerturl}"
"value3": "Server name<br>${servername}<br><br>Information<br>${alertdescription}<br><br>Game<br>${gamename}<br><br>${alertplayerstitle}<br>${alertplayers}<br><br>Map<br>${alertmap}<br><br>Server IP<br>${alertip}:${port}<br><br>Hostname<br>${HOSTNAME}<br><br>More info<br>${alerturl}"
}
EOF
)

82
lgsm/functions/alert_slack.sh

@ -9,16 +9,28 @@ functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF
{
"attachments": [
{
"color": "#36a64f",
"blocks": [
{
"type": "section",
"text": {
"type": "context",
"elements": [
{
"type": "image",
"image_url": "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/lgsm/data/alert_discord_logo.jpg",
"alt_text": "LinuxGSM"
},
{
"type": "mrkdwn",
"text": "*LinuxGSM Alert*"
}
]
},
{
"type": "header",
"text": {
"type": "plain_text",
"text": "${servername}",
"emoji": true
}
},
{
"type": "section",
@ -28,22 +40,51 @@ json=$(cat <<EOF
}
},
{
"type": "divider"
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Game:* ${gamename}"
}
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Maxplayers*"
},
{
"type": "mrkdwn",
"text": "*Map*"
},
{
"type": "mrkdwn",
"text": "${alertplayers}"
},
{
"type": "mrkdwn",
"text": "${alertmap}"
}
]
},
{
"type": "section",
"fields": [
{
"type": "mrkdwn",
"text": "*Game:* \n ${gamename}"
"text": "*Server IP*"
},
{
"type": "mrkdwn",
"text": "*Server IP:* \n ${alertip}:${port}"
"text": "*Hostname*"
},
{
"type": "mrkdwn",
"text": "*Server Name:* \n ${servername}"
"text": "[${alertip}:${port}"
},
{
"type": "mrkdwn",
"text": "${HOSTNAME}"
}
]
},
@ -51,8 +92,29 @@ json=$(cat <<EOF
"type": "section",
"text": {
"type": "mrkdwn",
"text": "Hostname: ${HOSTNAME} / More info: ${alerturl}"
"text": "*Information*\n${alertdescription} \n More info: ${alerturl}"
}
},
{
"type": "image",
"image_url": "${alertimage}",
"alt_text": "${gamename}"
},
{
"type": "divider"
},
{
"type": "context",
"elements": [
{
"type": "image",
"image_url": "https://raw.githubusercontent.com/GameServerManagers/LinuxGSM/master/lgsm/data/alert_discord_logo.jpg",
"alt_text": "LinuxGSM Logo"
},
{
"type": "plain_text",
"text": "Powered by LinuxGSM",
"emoji": true
}
]
}

Loading…
Cancel
Save