focalboard/server/services/webhook/webhook.go

40 lines
791 B
Go
Raw Normal View History

2020-10-29 21:09:02 +01:00
package webhook
import (
"bytes"
"encoding/json"
"log"
"net/http"
2021-01-26 23:13:46 +01:00
"github.com/mattermost/focalboard/server/model"
"github.com/mattermost/focalboard/server/services/config"
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 {
log.Fatal("NotifyUpdate: json.Marshal", err)
}
for _, url := range wh.config.WebhookUpdate {
http.Post(url, "application/json", bytes.NewBuffer(json))
log.Printf("webhook.NotifyUpdate: %s", url)
}
}
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
}
2020-10-29 21:42:43 +01:00
// NewClient creates a new Client
func NewClient(config *config.Configuration) *Client {
return &Client{
2020-10-29 21:09:02 +01:00
config: config,
}
}