Documentation ¶
Index ¶
Constants ¶
const Version = "unknown"
Version is the current version of the library.
Variables ¶
var ErrSendNotification = errors.New("send notification")
ErrSendNotification signals that the notifier failed to send a notification.
Functions ¶
func Disable ¶
func Disable(n *Notify)
Disable is an Option function that disables the Notify instance. It is enabled by default.
func Enable ¶
func Enable(n *Notify)
Enable is an Option function that enables the Notify instance. This is the default behavior.
func Send ¶
Send calls the underlying notification services to send the given subject and message to their respective endpoints.
func UseServices ¶
func UseServices(services ...Notifier)
UseServices adds the given service(s) to the Notifier's services list.
Types ¶
type Notifier ¶
Notifier defines the behavior for notification services.
The Send function simply sends a subject and a message string to the internal destination Notifier.
E.g. for telegram.Telegram it sends the message to the specified group chat.
type Notify ¶
type Notify struct { Disabled bool // contains filtered or unexported fields }
Notify is the central struct for managing notification services and sending messages to them.
func Default ¶
func Default() *Notify
Default returns the standard Notify instance used by the package-level send function.
func New ¶
func New() *Notify
New returns a new instance of Notify. It returns a new Notify instance with default options. By default, the Notify instance is enabled.
func NewWithOptions ¶
NewWithOptions returns a new instance of Notify with the given options. If no options are provided, it returns a new Notify instance with default options. By default, the Notify instance is enabled.
func NewWithServices ¶
NewWithServices returns a new instance of Notify with the given services. By default, the Notify instance is enabled. If no services are provided, it returns a new Notify instance with default options.
func (*Notify) Send ¶
Send calls the underlying notification services to send the given subject and message to their respective endpoints.
func (*Notify) UseServices ¶
UseServices adds the given service(s) to the Notifier's services list.
func (*Notify) WithOptions ¶
WithOptions applies the given options to the Notify instance. If no options are provided, it returns the Notify instance unchanged.
Directories ¶
Path | Synopsis |
---|---|
service
|
|
bark
Package bark provides a service for sending messages to bark.
|
Package bark provides a service for sending messages to bark. |
fcm
Package fcm provides message notification integration for Firebase Cloud Messaging (FCM).
|
Package fcm provides message notification integration for Firebase Cloud Messaging (FCM). |
googlechat
Package googlechat provides message notification integration sent to multiple spaces within a Google Chat Application.
|
Package googlechat provides message notification integration sent to multiple spaces within a Google Chat Application. |
http
Package http provides an HTTP service.
|
Package http provides an HTTP service. |
lark
Package lark provides message notification integration for Lark.
|
Package lark provides message notification integration for Lark. |
matrix
Package matrix provides message notification integration for Matrix.
|
Package matrix provides message notification integration for Matrix. |
mattermost
Package mattermost provides message notification integration for mattermost.com.
|
Package mattermost provides message notification integration for mattermost.com. |
plivo
Package plivo provides message notification integration for Plivo.
|
Package plivo provides message notification integration for Plivo. |
pushover
Package pushover implements a Pushover notifier, allowing messages to be sent to multiple recipients and supports both users and groups.
|
Package pushover implements a Pushover notifier, allowing messages to be sent to multiple recipients and supports both users and groups. |
reddit
Package reddit implements a Reddit notifier, allowing messages to be sent to multiple recipients
|
Package reddit implements a Reddit notifier, allowing messages to be sent to multiple recipients |
syslog
Package syslog provides message notification integration for local or remote syslogs.
|
Package syslog provides message notification integration for local or remote syslogs. |
twilio
Package twilio provides message notification integration for Twilio (Message Service).
|
Package twilio provides message notification integration for Twilio (Message Service). |
viber
Package viber provides a service for sending messages to viber.
|
Package viber provides a service for sending messages to viber. |
webpush
Package webpush provides a service for sending messages to viber.
|
Package webpush provides a service for sending messages to viber. |
whatsapp
Package whatsapp is currently a [ NO-OP ] service! We're sorry for the inconveniences.
|
Package whatsapp is currently a [ NO-OP ] service! We're sorry for the inconveniences. |