ntfy/client/client.go

227 lines
6.7 KiB
Go
Raw Normal View History

// Package client provides a ntfy client to publish and subscribe to topics
2021-12-17 02:33:01 +01:00
package client
import (
"bufio"
"context"
"encoding/json"
"fmt"
"io"
2021-12-17 02:33:01 +01:00
"log"
"net/http"
"strings"
"sync"
"time"
)
// Event type constants
2021-12-17 02:33:01 +01:00
const (
MessageEvent = "message"
KeepaliveEvent = "keepalive"
OpenEvent = "open"
)
const (
maxResponseBytes = 4096
)
// Client is the ntfy client that can be used to publish and subscribe to ntfy topics
2021-12-17 02:33:01 +01:00
type Client struct {
Messages chan *Message
2021-12-18 20:43:27 +01:00
config *Config
2021-12-17 02:33:01 +01:00
subscriptions map[string]*subscription
mu sync.Mutex
}
// Message is a struct that represents a ntfy message
2021-12-17 02:33:01 +01:00
type Message struct {
ID string
Event string
Time int64
Topic string
2021-12-17 15:32:59 +01:00
TopicURL string
2021-12-17 02:33:01 +01:00
Message string
Title string
Priority int
Tags []string
Raw string
}
type subscription struct {
cancel context.CancelFunc
}
// New creates a new Client using a given Config
2021-12-18 20:43:27 +01:00
func New(config *Config) *Client {
2021-12-17 02:33:01 +01:00
return &Client{
Messages: make(chan *Message),
2021-12-18 20:43:27 +01:00
config: config,
2021-12-17 02:33:01 +01:00
subscriptions: make(map[string]*subscription),
}
}
// Publish sends a message to a specific topic, optionally using options.
//
// A topic can be either a full URL (e.g. https://myhost.lan/mytopic), a short URL which is then prepended https://
// (e.g. myhost.lan -> https://myhost.lan), or a short name which is expanded using the default host in the
// config (e.g. mytopic -> https://ntfy.sh/mytopic).
//
// To pass title, priority and tags, check out WithTitle, WithPriority, WithTagsList, WithDelay, WithNoCache,
// WithNoFirebase, and the generic WithHeader.
func (c *Client) Publish(topic, message string, options ...PublishOption) (*Message, error) {
2021-12-19 04:02:36 +01:00
topicURL := c.expandTopicURL(topic)
2021-12-17 02:33:01 +01:00
req, _ := http.NewRequest("POST", topicURL, strings.NewReader(message))
for _, option := range options {
if err := option(req); err != nil {
return nil, err
2021-12-17 02:33:01 +01:00
}
}
resp, err := http.DefaultClient.Do(req)
if err != nil {
return nil, err
2021-12-17 02:33:01 +01:00
}
defer resp.Body.Close()
2021-12-17 02:33:01 +01:00
if resp.StatusCode != http.StatusOK {
return nil, fmt.Errorf("unexpected response %d from server", resp.StatusCode)
2021-12-17 02:33:01 +01:00
}
b, err := io.ReadAll(io.LimitReader(resp.Body, maxResponseBytes))
if err != nil {
return nil, err
}
m, err := toMessage(string(b), topicURL)
if err != nil {
return nil, err
}
return m, nil
2021-12-17 02:33:01 +01:00
}
// Poll queries a topic for all (or a limited set) of messages. Unlike Subscribe, this method only polls for
// messages and does not subscribe to messages that arrive after this call.
//
// A topic can be either a full URL (e.g. https://myhost.lan/mytopic), a short URL which is then prepended https://
// (e.g. myhost.lan -> https://myhost.lan), or a short name which is expanded using the default host in the
// config (e.g. mytopic -> https://ntfy.sh/mytopic).
//
// By default, all messages will be returned, but you can change this behavior using a SubscribeOption.
// See WithSince, WithSinceAll, WithSinceUnixTime, WithScheduled, and the generic WithQueryParam.
2021-12-18 20:43:27 +01:00
func (c *Client) Poll(topic string, options ...SubscribeOption) ([]*Message, error) {
2021-12-17 15:32:59 +01:00
ctx := context.Background()
messages := make([]*Message, 0)
msgChan := make(chan *Message)
errChan := make(chan error)
2021-12-18 20:43:27 +01:00
topicURL := c.expandTopicURL(topic)
2021-12-17 15:32:59 +01:00
go func() {
err := performSubscribeRequest(ctx, msgChan, topicURL, options...)
close(msgChan)
errChan <- err
}()
for m := range msgChan {
messages = append(messages, m)
}
return messages, <-errChan
}
// Subscribe subscribes to a topic to listen for newly incoming messages. The method starts a connection in the
// background and returns new messages via the Messages channel.
//
// A topic can be either a full URL (e.g. https://myhost.lan/mytopic), a short URL which is then prepended https://
// (e.g. myhost.lan -> https://myhost.lan), or a short name which is expanded using the default host in the
// config (e.g. mytopic -> https://ntfy.sh/mytopic).
//
// By default, only new messages will be returned, but you can change this behavior using a SubscribeOption.
// See WithSince, WithSinceAll, WithSinceUnixTime, WithScheduled, and the generic WithQueryParam.
//
// Example:
// c := client.New(client.NewConfig())
// c.Subscribe("mytopic")
// for m := range c.Messages {
// fmt.Printf("New message: %s", m.Message)
// }
2021-12-18 20:43:27 +01:00
func (c *Client) Subscribe(topic string, options ...SubscribeOption) string {
2021-12-17 02:33:01 +01:00
c.mu.Lock()
defer c.mu.Unlock()
2021-12-18 20:43:27 +01:00
topicURL := c.expandTopicURL(topic)
2021-12-17 02:33:01 +01:00
if _, ok := c.subscriptions[topicURL]; ok {
2021-12-18 20:43:27 +01:00
return topicURL
2021-12-17 02:33:01 +01:00
}
ctx, cancel := context.WithCancel(context.Background())
c.subscriptions[topicURL] = &subscription{cancel}
2021-12-17 15:32:59 +01:00
go handleSubscribeConnLoop(ctx, c.Messages, topicURL, options...)
2021-12-18 20:43:27 +01:00
return topicURL
2021-12-17 02:33:01 +01:00
}
// Unsubscribe unsubscribes from a topic that has been previously subscribed with Subscribe.
//
// A topic can be either a full URL (e.g. https://myhost.lan/mytopic), a short URL which is then prepended https://
// (e.g. myhost.lan -> https://myhost.lan), or a short name which is expanded using the default host in the
// config (e.g. mytopic -> https://ntfy.sh/mytopic).
2021-12-18 20:43:27 +01:00
func (c *Client) Unsubscribe(topic string) {
2021-12-17 02:33:01 +01:00
c.mu.Lock()
defer c.mu.Unlock()
2021-12-18 20:43:27 +01:00
topicURL := c.expandTopicURL(topic)
2021-12-17 02:33:01 +01:00
sub, ok := c.subscriptions[topicURL]
if !ok {
return
}
sub.cancel()
}
2021-12-18 20:43:27 +01:00
func (c *Client) expandTopicURL(topic string) string {
if strings.HasPrefix(topic, "http://") || strings.HasPrefix(topic, "https://") {
return topic
} else if strings.Contains(topic, "/") {
return fmt.Sprintf("https://%s", topic)
}
return fmt.Sprintf("%s/%s", c.config.DefaultHost, topic)
}
2021-12-17 15:32:59 +01:00
func handleSubscribeConnLoop(ctx context.Context, msgChan chan *Message, topicURL string, options ...SubscribeOption) {
2021-12-17 02:33:01 +01:00
for {
2021-12-17 15:32:59 +01:00
if err := performSubscribeRequest(ctx, msgChan, topicURL, options...); err != nil {
log.Printf("Connection to %s failed: %s", topicURL, err.Error())
2021-12-17 02:33:01 +01:00
}
select {
case <-ctx.Done():
2021-12-17 15:32:59 +01:00
log.Printf("Connection to %s exited", topicURL)
2021-12-17 02:33:01 +01:00
return
case <-time.After(10 * time.Second): // TODO Add incremental backoff
2021-12-17 02:33:01 +01:00
}
}
}
2021-12-17 15:32:59 +01:00
func performSubscribeRequest(ctx context.Context, msgChan chan *Message, topicURL string, options ...SubscribeOption) error {
2021-12-17 02:33:01 +01:00
req, err := http.NewRequestWithContext(ctx, http.MethodGet, fmt.Sprintf("%s/json", topicURL), nil)
if err != nil {
return err
}
2021-12-17 15:32:59 +01:00
for _, option := range options {
if err := option(req); err != nil {
return err
}
}
2021-12-17 02:33:01 +01:00
resp, err := http.DefaultClient.Do(req)
if err != nil {
return err
}
defer resp.Body.Close()
scanner := bufio.NewScanner(resp.Body)
for scanner.Scan() {
m, err := toMessage(scanner.Text(), topicURL)
if err != nil {
2021-12-17 02:33:01 +01:00
return err
}
msgChan <- m
}
return nil
}
func toMessage(s, topicURL string) (*Message, error) {
var m *Message
if err := json.NewDecoder(strings.NewReader(s)).Decode(&m); err != nil {
return nil, err
}
m.TopicURL = topicURL
m.Raw = s
return m, nil
}