focalboard/server/services/webhook/webhook.go

42 lines
938 B
Go
Raw Normal View History

2020-10-29 21:09:02 +01:00
package webhook
import (
"bytes"
"encoding/json"
"net/http"
2021-01-26 23:13:46 +01:00
"github.com/mattermost/focalboard/server/model"
"github.com/mattermost/focalboard/server/services/config"
"github.com/mattermost/focalboard/server/services/mlog"
2020-10-29 21:09:02 +01:00
)
// NotifyUpdate calls webhooks
2020-10-29 21:42:43 +01:00
func (wh *Client) NotifyUpdate(block model.Block) {
2020-10-29 21:32:51 +01:00
if len(wh.config.WebhookUpdate) < 1 {
return
}
2020-10-29 21:09:02 +01:00
json, err := json.Marshal(block)
if err != nil {
wh.logger.Fatal("NotifyUpdate: json.Marshal", mlog.Err(err))
2020-10-29 21:09:02 +01:00
}
for _, url := range wh.config.WebhookUpdate {
http.Post(url, "application/json", bytes.NewBuffer(json))
wh.logger.Debug("webhook.NotifyUpdate", mlog.String("url", url))
2020-10-29 21:09:02 +01:00
}
}
2020-10-29 21:42:43 +01:00
// Client is a webhook client
type Client struct {
2020-10-29 21:09:02 +01:00
config *config.Configuration
logger *mlog.Logger
2020-10-29 21:09:02 +01:00
}
2020-10-29 21:42:43 +01:00
// NewClient creates a new Client
func NewClient(config *config.Configuration, logger *mlog.Logger) *Client {
2020-10-29 21:42:43 +01:00
return &Client{
2020-10-29 21:09:02 +01:00
config: config,
logger: logger,
2020-10-29 21:09:02 +01:00
}
}