1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-05-21 22:53:07 +02:00
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

55 lines
1.7 KiB
Go

package twitter
import (
"fmt"
"github.com/apex/log"
"github.com/caarlos0/env/v6"
"github.com/dghubble/go-twitter/twitter"
"github.com/dghubble/oauth1"
"github.com/goreleaser/goreleaser/internal/tmpl"
"github.com/goreleaser/goreleaser/pkg/context"
)
const defaultMessageTemplate = `{{ .ProjectName }} {{ .Tag }} is out! Check it out at {{ .ReleaseURL }}`
type Pipe struct{}
func (Pipe) String() string { return "twitter" }
func (Pipe) Skip(ctx *context.Context) bool { return !ctx.Config.Announce.Twitter.Enabled }
type Config struct {
ConsumerKey string `env:"TWITTER_CONSUMER_KEY,notEmpty"`
ConsumerSecret string `env:"TWITTER_CONSUMER_SECRET,notEmpty"`
AccessToken string `env:"TWITTER_ACCESS_TOKEN,notEmpty"`
AccessSecret string `env:"TWITTER_ACCESS_TOKEN_SECRET,notEmpty"`
}
func (Pipe) Default(ctx *context.Context) error {
if ctx.Config.Announce.Twitter.MessageTemplate == "" {
ctx.Config.Announce.Twitter.MessageTemplate = defaultMessageTemplate
}
return nil
}
func (Pipe) Announce(ctx *context.Context) error {
msg, err := tmpl.New(ctx).Apply(ctx.Config.Announce.Twitter.MessageTemplate)
if err != nil {
return fmt.Errorf("announce: failed to announce to twitter: %w", err)
}
var cfg Config
if err := env.Parse(&cfg); err != nil {
return fmt.Errorf("announce: failed to announce to twitter: %w", err)
}
log.Infof("posting: '%s'", msg)
config := oauth1.NewConfig(cfg.ConsumerKey, cfg.ConsumerSecret)
token := oauth1.NewToken(cfg.AccessToken, cfg.AccessSecret)
client := twitter.NewClient(config.Client(oauth1.NoContext, token))
if _, _, err := client.Statuses.Update(msg, nil); err != nil {
return fmt.Errorf("announce: failed to announce to twitter: %w", err)
}
return nil
}