Browse Source

Minor changes to fit merge requirements

pull/2046/head
diamondburned 7 years ago
committed by GitHub
parent
commit
9fb6e69d76
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 18
      lgsm/functions/alert_discord.sh

18
lgsm/functions/alert_discord.sh

@ -10,10 +10,8 @@ if ! command -v jq > /dev/null; then
fn_script_log_fatal "Sending Discord alert: jq is missing." fn_script_log_fatal "Sending Discord alert: jq is missing."
fi fi
EscapedServername="$(echo -n "${servername}" | jq -sRr "@json")" escaped_servername="$(echo -n "${servername}" | jq -sRr "@json")"
EscapedAlertBody="$(echo -n "${alertbody}" | jq -sRr "@json")" escaped_alertbody="$(echo -n "${alertbody}" | jq -sRr "@json")"
echo "$servername" > /tmp/servername
json=$(cat <<EOF json=$(cat <<EOF
{ {
@ -25,7 +23,7 @@ json=$(cat <<EOF
"color": "2067276", "color": "2067276",
"author": {"name": "${alertemoji} ${alertsubject}", "icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.png"}, "author": {"name": "${alertemoji} ${alertsubject}", "icon_url": "https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/lgsm/data/alert_discord_logo.png"},
"title": "", "title": "",
"description": ${EscapedAlertBody}, "description": ${escaped_alertbody},
"url": "", "url": "",
"type": "content", "type": "content",
"thumbnail": {}, "thumbnail": {},
@ -42,8 +40,8 @@ json=$(cat <<EOF
"inline": true "inline": true
}, },
{ {
"name": "Server name", "name": "Server Name",
"value": ${EscapedServername}, "value": ${escaped_servername},
"inline": true "inline": true
} }
] ]
@ -54,11 +52,7 @@ EOF
fn_print_dots "Sending Discord alert" fn_print_dots "Sending Discord alert"
minified="$(echo -n "$json" | jq -c .)" discordsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d "$(echo -n "$json" | jq -c .)" "${discordwebhook}")
echo "$minified" > /tmp/json
discordsend=$(${curlpath} -sSL -H "Content-Type: application/json" -X POST -d "${minified}" "${discordwebhook}")
if [ -n "${discordsend}" ]; then if [ -n "${discordsend}" ]; then
fn_print_fail_nl "Sending Discord alert: ${discordsend}" fn_print_fail_nl "Sending Discord alert: ${discordsend}"

Loading…
Cancel
Save