gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
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.
59 lines
1.6 KiB
59 lines
1.6 KiB
#!/bin/bash
|
|
# LinuxGSM alert_discord.sh module
|
|
# Author: Daniel Gibbs
|
|
# Contributors: http://linuxgsm.com/contrib
|
|
# Website: https://linuxgsm.com
|
|
# Description: Sends Discord alert.
|
|
|
|
functionselfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")"
|
|
|
|
json=$(
|
|
cat << EOF
|
|
{
|
|
"username":"LinuxGSM",
|
|
"avatar_url":"https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg",
|
|
"file":"content",
|
|
"embeds": [{
|
|
"color": "2067276",
|
|
"author": {
|
|
"name": "${alertemoji} ${alertsubject} ${alertemoji}",
|
|
"icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.jpg"
|
|
},
|
|
"title": "${servername}",
|
|
"description": "${alertbody} \n More info: ${alerturl}",
|
|
"url": "",
|
|
"type": "content",
|
|
"thumbnail": {},
|
|
"fields": [
|
|
{
|
|
"name": "Game",
|
|
"value": "${gamename}",
|
|
"inline": true
|
|
},
|
|
{
|
|
"name": "Server IP",
|
|
"value": "[${alertip}:${port}](https://www.gametracker.com/server_info/${alertip}:${port})",
|
|
"inline": true
|
|
},
|
|
{
|
|
"name": "Hostname",
|
|
"value": "${HOSTNAME}",
|
|
"inline": true
|
|
}
|
|
]
|
|
}]
|
|
}
|
|
EOF
|
|
)
|
|
|
|
fn_print_dots "Sending Discord alert"
|
|
|
|
discordsend=$(curl --connect-timeout 10 -sSL -H "Content-Type: application/json" -X POST -d "$(echo -n "${json}" | jq -c .)" "${discordwebhook}")
|
|
|
|
if [ -n "${discordsend}" ]; then
|
|
fn_print_fail_nl "Sending Discord alert: ${discordsend}"
|
|
fn_script_log_fatal "Sending Discord alert: ${discordsend}"
|
|
else
|
|
fn_print_ok_nl "Sending Discord alert"
|
|
fn_script_log_pass "Sending Discord alert"
|
|
fi
|
|
|