2018-08-09 22:38:19 +00:00
|
|
|
package slack
|
|
|
|
|
|
|
|
import (
|
2020-03-01 19:59:19 +00:00
|
|
|
"context"
|
2018-10-07 21:17:46 +00:00
|
|
|
"net/http"
|
2018-08-09 22:38:19 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type WebhookMessage struct {
|
2019-09-07 20:46:58 +00:00
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
IconEmoji string `json:"icon_emoji,omitempty"`
|
|
|
|
IconURL string `json:"icon_url,omitempty"`
|
|
|
|
Channel string `json:"channel,omitempty"`
|
|
|
|
ThreadTimestamp string `json:"thread_ts,omitempty"`
|
|
|
|
Text string `json:"text,omitempty"`
|
|
|
|
Attachments []Attachment `json:"attachments,omitempty"`
|
|
|
|
Parse string `json:"parse,omitempty"`
|
2020-07-18 15:27:41 +00:00
|
|
|
Blocks *Blocks `json:"blocks,omitempty"`
|
2018-08-09 22:38:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func PostWebhook(url string, msg *WebhookMessage) error {
|
2020-03-01 19:59:19 +00:00
|
|
|
return PostWebhookCustomHTTPContext(context.Background(), url, http.DefaultClient, msg)
|
2019-09-07 20:46:58 +00:00
|
|
|
}
|
|
|
|
|
2020-03-01 19:59:19 +00:00
|
|
|
func PostWebhookContext(ctx context.Context, url string, msg *WebhookMessage) error {
|
|
|
|
return PostWebhookCustomHTTPContext(ctx, url, http.DefaultClient, msg)
|
|
|
|
}
|
2018-08-09 22:38:19 +00:00
|
|
|
|
2020-03-01 19:59:19 +00:00
|
|
|
func PostWebhookCustomHTTP(url string, httpClient *http.Client, msg *WebhookMessage) error {
|
|
|
|
return PostWebhookCustomHTTPContext(context.Background(), url, httpClient, msg)
|
2018-08-09 22:38:19 +00:00
|
|
|
}
|