|
|
@ -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 |
|
|
|
} |
|
|
|
] |
|
|
|
} |
|
|
|