mirror of
https://github.com/crazy-max/diun.git
synced 2025-12-21 13:23:09 +01:00
84 lines
2.0 KiB
Go
84 lines
2.0 KiB
Go
package webhook
|
|
|
|
import (
|
|
"bytes"
|
|
"encoding/json"
|
|
"fmt"
|
|
"net/http"
|
|
"time"
|
|
|
|
"github.com/crazy-max/diun/internal/model"
|
|
"github.com/crazy-max/diun/internal/notif/notifier"
|
|
"github.com/opencontainers/go-digest"
|
|
)
|
|
|
|
// Client represents an active webhook notification object
|
|
type Client struct {
|
|
*notifier.Notifier
|
|
cfg model.Webhook
|
|
app model.App
|
|
}
|
|
|
|
// New creates a new webhook notification instance
|
|
func New(config model.Webhook, app model.App) notifier.Notifier {
|
|
return notifier.Notifier{
|
|
Handler: &Client{
|
|
cfg: config,
|
|
app: app,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Name returns notifier's name
|
|
func (c *Client) Name() string {
|
|
return "webhook"
|
|
}
|
|
|
|
// Send creates and sends a webhook notification with an entry
|
|
func (c *Client) Send(entry model.NotifEntry) error {
|
|
hc := http.Client{
|
|
Timeout: time.Duration(c.cfg.Timeout) * time.Second,
|
|
}
|
|
|
|
body, err := json.Marshal(struct {
|
|
Version string `json:"diun_version"`
|
|
Status string `json:"status"`
|
|
Provider string `json:"provider"`
|
|
Image string `json:"image"`
|
|
MIMEType string `json:"mime_type"`
|
|
Digest digest.Digest `json:"digest"`
|
|
Created *time.Time `json:"created"`
|
|
Architecture string `json:"architecture"`
|
|
Os string `json:"os"`
|
|
}{
|
|
Version: c.app.Version,
|
|
Status: string(entry.Status),
|
|
Provider: entry.Provider,
|
|
Image: entry.Image.String(),
|
|
MIMEType: entry.Manifest.MIMEType,
|
|
Digest: entry.Manifest.Digest,
|
|
Created: entry.Manifest.Created,
|
|
Architecture: entry.Manifest.Architecture,
|
|
Os: entry.Manifest.Os,
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
req, err := http.NewRequest(c.cfg.Method, c.cfg.Endpoint, bytes.NewBuffer([]byte(body)))
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
if len(c.cfg.Headers) > 0 {
|
|
for key, value := range c.cfg.Headers {
|
|
req.Header.Add(key, value)
|
|
}
|
|
}
|
|
|
|
req.Header.Set("User-Agent", fmt.Sprintf("%s %s", c.app.Name, c.app.Version))
|
|
|
|
_, err = hc.Do(req)
|
|
return err
|
|
}
|