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

34 lines
611 B
Go
Raw Normal View History

2021-01-25 01:14:21 +02:00
package notify
import (
"context"
2021-01-25 01:14:21 +02:00
"github.com/pkg/errors"
"golang.org/x/sync/errgroup"
)
// Send calls the underlying notification services to send the given subject and message to their respective endpoints.
func (n Notify) Send(ctx context.Context, 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(ctx, subject, message)
2021-01-25 01:14:21 +02:00
})
}
}
err := eg.Wait()
if err != nil {
err = errors.Wrap(ErrSendNotification, err.Error())
}
return err
}