5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2024-09-20 06:42:31 +00:00
matterbridge/vendor/github.com/slack-go/slack/webhooks.go

30 lines
1.0 KiB
Go
Raw Normal View History

2018-08-09 22:38:19 +00:00
package slack
import (
"context"
"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"`
2018-08-09 22:38:19 +00:00
}
func PostWebhook(url string, msg *WebhookMessage) error {
return PostWebhookCustomHTTPContext(context.Background(), url, http.DefaultClient, msg)
2019-09-07 20:46:58 +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
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
}