lgsm local mirror
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

136 lines
2.5 KiB

#!/bin/bash
# LinuxGSM alert_slack.sh module
# Author: Daniel Gibbs
# Contributors: http://linuxgsm.com/contrib
# Website: https://linuxgsm.com
# Description: Sends Slack alert.
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
json=$(cat <<EOF
{
"blocks": [
{
"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",
"text": {
"type": "mrkdwn",
"text": "*${alertemoji} ${alerttitle}* \n ${alertmessage}"
}
},
{
"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": "*Server IP*"
},
{
"type": "mrkdwn",
"text": "*Hostname*"
},
{
"type": "mrkdwn",
"text": "${alertip}:${port}"
},
{
"type": "mrkdwn",
"text": "${HOSTNAME}"
}
]
},
{
"type": "section",
"text": {
"type": "mrkdwn",
"text": "*Message*\n${alertmessage} \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 ${version}",
"emoji": true
}
]
}
]
}
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
fn_print_ok_nl "Sending Slack alert"
fn_script_log_pass "Sending Slack alert"
else
fn_print_fail_nl "Sending Slack alert: ${slacksend}"
fn_script_log_fatal "Sending Slack alert: ${slacksend}"
fi