Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ruanhaishen
Acme.Sh
Commits
73bbe25d
Unverified
Commit
73bbe25d
authored
May 13, 2019
by
Honza Hommer
Browse files
add slack notify
parent
7625d662
Changes
1
Hide whitespace changes
Inline
Side-by-side
notify/slack.sh
View file @
73bbe25d
...
...
@@ -3,6 +3,8 @@
#Support Slack webhooks
#SLACK_WEBHOOK_URL=""
#SLACK_CHANNEL=""
#SLACK_USERNAME=""
slack_send
()
{
_subject
=
"
$1
"
...
...
@@ -18,23 +20,36 @@ slack_send() {
fi
_saveaccountconf_mutable SLACK_WEBHOOK_URL
"
$SLACK_WEBHOOK_URL
"
export
_H1
=
"Content-Type: application/json"
SLACK_CHANNEL
=
"
${
SLACK_CHANNEL
:-
$(
_readaccountconf_mutable SLACK_CHANNEL
)
}
"
if
[
-n
"
$SLACK_CHANNEL
"
]
;
then
_saveaccountconf_mutable SLACK_CHANNEL
"
$SLACK_CHANNEL
"
fi
SLACK_USERNAME
=
"
${
SLACK_USERNAME
:-
$(
_readaccountconf_mutable SLACK_USERNAME
)
}
"
if
[
-n
"
$SLACK_USERNAME
"
]
;
then
_saveaccountconf_mutable SLACK_USERNAME
"
$SLACK_USERNAME
"
fi
_content
=
"
$(
echo
"
$_subject
:
$_content
"
| _json_encode
)
"
_data
=
"{
\"
text
\"
:
\"
$_content
\"
}"
export
_H1
=
"Content-Type: application/json"
echo
"
$_content
"
echo
"
$_data
"
_content
=
"
$(
printf
"*%s*
\n
%s"
"
$_subject
"
"
$_content
"
| _json_encode
)
"
_data
=
"{
\"
text
\"
:
\"
$_content
\"
, "
if
[
-n
"
$SLACK_CHANNEL
"
]
;
then
_data
=
"
$_data
\"
channel
\"
:
\"
$SLACK_CHANNEL
\"
, "
fi
if
[
-n
"
$SLACK_USERNAME
"
]
;
then
_data
=
"
$_data
\"
username
\"
:
\"
$SLACK_USERNAME
\"
, "
fi
_data
=
"
$_data
\"
mrkdwn
\"
:
\"
true
\"
}"
if
_post
"
$_data
"
"
$SLACK_WEBHOOK_URL
"
;
then
# shellcheck disable=SC2154
if
[
-z
"
$response
"
]
;
then
_info
"slack send sccess."
if
[
"
$response
"
=
"ok"
]
;
then
_info
"slack send s
u
ccess."
return
0
fi
fi
_err
"slack send error."
_err
"
$response
"
return
1
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment