36 lines
978 B
Bash
Executable File
36 lines
978 B
Bash
Executable File
#!/bin/bash
|
|
|
|
LOCATION=`dirname "$0"`
|
|
|
|
source "${LOCATION}/config.sh"
|
|
|
|
HOOK_ARG="$1"
|
|
# sed: rewrite json string, because "\u001b[m" needs to "\u001b[0m" instead
|
|
MESSAGE=`echo "${@:2}" | jq -aRs . | sed 's/\\\\u001b\[m/\\\\u001b[0m/g'`
|
|
HOOK="general"
|
|
HOOK_URL=$DISCORD_GENERAL_HOOK
|
|
|
|
case $HOOK_ARG in
|
|
restake)
|
|
HOOK="restake"
|
|
HOOK_URL=$DISCORD_RESTAKE_HOOK
|
|
;;
|
|
thermal)
|
|
HOOK="thermal"
|
|
HOOK_URL=$DISCORD_THERMAL_HOOK
|
|
;;
|
|
storage)
|
|
HOOK="storage"
|
|
HOOK_URL=$DISCORD_STORAGE_HOOK
|
|
;;
|
|
esac
|
|
|
|
# if color detected, update message from "<content>" to "```ansi <content>```", so it gets displayed correctly
|
|
if [[ "$MESSAGE" == *"\\u001b"* ]]; then
|
|
MESSAGE="\"\`\`\`ansi\n${MESSAGE:1:-1}\n\`\`\`\""
|
|
# just here to resolve formatting issue in vim "`"
|
|
fi
|
|
|
|
curl -s -H "Content-Type: application/json" -X POST -d "{\"username\": \"${DISCORD_SERVER_NAME}\", \"content\": ${MESSAGE}}" $HOOK_URL | jq -r '.id'
|
|
|