0
0
Fork 0
mirror of https://github.com/crazy-max/diun.git synced 2025-01-26 08:48:50 +00:00
crazy-max_diun/internal/notif/teams/client.go
2024-12-15 00:10:58 +01:00

125 lines
2.9 KiB
Go

package teams
import (
"bytes"
"context"
"encoding/json"
"fmt"
"net/http"
"time"
"github.com/crazy-max/diun/v4/internal/model"
"github.com/crazy-max/diun/v4/internal/msg"
"github.com/crazy-max/diun/v4/internal/notif/notifier"
)
// Client represents an active webhook notification object
type Client struct {
*notifier.Notifier
cfg *model.NotifTeams
meta model.Meta
}
// New creates a new webhook notification instance
func New(config *model.NotifTeams, meta model.Meta) notifier.Notifier {
return notifier.Notifier{
Handler: &Client{
cfg: config,
meta: meta,
},
}
}
// Name returns notifier's name
func (c *Client) Name() string {
return "teams"
}
// Sections is grouping data together containing title, subtitle and facts and creating a nested json element
type Sections struct {
ActivityTitle string `json:"activityTitle"`
ActivitySubtitle string `json:"activitySubtitle"`
Facts []Fact `json:"facts"`
}
// Fact is grouping data together to create a nested json element containing a name and an associated value
type Fact struct {
Name string `json:"Name"`
Value string `json:"Value"`
}
// Send creates and sends a webhook notification with an entry
func (c *Client) Send(entry model.NotifEntry) error {
message, err := msg.New(msg.Options{
Meta: c.meta,
Entry: entry,
TemplateBody: c.cfg.TemplateBody,
})
if err != nil {
return err
}
_, body, err := message.RenderMarkdown()
if err != nil {
return err
}
themeColor := "68CA00"
if entry.Status == model.ImageStatusUpdate {
themeColor = "0076D7"
}
var facts []Fact
if *c.cfg.RenderFacts {
facts = []Fact{
{"Hostname", c.meta.Hostname},
{"Provider", entry.Provider},
{"Created", entry.Manifest.Created.Format("Jan 02, 2006 15:04:05 UTC")},
{"Digest", entry.Manifest.Digest.String()},
{"Platform", entry.Manifest.Platform},
}
}
jsonBody, err := json.Marshal(struct {
Type string `json:"@type"`
Context string `json:"@context"`
ThemeColor string `json:"themeColor"`
Summary string `json:"summary"`
Sections []Sections `json:"sections"`
}{
Type: "MessageCard",
Context: "https://schema.org/extensions",
ThemeColor: themeColor,
Summary: string(body),
Sections: []Sections{
{
ActivityTitle: string(body),
ActivitySubtitle: fmt.Sprintf("%s © %d %s %s", c.meta.Author, time.Now().Year(), c.meta.Name, c.meta.Version),
Facts: facts,
},
},
})
if err != nil {
return err
}
hc := http.Client{}
ctx, cancel := context.WithTimeout(context.Background(), time.Duration(10)*time.Second)
defer cancel()
req, err := http.NewRequestWithContext(ctx, "POST", c.cfg.WebhookURL, bytes.NewBuffer(jsonBody))
if err != nil {
return err
}
req.Header.Add("Content-Type", "application/json")
req.Header.Set("User-Agent", c.meta.UserAgent)
resp, err := hc.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
return nil
}