woodpecker/pkg/plugin/notify/notification.go

60 lines
1.1 KiB
Go
Raw Normal View History

2014-02-07 10:10:01 +00:00
package notify
import (
"github.com/drone/drone/pkg/model"
)
// Context represents the context of an
// in-progress build request.
type Context struct {
// Global settings
Host string
2014-02-07 10:10:01 +00:00
// User that owns the repository
User *model.User
// Repository being built.
Repo *model.Repo
// Commit being built
Commit *model.Commit
}
type Sender interface {
Send(context *Context) error
}
// Notification stores the configuration details
// for notifying a user, or group of users,
// when their Build has completed.
type Notification struct {
Email *Email `yaml:"email,omitempty"`
Webhook *Webhook `yaml:"webhook,omitempty"`
Hipchat *Hipchat `yaml:"hipchat,omitempty"`
2014-03-06 18:45:21 +00:00
Irc *IRC `yaml:"irc,omitempty"`
2014-02-07 10:10:01 +00:00
}
func (n *Notification) Send(context *Context) error {
// send email notifications
if n.Email != nil {
n.Email.Send(context)
}
2014-02-07 10:10:01 +00:00
// send email notifications
if n.Webhook != nil {
n.Webhook.Send(context)
}
// send email notifications
if n.Hipchat != nil {
n.Hipchat.Send(context)
}
2014-03-06 18:45:21 +00:00
// send irc notifications
if n.Irc != nil {
n.Irc.Send(context)
}
2014-02-07 10:10:01 +00:00
return nil
}