2014-02-07 10:10:01 +00:00
|
|
|
package notify
|
|
|
|
|
2014-02-11 22:17:35 +00:00
|
|
|
import "github.com/drone/drone/pkg/mail"
|
2014-02-07 10:10:01 +00:00
|
|
|
|
|
|
|
type Email struct {
|
|
|
|
Recipients []string `yaml:"recipients,omitempty"`
|
|
|
|
Success string `yaml:"on_success"`
|
|
|
|
Failure string `yaml:"on_failure"`
|
|
|
|
}
|
|
|
|
|
|
|
|
// Send will send an email, either success or failure,
|
|
|
|
// based on the Commit Status.
|
|
|
|
func (e *Email) Send(context *Context) error {
|
|
|
|
switch {
|
|
|
|
case context.Commit.Status == "Success" && e.Success != "never":
|
|
|
|
return e.sendSuccess(context)
|
|
|
|
case context.Commit.Status == "Failure" && e.Failure != "never":
|
|
|
|
return e.sendFailure(context)
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendFailure sends email notifications to the list of
|
|
|
|
// recipients indicating the build failed.
|
|
|
|
func (e *Email) sendFailure(context *Context) error {
|
|
|
|
// loop through and email recipients
|
2014-02-11 22:17:35 +00:00
|
|
|
for _, email := range e.Recipients {
|
|
|
|
if err := mail.SendFailure(context.Repo.Name, email, context); err != nil {
|
2014-02-07 10:10:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-11 22:17:35 +00:00
|
|
|
}
|
2014-02-07 10:10:01 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// sendSuccess sends email notifications to the list of
|
|
|
|
// recipients indicating the build was a success.
|
|
|
|
func (e *Email) sendSuccess(context *Context) error {
|
|
|
|
// loop through and email recipients
|
2014-02-11 22:17:35 +00:00
|
|
|
for _, email := range e.Recipients {
|
|
|
|
if err := mail.SendSuccess(context.Repo.Name, email, context); err != nil {
|
2014-02-07 10:10:01 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-02-11 22:17:35 +00:00
|
|
|
}
|
2014-02-07 10:10:01 +00:00
|
|
|
return nil
|
|
|
|
}
|