mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 07:30:28 +00:00
34 lines
668 B
Go
34 lines
668 B
Go
|
package slack
|
||
|
|
||
|
import (
|
||
|
"github.com/pkg/errors"
|
||
|
"net/http"
|
||
|
"bytes"
|
||
|
"encoding/json"
|
||
|
)
|
||
|
|
||
|
type WebhookMessage struct {
|
||
|
Text string `json:"text,omitempty"`
|
||
|
Attachments []Attachment `json:"attachments,omitempty"`
|
||
|
}
|
||
|
|
||
|
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));
|
||
|
|
||
|
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
|
||
|
}
|