1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-28 08:39:13 +02:00
notify/send.go

34 lines
611 B
Go

package notify
import (
"context"
"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 {
if n.Disabled {
return nil
}
var eg errgroup.Group
for _, service := range n.notifiers {
if service != nil {
s := service
eg.Go(func() error {
return s.Send(ctx, subject, message)
})
}
}
err := eg.Wait()
if err != nil {
err = errors.Wrap(ErrSendNotification, err.Error())
}
return err
}