1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-01-08 03:31:59 +02:00
goreleaser/internal/pipe/teams/teams.go
Batuhan Apaydın b99ccc029c
feat: add message template support for git providers (#2626)
* feat: add message template support for git providers

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>
Co-authored-by: Furkan Türkal <furkan.turkal@trendyol.com>
Co-authored-by: Erkan Zileli <erkan.zileli@trendyol.com>
Signed-off-by: Batuhan Apaydın <batuhan.apaydin@trendyol.com>

* Apply suggestions from code review

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
Co-authored-by: Furkan Türkal <furkan.turkal@trendyol.com>
Co-authored-by: Erkan Zileli <erkan.zileli@trendyol.com>
2021-11-06 15:39:43 -03:00

83 lines
2.5 KiB
Go

package teams
import (
"fmt"
"github.com/apex/log"
goteamsnotify "github.com/atc0005/go-teams-notify/v2"
"github.com/caarlos0/env/v6"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"
)
const (
defaultColor = "#2D313E"
defaultIcon = "https://goreleaser.com/static/avatar.png"
defaultMessageTemplate = `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
defaultMessageTitle = `{{ .ProjectName }} {{ .Tag }} is out!`
)
type Pipe struct{}
func (Pipe) String() string { return "teams" }
func (Pipe) Skip(ctx *context.Context) bool { return !ctx.Config.Announce.Teams.Enabled }
type Config struct {
Webhook string `env:"TEAMS_WEBHOOK,notEmpty"`
}
func (p Pipe) Default(ctx *context.Context) error {
if ctx.Config.Announce.Teams.MessageTemplate == "" {
ctx.Config.Announce.Teams.MessageTemplate = defaultMessageTemplate
}
if ctx.Config.Announce.Teams.TitleTemplate == "" {
ctx.Config.Announce.Teams.TitleTemplate = defaultMessageTitle
}
if ctx.Config.Announce.Teams.IconURL == "" {
ctx.Config.Announce.Teams.IconURL = defaultIcon
}
if ctx.Config.Announce.Teams.Color == "" {
ctx.Config.Announce.Teams.Color = defaultColor
}
return nil
}
func (p Pipe) Announce(ctx *context.Context) error {
title, err := tmpl.New(ctx).Apply(ctx.Config.Announce.Teams.TitleTemplate)
if err != nil {
return fmt.Errorf("announce: failed to announce to teams: %w", err)
}
msg, err := tmpl.New(ctx).Apply(ctx.Config.Announce.Teams.MessageTemplate)
if err != nil {
return fmt.Errorf("announce: failed to announce to teams: %w", err)
}
var cfg Config
if err := env.Parse(&cfg); err != nil {
return fmt.Errorf("announce: failed to announce to teams: %w", err)
}
log.Infof("posting: '%s'", msg)
client := goteamsnotify.NewClient()
msgCard := goteamsnotify.NewMessageCard()
msgCard.Summary = title
msgCard.ThemeColor = ctx.Config.Announce.Teams.Color
messageCardSection := goteamsnotify.NewMessageCardSection()
messageCardSection.ActivityTitle = title
messageCardSection.ActivityText = msg
messageCardSection.Markdown = true
messageCardSection.ActivityImage = ctx.Config.Announce.Teams.IconURL
err = msgCard.AddSection(messageCardSection)
if err != nil {
return fmt.Errorf("announce: failed to announce to teams: %w", err)
}
err = client.Send(cfg.Webhook, msgCard)
if err != nil {
return fmt.Errorf("announce: failed to announce to teams: %w", err)
}
return nil
}