1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-12-16 10:29:42 +02:00
notify/send.go

32 lines
561 B
Go
Raw Normal View History

2021-01-25 01:14:21 +02:00
package notify
import (
"github.com/pkg/errors"
"golang.org/x/sync/errgroup"
)
// Send calls the underlying notification services to send the given message to their respective endpoints.
func (n Notify) Send(subject, message string) error {
2021-01-25 01:14:21 +02:00
if n.Disabled {
return nil
}
var eg errgroup.Group
for _, service := range n.notifiers {
2021-01-25 01:14:21 +02:00
if service != nil {
s := service
eg.Go(func() error {
return s.Send(subject, message)
})
}
}
err := eg.Wait()
if err != nil {
err = errors.Wrap(ErrSendNotification, err.Error())
}
return err
}