2021-12-17 01:33:01 +00:00
|
|
|
package client
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bufio"
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
"log"
|
|
|
|
"net/http"
|
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
DefaultBaseURL = "https://ntfy.sh"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
MessageEvent = "message"
|
|
|
|
KeepaliveEvent = "keepalive"
|
|
|
|
OpenEvent = "open"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Client struct {
|
|
|
|
BaseURL string
|
|
|
|
Messages chan *Message
|
|
|
|
subscriptions map[string]*subscription
|
|
|
|
mu sync.Mutex
|
|
|
|
}
|
|
|
|
|
|
|
|
type Message struct {
|
|
|
|
ID string
|
|
|
|
Event string
|
|
|
|
Time int64
|
|
|
|
Topic string
|
2021-12-17 14:32:59 +00:00
|
|
|
BaseURL string
|
|
|
|
TopicURL string
|
2021-12-17 01:33:01 +00:00
|
|
|
Message string
|
|
|
|
Title string
|
|
|
|
Priority int
|
|
|
|
Tags []string
|
|
|
|
Raw string
|
|
|
|
}
|
|
|
|
|
|
|
|
type subscription struct {
|
|
|
|
cancel context.CancelFunc
|
|
|
|
}
|
|
|
|
|
|
|
|
var DefaultClient = New()
|
|
|
|
|
|
|
|
func New() *Client {
|
|
|
|
return &Client{
|
|
|
|
Messages: make(chan *Message),
|
|
|
|
subscriptions: make(map[string]*subscription),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Publish(topicURL, message string, options ...PublishOption) error {
|
|
|
|
req, _ := http.NewRequest("POST", topicURL, strings.NewReader(message))
|
|
|
|
for _, option := range options {
|
|
|
|
if err := option(req); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if resp.StatusCode != http.StatusOK {
|
|
|
|
return fmt.Errorf("unexpected response %d from server", resp.StatusCode)
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-12-17 14:32:59 +00:00
|
|
|
func (c *Client) Poll(topicURL string, options ...SubscribeOption) ([]*Message, error) {
|
|
|
|
ctx := context.Background()
|
|
|
|
messages := make([]*Message, 0)
|
|
|
|
msgChan := make(chan *Message)
|
|
|
|
errChan := make(chan error)
|
|
|
|
go func() {
|
|
|
|
err := performSubscribeRequest(ctx, msgChan, topicURL, options...)
|
|
|
|
close(msgChan)
|
|
|
|
errChan <- err
|
|
|
|
}()
|
|
|
|
for m := range msgChan {
|
|
|
|
messages = append(messages, m)
|
|
|
|
}
|
|
|
|
return messages, <-errChan
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Subscribe(topicURL string, options ...SubscribeOption) {
|
2021-12-17 01:33:01 +00:00
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
if _, ok := c.subscriptions[topicURL]; ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ctx, cancel := context.WithCancel(context.Background())
|
|
|
|
c.subscriptions[topicURL] = &subscription{cancel}
|
2021-12-17 14:32:59 +00:00
|
|
|
go handleSubscribeConnLoop(ctx, c.Messages, topicURL, options...)
|
2021-12-17 01:33:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *Client) Unsubscribe(topicURL string) {
|
|
|
|
c.mu.Lock()
|
|
|
|
defer c.mu.Unlock()
|
|
|
|
sub, ok := c.subscriptions[topicURL]
|
|
|
|
if !ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
sub.cancel()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-12-17 14:32:59 +00:00
|
|
|
func handleSubscribeConnLoop(ctx context.Context, msgChan chan *Message, topicURL string, options ...SubscribeOption) {
|
2021-12-17 01:33:01 +00:00
|
|
|
for {
|
2021-12-17 14:32:59 +00:00
|
|
|
if err := performSubscribeRequest(ctx, msgChan, topicURL, options...); err != nil {
|
|
|
|
log.Printf("Connection to %s failed: %s", topicURL, err.Error())
|
2021-12-17 01:33:01 +00:00
|
|
|
}
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
2021-12-17 14:32:59 +00:00
|
|
|
log.Printf("Connection to %s exited", topicURL)
|
2021-12-17 01:33:01 +00:00
|
|
|
return
|
|
|
|
case <-time.After(5 * time.Second):
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-17 14:32:59 +00:00
|
|
|
func performSubscribeRequest(ctx context.Context, msgChan chan *Message, topicURL string, options ...SubscribeOption) error {
|
2021-12-17 01:33:01 +00:00
|
|
|
req, err := http.NewRequestWithContext(ctx, http.MethodGet, fmt.Sprintf("%s/json", topicURL), nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-17 14:32:59 +00:00
|
|
|
for _, option := range options {
|
|
|
|
if err := option(req); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-12-17 01:33:01 +00:00
|
|
|
resp, err := http.DefaultClient.Do(req)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer resp.Body.Close()
|
|
|
|
scanner := bufio.NewScanner(resp.Body)
|
|
|
|
for scanner.Scan() {
|
|
|
|
var m *Message
|
|
|
|
line := scanner.Text()
|
|
|
|
if err := json.NewDecoder(strings.NewReader(line)).Decode(&m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m.BaseURL = strings.TrimSuffix(topicURL, "/"+m.Topic) // FIXME hack!
|
|
|
|
m.TopicURL = topicURL
|
|
|
|
m.Raw = line
|
|
|
|
msgChan <- m
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|