Categorygithub.com/nikoksr/notify
modulepackage
1.0.0
Repository: https://github.com/nikoksr/notify.git
Documentation: pkg.go.dev

# README

notify logo

codecov Go Report Card Codacy Badge Maintainability go.dev reference

A dead simple Go library for sending notifications to various messaging services.

[July 2024 Update]: Notify is back under active maintenance! Read the full announcement here.

About

Notify was born out of my own need to have my API servers running in production be able to notify me when critical errors occur. Of course, Notify can be used for any other purpose as well. The library is kept as simple as possible for quick integration and ease of use.

Disclaimer

Any misuse of this library is your own liability and responsibility and cannot be attributed to the authors of this library. See license for more.

Spamming through the use of this library may get you permanently banned on most supported platforms.

Since Notify is highly dependent on the consistency of the supported external services and the corresponding latest client libraries, we cannot guarantee its reliability nor its consistency, and therefore you should probably not use or rely on Notify in critical scenarios.

Install

go get -u github.com/nikoksr/notify

Example usage

// Create a telegram service. Ignoring error for demo simplicity.
telegramService, _ := telegram.New("your_telegram_api_token")

// Passing a telegram chat id as receiver for our messages.
// Basically where should our message be sent?
telegramService.AddReceivers(-1234567890)

// Tell our notifier to use the telegram service. You can repeat the above process
// for as many services as you like and just tell the notifier to use them.
// Inspired by http middlewares used in higher level libraries.
notify.UseServices(telegramService)

// Send a test message.
_ = notify.Send(
	context.Background(),
	"Subject/Title",
	"The actual message - Hello, you awesome gophers! :)",
)

Recommendation

In this example, we use the global Send() function. Similar to most logging libraries such as zap, we provide global functions for convenience. However, as with most logging libraries, we also recommend avoiding the use of global functions as much as possible. Instead, use one of our versatile constructor functions to create a new local Notify instance and pass it down the stream.

Read the library docs for more information.

Contributing

Yes, please! Contributions of all kinds are very welcome! Feel free to check our open issues. Please also take a look at the contribution guidelines.

Psst, don't forget to check the list of missing services waiting to be added by you or create a new issue if you want a new service to be added.

Supported services

Click here to request a missing service.

ServicePathCreditsStatus
Amazon SESservice/amazonsesaws/aws-sdk-go-v2:heavy_check_mark:
Amazon SNSservice/amazonsnsaws/aws-sdk-go-v2:heavy_check_mark:
Barkservice/bark-:heavy_check_mark:
DingTalkservice/dindingblinkbean/dingtalk:heavy_check_mark:
Discordservice/discordbwmarrin/discordgo:heavy_check_mark:
Emailservice/mailjordan-wright/email:heavy_check_mark:
Firebase Cloud Messagingservice/fcmappleboy/go-fcm:heavy_check_mark:
Google Chatservice/googlechatgoogleapis/google-api-go-client:heavy_check_mark:
HTTPservice/http-:heavy_check_mark:
Larkservice/larkgo-lark/lark:heavy_check_mark:
Lineservice/lineline/line-bot-sdk-go:heavy_check_mark:
Line Notifyservice/lineutahta/go-linenotify:heavy_check_mark:
Mailgunservice/mailgunmailgun/mailgun-go:heavy_check_mark:
Matrixservice/matrixmautrix/go:heavy_check_mark:
Microsoft Teamsservice/msteamsatc0005/go-teams-notify:heavy_check_mark:
Plivoservice/plivoplivo/plivo-go:heavy_check_mark:
Pushoverservice/pushovergregdel/pushover:heavy_check_mark:
Pushbulletservice/pushbulletcschomburg/go-pushbullet:heavy_check_mark:
Redditservice/redditvartanbeno/go-reddit:heavy_check_mark:
RocketChatservice/rocketchatRocketChat/Rocket.Chat.Go.SDK:heavy_check_mark:
SendGridservice/sendgridsendgrid/sendgrid-go:heavy_check_mark:
Slackservice/slackslack-go/slack:heavy_check_mark:
Syslogservice/sysloglog/syslog:heavy_check_mark:
Telegramservice/telegramgo-telegram-bot-api/telegram-bot-api:heavy_check_mark:
TextMagicservice/textmagictextmagic/textmagic-rest-go-v2:heavy_check_mark:
Twilioservice/twiliokevinburke/twilio-go:heavy_check_mark:
Twitterservice/twitterdrswork/go-twitter:heavy_check_mark:
Viberservice/vibermileusna/viber:heavy_check_mark:
WeChatservice/wechatsilenceper/wechat:heavy_check_mark:
Webpush Notificationservice/webpushSherClockHolmes/webpush-go:heavy_check_mark:
WhatsAppservice/whatsappRhymen/go-whatsapp:x:

Special Thanks

Maintainers

Logo

The logo was made by the amazing MariaLetta.

Similar projects

Just to clarify, Notify was not inspired by any other project. I created it as a tiny subpackage of a larger project and only later decided to make it a standalone project. In this section I just want to mention other great projects.

Show your support

Please give a ⭐️ if you like the project! It draws more attention to the project, which helps us improve it even faster.

# Packages

No description provided by the author

# Functions

Default returns the standard Notify instance used by the package-level send function.
Disable is an Option function that disables the Notify instance.
Enable is an Option function that enables the Notify instance.
New returns a new instance of Notify.
NewWithOptions returns a new instance of Notify with the given options.
NewWithServices returns a new instance of Notify with the given services.
Send calls the underlying notification services to send the given subject and message to their respective endpoints.
UseServices adds the given service(s) to the Notifier's services list.

# Constants

Version is the current version of the library.

# Variables

ErrSendNotification signals that the notifier failed to send a notification.

# Structs

Notify is the central struct for managing notification services and sending messages to them.

# Interfaces

Notifier defines the behavior for notification services.

# Type aliases

Option is a function that can be used to configure a Notify instance.