woodpecker/plugin/notify/email.go

49 lines
1.3 KiB
Go
Raw Normal View History

2014-02-07 10:10:01 +00:00
package notify
import (
"github.com/drone/drone/shared/model"
)
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 *model.Request) error {
2014-02-07 10:10:01 +00:00
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 *model.Request) error {
2014-02-07 10:10:01 +00:00
// loop through and email recipients
2014-06-04 21:25:38 +00:00
//for _, email := range e.Recipients {
//if err := mail.SendFailure(context.Repo.Name, context.Commit.HashShort(), email, context); err != nil {
// return err
//}
//}
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 *model.Request) error {
2014-02-07 10:10:01 +00:00
// loop through and email recipients
2014-06-04 21:25:38 +00:00
//for _, email := range e.Recipients {
// if err := mail.SendSuccess(context.Repo.Name, context.Commit.HashShort(), email, context); err != nil {
// return err
// }
//}
2014-02-07 10:10:01 +00:00
return nil
}