2021-09-01 21:46:25 +02:00
|
|
|
package slack
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"github.com/apex/log"
|
|
|
|
"github.com/caarlos0/env/v6"
|
|
|
|
"github.com/goreleaser/goreleaser/internal/tmpl"
|
|
|
|
"github.com/goreleaser/goreleaser/pkg/context"
|
2021-09-01 21:47:53 +02:00
|
|
|
"github.com/slack-go/slack"
|
2021-09-01 21:46:25 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
defaultUsername = `GoReleaser`
|
2021-11-03 01:03:23 +02:00
|
|
|
defaultMessageTemplate = `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ trimsuffix .GitURL ".git" }}/releases/tag/{{ .Tag }}`
|
2021-09-01 21:46:25 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Pipe struct{}
|
|
|
|
|
2021-09-18 15:21:29 +02:00
|
|
|
func (Pipe) String() string { return "slack" }
|
|
|
|
func (Pipe) Skip(ctx *context.Context) bool { return !ctx.Config.Announce.Slack.Enabled }
|
2021-09-01 21:46:25 +02:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
Webhook string `env:"SLACK_WEBHOOK,notEmpty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Pipe) Default(ctx *context.Context) error {
|
|
|
|
if ctx.Config.Announce.Slack.MessageTemplate == "" {
|
|
|
|
ctx.Config.Announce.Slack.MessageTemplate = defaultMessageTemplate
|
|
|
|
}
|
|
|
|
if ctx.Config.Announce.Slack.Username == "" {
|
|
|
|
ctx.Config.Announce.Slack.Username = defaultUsername
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (Pipe) Announce(ctx *context.Context) error {
|
|
|
|
msg, err := tmpl.New(ctx).Apply(ctx.Config.Announce.Slack.MessageTemplate)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("announce: failed to announce to slack: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
var cfg Config
|
|
|
|
if err := env.Parse(&cfg); err != nil {
|
|
|
|
return fmt.Errorf("announce: failed to announce to slack: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
log.Infof("posting: '%s'", msg)
|
|
|
|
|
|
|
|
wm := &slack.WebhookMessage{
|
|
|
|
Username: ctx.Config.Announce.Slack.Username,
|
|
|
|
IconEmoji: ctx.Config.Announce.Slack.IconEmoji,
|
|
|
|
IconURL: ctx.Config.Announce.Slack.IconURL,
|
|
|
|
Channel: ctx.Config.Announce.Slack.Channel,
|
|
|
|
Text: msg,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = slack.PostWebhook(cfg.Webhook, wm)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("announce: failed to announce to slack: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|