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

35 lines
672 B
Go
Raw Normal View History

2018-08-09 22:38:19 +00:00
package slack
import (
"bytes"
"encoding/json"
"net/http"
"github.com/pkg/errors"
2018-08-09 22:38:19 +00:00
)
type WebhookMessage struct {
Text string `json:"text,omitempty"`
Attachments []Attachment `json:"attachments,omitempty"`
2018-08-09 22:38:19 +00:00
}
func PostWebhook(url string, msg *WebhookMessage) error {
raw, err := json.Marshal(msg)
if err != nil {
return errors.Wrap(err, "marshal failed")
}
response, err := http.Post(url, "application/json", bytes.NewReader(raw))
2018-08-09 22:38:19 +00:00
if err != nil {
return errors.Wrap(err, "failed to post webhook")
}
if response.StatusCode != http.StatusOK {
return statusCodeError{Code: response.StatusCode, Status: response.Status}
}
return nil
}