2025-03-30 13:31:34 +02:00
### DISCLAIMER: This is a third party addition to dockcheck - best effort testing.
2025-06-24 09:16:48 -04:00
NOTIFY_SLACK_VERSION = "v0.3"
2025-03-30 13:31:34 +02:00
#
2025-05-25 12:26:13 -04:00
# Setup app and token at https://api.slack.com/tutorials/tracks/posting-messages-with-curl
2025-05-29 16:43:34 -04:00
# Leave (or place) this file in the "notify_templates" subdirectory within the same directory as the main dockcheck.sh script.
# If you instead wish make your own modifications, make a copy in the same directory as the main dockcheck.sh script.
# Do not modify this file directly within the "notify_templates" subdirectory. Set SLACK_ACCESS_TOKEN, and SLACK_CHANNEL_ID in your dockcheck.config file.
2025-03-30 13:31:34 +02:00
2025-05-25 12:26:13 -04:00
if [ [ -z " ${ SLACK_ACCESS_TOKEN :- } " ] ] || [ [ -z " ${ SLACK_CHANNEL_ID :- } " ] ] ; then
printf "Slack notification channel enabled, but required configuration variables are missing. Slack notifications will not be sent.\n"
2025-03-30 13:31:34 +02:00
2025-05-25 12:26:13 -04:00
remove_channel slack
fi
2025-03-30 13:31:34 +02:00
2025-05-25 12:26:13 -04:00
trigger_slack_notification( ) {
AccessToken = " ${ SLACK_ACCESS_TOKEN } " # e.g. SLACK_ACCESS_TOKEN=some-token
ChannelID = " ${ SLACK_CHANNEL_ID } " # e.g. CHANNEL_ID=mychannel
SlackUrl = "https://slack.com/api/chat.postMessage"
2025-03-30 13:31:34 +02:00
2025-06-24 09:16:48 -04:00
curl -S -o /dev/null ${ CurlArgs } \
2025-05-25 12:26:13 -04:00
-d " text= $MessageBody " -d " channel= $ChannelID " \
-H " Authorization: Bearer $AccessToken " \
-X POST $SlackUrl
2025-06-24 09:16:48 -04:00
if [ [ $? -gt 0 ] ] ; then
NotifyError = true
fi
2025-03-30 13:31:34 +02:00
}