woodpecker/plugin/notify/slack.go

97 lines
2.5 KiB
Go
Raw Normal View History

2014-03-26 10:43:40 +00:00
package notify
import (
"encoding/json"
2014-04-06 09:05:30 +00:00
"fmt"
2014-10-11 22:41:20 +00:00
"github.com/drone/drone/shared/model"
2014-03-26 10:43:40 +00:00
)
const (
2014-04-06 20:04:13 +00:00
slackEndpoint = "https://%s.slack.com/services/hooks/incoming-webhook?token=%s"
slackStartedMessage = "*Building* <%s|%s> (%s) by %s"
slackSuccessMessage = "*Success* <%s|%s> (%s) by %s"
slackFailureMessage = "*Failed* <%s|%s> (%s) by %s"
2014-03-26 10:43:40 +00:00
)
type Slack struct {
Team string `yaml:"team,omitempty"`
Channel string `yaml:"channel,omitempty"`
Username string `yaml:"username,omitempty"`
Token string `yaml:"token,omitempty"`
Started bool `yaml:"on_started,omitempty"`
Success bool `yaml:"on_success,omitempty"`
Failure bool `yaml:"on_failure,omitempty"`
}
2014-10-11 22:41:20 +00:00
func (s *Slack) Send(context *model.Request) error {
2014-03-26 10:43:40 +00:00
switch {
case context.Commit.Status == "Started" && s.Started:
return s.sendStarted(context)
case context.Commit.Status == "Success" && s.Success:
return s.sendSuccess(context)
case context.Commit.Status == "Failure" && s.Failure:
return s.sendFailure(context)
}
return nil
}
2014-10-11 22:41:20 +00:00
func (s *Slack) getMessage(context *model.Request, message string) string {
2014-04-09 09:39:23 +00:00
url := getBuildUrl(context)
// drone/drone#3333333
linktext := context.Repo.Owner + "/" + context.Repo.Name + "#" + context.Commit.ShaShort()
return fmt.Sprintf(message, url, linktext, context.Commit.Branch, context.Commit.Author)
2014-04-09 09:39:23 +00:00
}
2014-10-11 22:41:20 +00:00
func (s *Slack) sendStarted(context *model.Request) error {
return s.send(s.getMessage(context, slackStartedMessage)+"\n - "+context.Commit.Message, "warning")
2014-03-26 10:43:40 +00:00
}
2014-10-11 22:41:20 +00:00
func (s *Slack) sendSuccess(context *model.Request) error {
return s.send(s.getMessage(context, slackSuccessMessage), "good")
2014-03-26 10:43:40 +00:00
}
2014-10-11 22:41:20 +00:00
func (s *Slack) sendFailure(context *model.Request) error {
return s.send(s.getMessage(context, slackFailureMessage), "danger")
2014-03-26 10:43:40 +00:00
}
// helper function to send HTTP requests
func (s *Slack) send(msg string, color string) error {
type Attachment struct {
Fallback string `json:"fallback"`
Text string `json:"text"`
Color string `json:"color"`
MrkdwnIn []string `json:"mrkdwn_in"`
}
attachments := []Attachment{
Attachment{
msg,
msg,
color,
[]string{"fallback", "text"},
},
}
2014-03-26 10:43:40 +00:00
// data will get posted in this format
data := struct {
Channel string `json:"channel"`
Username string `json:"username"`
Attachments []Attachment `json:"attachments"`
}{s.Channel, s.Username, attachments}
2014-03-26 10:43:40 +00:00
// data json encoded
payload, err := json.Marshal(data)
if err != nil {
return err
}
// send payload
2014-04-06 09:05:30 +00:00
url := fmt.Sprintf(slackEndpoint, s.Team, s.Token)
2014-10-11 22:41:20 +00:00
go sendJson(url, payload, nil)
2014-10-02 14:04:32 +00:00
return nil
}