2014-03-26 10:43:40 +00:00
|
|
|
package notify
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
2014-04-06 09:05:30 +00:00
|
|
|
"fmt"
|
2014-04-17 22:57:13 +00:00
|
|
|
"net/url"
|
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"
|
2014-04-09 09:39:23 +00:00
|
|
|
slackStartedMessage = "*Building* %s, commit <%s|%s>, author %s"
|
|
|
|
slackSuccessMessage = "*Success* %s, commit <%s|%s>, author %s"
|
|
|
|
slackFailureMessage = "*Failed* %s, commit <%s|%s>, author %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"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Slack) Send(context *Context) error {
|
|
|
|
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-04-09 09:39:23 +00:00
|
|
|
func getBuildUrl(context *Context) string {
|
2014-04-17 22:57:13 +00:00
|
|
|
branchQuery := url.Values{}
|
|
|
|
if context.Commit.Branch != "" {
|
|
|
|
branchQuery.Set("branch", context.Commit.Branch)
|
|
|
|
}
|
|
|
|
|
|
|
|
return fmt.Sprintf("%s/%s/commit/%s?%s", context.Host, context.Repo.Slug, context.Commit.Hash, branchQuery.Encode())
|
2014-04-09 09:39:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func getMessage(context *Context, message string) string {
|
|
|
|
url := getBuildUrl(context)
|
|
|
|
return fmt.Sprintf(message, context.Repo.Name, url, context.Commit.HashShort(), context.Commit.Author)
|
|
|
|
}
|
|
|
|
|
2014-03-26 10:43:40 +00:00
|
|
|
func (s *Slack) sendStarted(context *Context) error {
|
2014-04-09 09:39:23 +00:00
|
|
|
return s.send(getMessage(context, slackStartedMessage))
|
2014-03-26 10:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Slack) sendSuccess(context *Context) error {
|
2014-04-09 09:39:23 +00:00
|
|
|
return s.send(getMessage(context, slackSuccessMessage))
|
2014-03-26 10:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Slack) sendFailure(context *Context) error {
|
2014-04-09 09:39:23 +00:00
|
|
|
return s.send(getMessage(context, slackFailureMessage))
|
2014-03-26 10:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// helper function to send HTTP requests
|
|
|
|
func (s *Slack) send(msg string) error {
|
|
|
|
// data will get posted in this format
|
|
|
|
data := struct {
|
|
|
|
Channel string `json:"channel"`
|
|
|
|
Username string `json:"username"`
|
|
|
|
Text string `json:"text"`
|
|
|
|
}{s.Channel, s.Username, msg}
|
|
|
|
|
|
|
|
// 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-03-26 10:43:40 +00:00
|
|
|
go sendJson(url, payload)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|