1
0
mirror of https://github.com/nikoksr/notify.git synced 2024-11-24 08:22:18 +02:00
notify/notify.go

38 lines
1.2 KiB
Go
Raw Normal View History

2021-01-25 01:14:21 +02:00
package notify
import (
"github.com/pkg/errors"
)
const defaultDisabled = false // Notifier is enabled by default
2021-01-25 01:14:21 +02:00
// Notify is the central struct for managing notification services and sending messages to them.
type Notify struct {
Disabled bool
notifiers []Notifier
}
2021-01-25 01:14:21 +02:00
// ErrSendNotification signals that the notifier failed to send a notification.
2021-01-25 01:14:21 +02:00
var ErrSendNotification = errors.New("Send notification")
// Notifier defines the behavior for notification services. The Send command simply sends a message string to the
// internal destination Notifier. E.g for telegram it sends the message to the specified group chat.
type Notifier interface {
2021-01-25 01:14:21 +02:00
Send(string, string) error
}
// New returns a new instance of Notify. Defaulting to being not disabled and using the pseudo notification
// service under the hood.
func New() *Notify {
notifier := &Notify{
2021-01-25 01:14:21 +02:00
Disabled: defaultDisabled,
}
// Use the pseudo Notifier to prevent from nil reference bugs when using the Notify Notifier. In case no notifiers
// are provided or the creation of all other notifiers failed, the pseudo Notifier will be used under the hood
2021-01-25 01:14:21 +02:00
// doing nothing but preventing nil-reference errors.
notifier.usePseudo()
return notifier
}