2021-10-23 03:26:01 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-10-29 05:50:38 +02:00
|
|
|
"context"
|
2021-12-24 00:03:04 +01:00
|
|
|
"embed"
|
2022-01-17 19:28:07 +01:00
|
|
|
"encoding/base64"
|
2021-10-23 03:26:01 +02:00
|
|
|
"encoding/json"
|
2021-12-27 16:39:28 +01:00
|
|
|
"errors"
|
2021-12-25 22:07:55 +01:00
|
|
|
firebase "firebase.google.com/go"
|
|
|
|
"firebase.google.com/go/messaging"
|
2021-10-23 19:21:33 +02:00
|
|
|
"fmt"
|
2021-12-27 15:48:09 +01:00
|
|
|
"github.com/emersion/go-smtp"
|
2022-01-15 19:23:35 +01:00
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
"golang.org/x/sync/errgroup"
|
2021-12-25 22:07:55 +01:00
|
|
|
"google.golang.org/api/option"
|
|
|
|
"heckel.io/ntfy/util"
|
2021-11-08 15:24:34 +01:00
|
|
|
"html/template"
|
2021-10-23 03:26:01 +02:00
|
|
|
"io"
|
|
|
|
"log"
|
2021-10-24 04:49:50 +02:00
|
|
|
"net"
|
2021-10-23 03:26:01 +02:00
|
|
|
"net/http"
|
2021-12-27 16:39:28 +01:00
|
|
|
"net/http/httptest"
|
2022-01-14 18:13:14 +01:00
|
|
|
"net/url"
|
2022-01-10 22:28:13 +01:00
|
|
|
"os"
|
2022-01-14 18:13:14 +01:00
|
|
|
"path"
|
2022-01-02 23:56:12 +01:00
|
|
|
"path/filepath"
|
2021-10-23 03:26:01 +02:00
|
|
|
"regexp"
|
2021-10-29 19:58:14 +02:00
|
|
|
"strconv"
|
2021-10-23 03:26:01 +02:00
|
|
|
"strings"
|
|
|
|
"sync"
|
|
|
|
"time"
|
2022-01-02 23:56:12 +01:00
|
|
|
"unicode/utf8"
|
2021-10-23 03:26:01 +02:00
|
|
|
)
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
// Server is the main server, providing the UI and API for ntfy
|
2021-10-23 03:26:01 +02:00
|
|
|
type Server struct {
|
2022-01-10 22:28:13 +01:00
|
|
|
config *Config
|
|
|
|
httpServer *http.Server
|
|
|
|
httpsServer *http.Server
|
|
|
|
unixListener net.Listener
|
|
|
|
smtpServer *smtp.Server
|
|
|
|
smtpBackend *smtpBackend
|
|
|
|
topics map[string]*topic
|
|
|
|
visitors map[string]*visitor
|
|
|
|
firebase subscriber
|
|
|
|
mailer mailer
|
|
|
|
messages int64
|
|
|
|
cache cache
|
2022-01-15 02:16:12 +01:00
|
|
|
fileCache *fileCache
|
2022-01-10 22:28:13 +01:00
|
|
|
closeChan chan bool
|
|
|
|
mu sync.Mutex
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-11-08 15:24:34 +01:00
|
|
|
type indexPage struct {
|
|
|
|
Topic string
|
2021-12-09 16:23:17 +01:00
|
|
|
CacheDuration time.Duration
|
2021-11-08 15:24:34 +01:00
|
|
|
}
|
|
|
|
|
2021-10-23 03:26:01 +02:00
|
|
|
var (
|
2021-12-27 22:06:40 +01:00
|
|
|
topicRegex = regexp.MustCompile(`^[-_A-Za-z0-9]{1,64}$`) // No /!
|
|
|
|
topicPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}$`) // Regex must match JS & Android app!
|
|
|
|
jsonPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/json$`)
|
|
|
|
ssePathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/sse$`)
|
|
|
|
rawPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/raw$`)
|
2022-01-15 19:23:35 +01:00
|
|
|
wsPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/ws$`)
|
2021-12-27 22:06:40 +01:00
|
|
|
publishPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/(publish|send|trigger)$`)
|
2021-10-29 19:58:14 +02:00
|
|
|
|
2021-12-09 04:13:59 +01:00
|
|
|
staticRegex = regexp.MustCompile(`^/static/.+`)
|
|
|
|
docsRegex = regexp.MustCompile(`^/docs(|/.*)$`)
|
2022-01-02 23:56:12 +01:00
|
|
|
fileRegex = regexp.MustCompile(`^/file/([-_A-Za-z0-9]{1,64})(?:\.[A-Za-z0-9]{1,16})?$`)
|
2022-01-07 14:49:28 +01:00
|
|
|
disallowedTopics = []string{"docs", "static", "file"}
|
2022-01-08 21:47:08 +01:00
|
|
|
attachURLRegex = regexp.MustCompile(`^https?://`)
|
2021-10-23 03:26:01 +02:00
|
|
|
|
2021-12-09 16:23:17 +01:00
|
|
|
templateFnMap = template.FuncMap{
|
|
|
|
"durationToHuman": util.DurationToHuman,
|
|
|
|
}
|
|
|
|
|
2021-11-08 15:24:34 +01:00
|
|
|
//go:embed "index.gohtml"
|
|
|
|
indexSource string
|
2021-12-09 16:23:17 +01:00
|
|
|
indexTemplate = template.Must(template.New("index").Funcs(templateFnMap).Parse(indexSource))
|
2021-10-24 03:29:45 +02:00
|
|
|
|
2021-11-18 15:22:33 +01:00
|
|
|
//go:embed "example.html"
|
2021-11-27 22:12:08 +01:00
|
|
|
exampleSource string
|
2021-11-18 15:22:33 +01:00
|
|
|
|
2021-10-24 20:22:53 +02:00
|
|
|
//go:embed static
|
2021-11-29 15:34:43 +01:00
|
|
|
webStaticFs embed.FS
|
|
|
|
webStaticFsCached = &util.CachingEmbedFS{ModTime: time.Now(), FS: webStaticFs}
|
2021-10-24 20:22:53 +02:00
|
|
|
|
2021-12-02 23:27:31 +01:00
|
|
|
//go:embed docs
|
2021-12-07 16:38:58 +01:00
|
|
|
docsStaticFs embed.FS
|
2021-12-02 23:27:31 +01:00
|
|
|
docsStaticCached = &util.CachingEmbedFS{ModTime: time.Now(), FS: docsStaticFs}
|
2021-10-23 03:26:01 +02:00
|
|
|
)
|
|
|
|
|
2021-12-14 04:30:28 +01:00
|
|
|
const (
|
2022-01-13 03:24:48 +01:00
|
|
|
firebaseControlTopic = "~control" // See Android if changed
|
|
|
|
emptyMessageBody = "triggered" // Used if message body is empty
|
|
|
|
defaultAttachmentMessage = "You received a file: %s" // Used if message body is empty, and there is an attachment
|
2022-01-17 19:28:07 +01:00
|
|
|
encodingBase64 = "base64"
|
2022-01-16 04:33:35 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// WebSocket constants
|
|
|
|
const (
|
|
|
|
wsWriteWait = 2 * time.Second
|
|
|
|
wsBufferSize = 1024
|
|
|
|
wsReadLimit = 64 // We only ever receive PINGs
|
|
|
|
wsPongWait = 15 * time.Second
|
2021-12-14 04:30:28 +01:00
|
|
|
)
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
// New instantiates a new Server. It creates the cache and adds a Firebase
|
|
|
|
// subscriber (if configured).
|
2021-12-19 04:02:36 +01:00
|
|
|
func New(conf *Config) (*Server, error) {
|
2021-10-29 19:58:14 +02:00
|
|
|
var firebaseSubscriber subscriber
|
2021-10-29 05:50:38 +02:00
|
|
|
if conf.FirebaseKeyFile != "" {
|
2021-10-29 19:58:14 +02:00
|
|
|
var err error
|
|
|
|
firebaseSubscriber, err = createFirebaseSubscriber(conf)
|
2021-10-29 05:50:38 +02:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2021-12-24 00:03:04 +01:00
|
|
|
var mailer mailer
|
2021-12-27 16:39:28 +01:00
|
|
|
if conf.SMTPSenderAddr != "" {
|
|
|
|
mailer = &smtpSender{config: conf}
|
2021-12-24 00:03:04 +01:00
|
|
|
}
|
2021-11-03 02:09:49 +01:00
|
|
|
cache, err := createCache(conf)
|
2021-11-02 19:08:21 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2021-11-03 02:09:49 +01:00
|
|
|
topics, err := cache.Topics()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
2022-01-07 14:49:28 +01:00
|
|
|
var fileCache *fileCache
|
2022-01-02 23:56:12 +01:00
|
|
|
if conf.AttachmentCacheDir != "" {
|
2022-01-07 14:49:28 +01:00
|
|
|
fileCache, err = newFileCache(conf.AttachmentCacheDir, conf.AttachmentTotalSizeLimit, conf.AttachmentFileSizeLimit)
|
|
|
|
if err != nil {
|
2022-01-02 23:56:12 +01:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
}
|
2021-10-23 03:26:01 +02:00
|
|
|
return &Server{
|
2022-01-07 14:49:28 +01:00
|
|
|
config: conf,
|
|
|
|
cache: cache,
|
|
|
|
fileCache: fileCache,
|
|
|
|
firebase: firebaseSubscriber,
|
|
|
|
mailer: mailer,
|
|
|
|
topics: topics,
|
|
|
|
visitors: make(map[string]*visitor),
|
2021-10-29 05:50:38 +02:00
|
|
|
}, nil
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-12-19 04:02:36 +01:00
|
|
|
func createCache(conf *Config) (cache, error) {
|
2021-12-09 16:23:17 +01:00
|
|
|
if conf.CacheDuration == 0 {
|
|
|
|
return newNopCache(), nil
|
|
|
|
} else if conf.CacheFile != "" {
|
2021-11-03 02:09:49 +01:00
|
|
|
return newSqliteCache(conf.CacheFile)
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
2021-11-03 02:09:49 +01:00
|
|
|
return newMemCache(), nil
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
|
|
|
|
2021-12-19 04:02:36 +01:00
|
|
|
func createFirebaseSubscriber(conf *Config) (subscriber, error) {
|
2021-10-29 19:58:14 +02:00
|
|
|
fb, err := firebase.NewApp(context.Background(), nil, option.WithCredentialsFile(conf.FirebaseKeyFile))
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
msg, err := fb.Messaging(context.Background())
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return func(m *message) error {
|
2021-12-14 04:30:28 +01:00
|
|
|
var data map[string]string // Matches https://ntfy.sh/docs/subscribe/api/#json-message-format
|
|
|
|
switch m.Event {
|
|
|
|
case keepaliveEvent, openEvent:
|
|
|
|
data = map[string]string{
|
|
|
|
"id": m.ID,
|
|
|
|
"time": fmt.Sprintf("%d", m.Time),
|
|
|
|
"event": m.Event,
|
|
|
|
"topic": m.Topic,
|
|
|
|
}
|
|
|
|
case messageEvent:
|
|
|
|
data = map[string]string{
|
2021-11-27 22:12:08 +01:00
|
|
|
"id": m.ID,
|
|
|
|
"time": fmt.Sprintf("%d", m.Time),
|
|
|
|
"event": m.Event,
|
|
|
|
"topic": m.Topic,
|
|
|
|
"priority": fmt.Sprintf("%d", m.Priority),
|
|
|
|
"tags": strings.Join(m.Tags, ","),
|
2022-01-04 23:40:41 +01:00
|
|
|
"click": m.Click,
|
2021-11-27 22:12:08 +01:00
|
|
|
"title": m.Title,
|
|
|
|
"message": m.Message,
|
2022-01-17 19:49:02 +01:00
|
|
|
"encoding": m.Encoding,
|
2021-12-14 04:30:28 +01:00
|
|
|
}
|
2022-01-04 00:55:08 +01:00
|
|
|
if m.Attachment != nil {
|
|
|
|
data["attachment_name"] = m.Attachment.Name
|
|
|
|
data["attachment_type"] = m.Attachment.Type
|
|
|
|
data["attachment_size"] = fmt.Sprintf("%d", m.Attachment.Size)
|
|
|
|
data["attachment_expires"] = fmt.Sprintf("%d", m.Attachment.Expires)
|
|
|
|
data["attachment_url"] = m.Attachment.URL
|
|
|
|
}
|
2021-12-14 04:30:28 +01:00
|
|
|
}
|
2022-01-04 19:59:54 +01:00
|
|
|
var androidConfig *messaging.AndroidConfig
|
|
|
|
if m.Priority >= 4 {
|
|
|
|
androidConfig = &messaging.AndroidConfig{
|
|
|
|
Priority: "high",
|
|
|
|
}
|
|
|
|
}
|
2022-01-04 20:43:37 +01:00
|
|
|
_, err := msg.Send(context.Background(), maybeTruncateFCMMessage(&messaging.Message{
|
2022-01-04 19:59:54 +01:00
|
|
|
Topic: m.Topic,
|
|
|
|
Data: data,
|
|
|
|
Android: androidConfig,
|
2022-01-04 20:43:37 +01:00
|
|
|
}))
|
2021-10-29 19:58:14 +02:00
|
|
|
return err
|
|
|
|
}, nil
|
|
|
|
}
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
// Run executes the main server. It listens on HTTP (+ HTTPS, if configured), and starts
|
|
|
|
// a manager go routine to print stats and prune messages.
|
2021-10-23 03:26:01 +02:00
|
|
|
func (s *Server) Run() error {
|
2022-01-10 22:28:13 +01:00
|
|
|
var listenStr string
|
|
|
|
if s.config.ListenHTTP != "" {
|
|
|
|
listenStr += fmt.Sprintf(" %s[http]", s.config.ListenHTTP)
|
|
|
|
}
|
2021-12-02 14:52:48 +01:00
|
|
|
if s.config.ListenHTTPS != "" {
|
2022-01-10 22:28:13 +01:00
|
|
|
listenStr += fmt.Sprintf(" %s[https]", s.config.ListenHTTPS)
|
|
|
|
}
|
|
|
|
if s.config.ListenUnix != "" {
|
|
|
|
listenStr += fmt.Sprintf(" %s[unix]", s.config.ListenUnix)
|
2021-12-02 14:52:48 +01:00
|
|
|
}
|
2021-12-27 22:06:40 +01:00
|
|
|
if s.config.SMTPServerListen != "" {
|
2022-01-10 22:28:13 +01:00
|
|
|
listenStr += fmt.Sprintf(" %s[smtp]", s.config.SMTPServerListen)
|
2021-12-27 22:06:40 +01:00
|
|
|
}
|
2022-01-10 22:28:13 +01:00
|
|
|
log.Printf("Listening on%s", listenStr)
|
2021-12-22 23:45:19 +01:00
|
|
|
mux := http.NewServeMux()
|
|
|
|
mux.HandleFunc("/", s.handle)
|
2021-12-02 14:52:48 +01:00
|
|
|
errChan := make(chan error)
|
2021-12-22 14:17:50 +01:00
|
|
|
s.mu.Lock()
|
|
|
|
s.closeChan = make(chan bool)
|
2022-01-10 22:28:13 +01:00
|
|
|
if s.config.ListenHTTP != "" {
|
|
|
|
s.httpServer = &http.Server{Addr: s.config.ListenHTTP, Handler: mux}
|
|
|
|
go func() {
|
|
|
|
errChan <- s.httpServer.ListenAndServe()
|
|
|
|
}()
|
|
|
|
}
|
2021-12-02 14:52:48 +01:00
|
|
|
if s.config.ListenHTTPS != "" {
|
2022-01-06 14:45:23 +01:00
|
|
|
s.httpsServer = &http.Server{Addr: s.config.ListenHTTPS, Handler: mux}
|
2021-12-02 14:52:48 +01:00
|
|
|
go func() {
|
2021-12-22 14:17:50 +01:00
|
|
|
errChan <- s.httpsServer.ListenAndServeTLS(s.config.CertFile, s.config.KeyFile)
|
2021-12-02 14:52:48 +01:00
|
|
|
}()
|
|
|
|
}
|
2022-01-10 22:28:13 +01:00
|
|
|
if s.config.ListenUnix != "" {
|
|
|
|
go func() {
|
|
|
|
var err error
|
|
|
|
s.mu.Lock()
|
|
|
|
os.Remove(s.config.ListenUnix)
|
|
|
|
s.unixListener, err = net.Listen("unix", s.config.ListenUnix)
|
|
|
|
if err != nil {
|
|
|
|
errChan <- err
|
|
|
|
return
|
|
|
|
}
|
|
|
|
s.mu.Unlock()
|
|
|
|
httpServer := &http.Server{Handler: mux}
|
|
|
|
errChan <- httpServer.Serve(s.unixListener)
|
|
|
|
}()
|
|
|
|
}
|
2021-12-27 16:39:28 +01:00
|
|
|
if s.config.SMTPServerListen != "" {
|
2021-12-27 15:48:09 +01:00
|
|
|
go func() {
|
2021-12-27 22:06:40 +01:00
|
|
|
errChan <- s.runSMTPServer()
|
2021-12-27 15:48:09 +01:00
|
|
|
}()
|
|
|
|
}
|
2021-12-22 14:17:50 +01:00
|
|
|
s.mu.Unlock()
|
2021-12-22 23:20:43 +01:00
|
|
|
go s.runManager()
|
|
|
|
go s.runAtSender()
|
2022-01-21 20:17:59 +01:00
|
|
|
go s.runFirebaseKeepaliver()
|
2021-12-27 15:48:09 +01:00
|
|
|
|
2021-12-02 14:52:48 +01:00
|
|
|
return <-errChan
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-12-22 14:17:50 +01:00
|
|
|
// Stop stops HTTP (+HTTPS) server and all managers
|
|
|
|
func (s *Server) Stop() {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
if s.httpServer != nil {
|
|
|
|
s.httpServer.Close()
|
|
|
|
}
|
|
|
|
if s.httpsServer != nil {
|
|
|
|
s.httpsServer.Close()
|
|
|
|
}
|
2022-01-10 22:28:13 +01:00
|
|
|
if s.unixListener != nil {
|
|
|
|
s.unixListener.Close()
|
|
|
|
}
|
2021-12-27 22:06:40 +01:00
|
|
|
if s.smtpServer != nil {
|
|
|
|
s.smtpServer.Close()
|
|
|
|
}
|
2021-12-22 14:17:50 +01:00
|
|
|
close(s.closeChan)
|
|
|
|
}
|
|
|
|
|
2021-10-23 03:26:01 +02:00
|
|
|
func (s *Server) handle(w http.ResponseWriter, r *http.Request) {
|
|
|
|
if err := s.handleInternal(w, r); err != nil {
|
2022-01-16 04:33:35 +01:00
|
|
|
if websocket.IsWebSocketUpgrade(r) {
|
|
|
|
log.Printf("[%s] WS %s %s - %s", r.RemoteAddr, r.Method, r.URL.Path, err.Error())
|
|
|
|
return // Do not attempt to write to upgraded connection
|
2021-10-24 04:49:50 +02:00
|
|
|
}
|
2022-01-16 04:33:35 +01:00
|
|
|
httpErr, ok := err.(*errHTTP)
|
|
|
|
if !ok {
|
|
|
|
httpErr = errHTTPInternalError
|
|
|
|
}
|
|
|
|
log.Printf("[%s] HTTP %s %s - %d - %d - %s", r.RemoteAddr, r.Method, r.URL.Path, httpErr.HTTPCode, httpErr.Code, err.Error())
|
2021-12-25 15:15:05 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
2022-01-16 04:33:35 +01:00
|
|
|
w.WriteHeader(httpErr.HTTPCode)
|
|
|
|
io.WriteString(w, httpErr.JSON()+"\n")
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleInternal(w http.ResponseWriter, r *http.Request) error {
|
2021-12-02 23:27:31 +01:00
|
|
|
if r.Method == http.MethodGet && r.URL.Path == "/" {
|
2021-10-23 03:26:01 +02:00
|
|
|
return s.handleHome(w, r)
|
2021-11-18 15:22:33 +01:00
|
|
|
} else if r.Method == http.MethodGet && r.URL.Path == "/example.html" {
|
|
|
|
return s.handleExample(w, r)
|
2021-11-05 18:46:27 +01:00
|
|
|
} else if r.Method == http.MethodHead && r.URL.Path == "/" {
|
|
|
|
return s.handleEmpty(w, r)
|
2021-10-24 20:22:53 +02:00
|
|
|
} else if r.Method == http.MethodGet && staticRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.handleStatic(w, r)
|
2021-12-02 23:27:31 +01:00
|
|
|
} else if r.Method == http.MethodGet && docsRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.handleDocs(w, r)
|
2022-01-04 00:55:08 +01:00
|
|
|
} else if r.Method == http.MethodGet && fileRegex.MatchString(r.URL.Path) && s.config.AttachmentCacheDir != "" {
|
2022-01-04 19:45:29 +01:00
|
|
|
return s.withRateLimit(w, r, s.handleFile)
|
2021-11-05 18:46:27 +01:00
|
|
|
} else if r.Method == http.MethodOptions {
|
|
|
|
return s.handleOptions(w, r)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && topicPathRegex.MatchString(r.URL.Path) {
|
2021-12-25 22:07:55 +01:00
|
|
|
return s.handleTopic(w, r)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if (r.Method == http.MethodPut || r.Method == http.MethodPost) && topicPathRegex.MatchString(r.URL.Path) {
|
2021-11-05 18:46:27 +01:00
|
|
|
return s.withRateLimit(w, r, s.handlePublish)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && publishPathRegex.MatchString(r.URL.Path) {
|
2021-12-15 15:41:55 +01:00
|
|
|
return s.withRateLimit(w, r, s.handlePublish)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && jsonPathRegex.MatchString(r.URL.Path) {
|
2021-11-05 18:46:27 +01:00
|
|
|
return s.withRateLimit(w, r, s.handleSubscribeJSON)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && ssePathRegex.MatchString(r.URL.Path) {
|
2021-11-05 18:46:27 +01:00
|
|
|
return s.withRateLimit(w, r, s.handleSubscribeSSE)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && rawPathRegex.MatchString(r.URL.Path) {
|
2021-11-05 18:46:27 +01:00
|
|
|
return s.withRateLimit(w, r, s.handleSubscribeRaw)
|
2022-01-15 19:23:35 +01:00
|
|
|
} else if r.Method == http.MethodGet && wsPathRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.withRateLimit(w, r, s.handleSubscribeWS)
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2021-10-24 04:49:50 +02:00
|
|
|
return errHTTPNotFound
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleHome(w http.ResponseWriter, r *http.Request) error {
|
2021-11-08 15:24:34 +01:00
|
|
|
return indexTemplate.Execute(w, &indexPage{
|
|
|
|
Topic: r.URL.Path[1:],
|
2021-12-09 16:23:17 +01:00
|
|
|
CacheDuration: s.config.CacheDuration,
|
2021-11-08 15:24:34 +01:00
|
|
|
})
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-12-25 22:07:55 +01:00
|
|
|
func (s *Server) handleTopic(w http.ResponseWriter, r *http.Request) error {
|
2022-01-16 05:17:46 +01:00
|
|
|
unifiedpush := readBoolParam(r, false, "x-unifiedpush", "unifiedpush", "up") // see PUT/POST too!
|
2021-12-25 22:07:55 +01:00
|
|
|
if unifiedpush {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
_, err := io.WriteString(w, `{"unifiedpush":{"version":1}}`+"\n")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return s.handleHome(w, r)
|
|
|
|
}
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
func (s *Server) handleEmpty(_ http.ResponseWriter, _ *http.Request) error {
|
2021-11-05 18:46:27 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
func (s *Server) handleExample(w http.ResponseWriter, _ *http.Request) error {
|
2021-11-18 15:22:33 +01:00
|
|
|
_, err := io.WriteString(w, exampleSource)
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-10-29 19:58:14 +02:00
|
|
|
func (s *Server) handleStatic(w http.ResponseWriter, r *http.Request) error {
|
2021-11-29 15:34:43 +01:00
|
|
|
http.FileServer(http.FS(webStaticFsCached)).ServeHTTP(w, r)
|
2021-10-29 19:58:14 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-02 23:27:31 +01:00
|
|
|
func (s *Server) handleDocs(w http.ResponseWriter, r *http.Request) error {
|
|
|
|
http.FileServer(http.FS(docsStaticCached)).ServeHTTP(w, r)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-13 00:52:07 +01:00
|
|
|
func (s *Server) handleFile(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-01-02 23:56:12 +01:00
|
|
|
if s.config.AttachmentCacheDir == "" {
|
2022-01-04 00:55:08 +01:00
|
|
|
return errHTTPInternalError
|
2022-01-02 23:56:12 +01:00
|
|
|
}
|
|
|
|
matches := fileRegex.FindStringSubmatch(r.URL.Path)
|
|
|
|
if len(matches) != 2 {
|
|
|
|
return errHTTPInternalErrorInvalidFilePath
|
|
|
|
}
|
|
|
|
messageID := matches[1]
|
|
|
|
file := filepath.Join(s.config.AttachmentCacheDir, messageID)
|
|
|
|
stat, err := os.Stat(file)
|
|
|
|
if err != nil {
|
|
|
|
return errHTTPNotFound
|
|
|
|
}
|
2022-01-13 03:24:48 +01:00
|
|
|
if err := v.BandwidthLimiter().Allow(stat.Size()); err != nil {
|
|
|
|
return errHTTPTooManyRequestsAttachmentBandwidthLimit
|
2022-01-13 00:52:07 +01:00
|
|
|
}
|
2022-01-12 17:05:04 +01:00
|
|
|
w.Header().Set("Content-Length", fmt.Sprintf("%d", stat.Size()))
|
2022-01-02 23:56:12 +01:00
|
|
|
f, err := os.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
2022-01-10 19:38:51 +01:00
|
|
|
_, err = io.Copy(util.NewContentTypeWriter(w, r.URL.Path), f)
|
2022-01-02 23:56:12 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-12-24 00:03:04 +01:00
|
|
|
func (s *Server) handlePublish(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2021-12-15 15:41:55 +01:00
|
|
|
t, err := s.topicFromPath(r.URL.Path)
|
2021-11-01 21:39:40 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-02 23:56:12 +01:00
|
|
|
body, err := util.Peak(r.Body, s.config.MessageLimit)
|
2021-10-23 03:26:01 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-02 23:56:12 +01:00
|
|
|
m := newDefaultMessage(t.ID, "")
|
2022-01-17 19:28:07 +01:00
|
|
|
cache, firebase, email, unifiedpush, err := s.parsePublishParams(r, v, m)
|
2021-12-10 17:31:42 +01:00
|
|
|
if err != nil {
|
2021-10-29 05:50:38 +02:00
|
|
|
return err
|
|
|
|
}
|
2022-01-17 19:28:07 +01:00
|
|
|
if err := s.handlePublishBody(r, v, m, body, unifiedpush); err != nil {
|
2022-01-08 21:47:08 +01:00
|
|
|
return err
|
2021-12-24 00:03:04 +01:00
|
|
|
}
|
2021-12-15 15:41:55 +01:00
|
|
|
if m.Message == "" {
|
2021-12-24 00:03:04 +01:00
|
|
|
m.Message = emptyMessageBody
|
2021-12-15 15:41:55 +01:00
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
delayed := m.Time > time.Now().Unix()
|
|
|
|
if !delayed {
|
|
|
|
if err := t.Publish(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-12-25 22:07:55 +01:00
|
|
|
if s.firebase != nil && firebase && !delayed {
|
2021-12-09 18:15:17 +01:00
|
|
|
go func() {
|
|
|
|
if err := s.firebase(m); err != nil {
|
|
|
|
log.Printf("Unable to publish to Firebase: %v", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2021-12-25 22:07:55 +01:00
|
|
|
if s.mailer != nil && email != "" && !delayed {
|
2021-12-23 21:04:17 +01:00
|
|
|
go func() {
|
2021-12-24 15:01:29 +01:00
|
|
|
if err := s.mailer.Send(v.ip, email, m); err != nil {
|
2021-12-23 21:04:17 +01:00
|
|
|
log.Printf("Unable to send email: %v", err.Error())
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
2021-12-09 16:23:17 +01:00
|
|
|
if cache {
|
|
|
|
if err := s.cache.AddMessage(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
2021-12-15 22:12:40 +01:00
|
|
|
w.Header().Set("Content-Type", "application/json")
|
2021-10-24 19:34:15 +02:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
2021-11-03 16:33:34 +01:00
|
|
|
if err := json.NewEncoder(w).Encode(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
s.mu.Lock()
|
|
|
|
s.messages++
|
|
|
|
s.mu.Unlock()
|
2021-10-24 19:34:15 +02:00
|
|
|
return nil
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2022-01-17 19:28:07 +01:00
|
|
|
func (s *Server) parsePublishParams(r *http.Request, v *visitor, m *message) (cache bool, firebase bool, email string, unifiedpush bool, err error) {
|
2022-01-16 05:17:46 +01:00
|
|
|
cache = readBoolParam(r, true, "x-cache", "cache")
|
|
|
|
firebase = readBoolParam(r, true, "x-firebase", "firebase")
|
2021-12-22 09:44:16 +01:00
|
|
|
m.Title = readParam(r, "x-title", "title", "t")
|
2022-01-04 23:40:41 +01:00
|
|
|
m.Click = readParam(r, "x-click", "click")
|
2022-01-08 21:47:08 +01:00
|
|
|
filename := readParam(r, "x-filename", "filename", "file", "f")
|
2022-01-14 18:13:14 +01:00
|
|
|
attach := readParam(r, "x-attach", "attach", "a")
|
2022-01-08 21:47:08 +01:00
|
|
|
if attach != "" || filename != "" {
|
|
|
|
m.Attachment = &attachment{}
|
|
|
|
}
|
2022-01-14 18:13:14 +01:00
|
|
|
if filename != "" {
|
|
|
|
m.Attachment.Name = filename
|
|
|
|
}
|
2022-01-08 21:47:08 +01:00
|
|
|
if attach != "" {
|
|
|
|
if !attachURLRegex.MatchString(attach) {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestAttachmentURLInvalid
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
|
|
|
m.Attachment.URL = attach
|
2022-01-14 18:13:14 +01:00
|
|
|
if m.Attachment.Name == "" {
|
|
|
|
u, err := url.Parse(m.Attachment.URL)
|
|
|
|
if err == nil {
|
|
|
|
m.Attachment.Name = path.Base(u.Path)
|
|
|
|
if m.Attachment.Name == "." || m.Attachment.Name == "/" {
|
|
|
|
m.Attachment.Name = ""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if m.Attachment.Name == "" {
|
|
|
|
m.Attachment.Name = "attachment"
|
|
|
|
}
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
|
|
|
email = readParam(r, "x-email", "x-e-mail", "email", "e-mail", "mail", "e")
|
|
|
|
if email != "" {
|
|
|
|
if err := v.EmailAllowed(); err != nil {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPTooManyRequestsLimitEmails
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if s.mailer == nil && email != "" {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestEmailDisabled
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
2021-12-15 15:41:55 +01:00
|
|
|
messageStr := readParam(r, "x-message", "message", "m")
|
|
|
|
if messageStr != "" {
|
|
|
|
m.Message = messageStr
|
|
|
|
}
|
2021-12-17 02:33:01 +01:00
|
|
|
m.Priority, err = util.ParsePriority(readParam(r, "x-priority", "priority", "prio", "p"))
|
|
|
|
if err != nil {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestPriorityInvalid
|
2021-11-27 22:12:08 +01:00
|
|
|
}
|
2021-12-22 09:44:16 +01:00
|
|
|
tagsStr := readParam(r, "x-tags", "tags", "tag", "ta")
|
2021-11-27 22:12:08 +01:00
|
|
|
if tagsStr != "" {
|
2021-12-10 17:31:42 +01:00
|
|
|
m.Tags = make([]string, 0)
|
2021-12-21 21:22:27 +01:00
|
|
|
for _, s := range util.SplitNoEmpty(tagsStr, ",") {
|
2021-12-10 17:31:42 +01:00
|
|
|
m.Tags = append(m.Tags, strings.TrimSpace(s))
|
2021-12-07 21:39:42 +01:00
|
|
|
}
|
2021-11-27 22:12:08 +01:00
|
|
|
}
|
2021-12-15 15:41:55 +01:00
|
|
|
delayStr := readParam(r, "x-delay", "delay", "x-at", "at", "x-in", "in")
|
2021-12-11 06:06:25 +01:00
|
|
|
if delayStr != "" {
|
2021-12-10 17:31:42 +01:00
|
|
|
if !cache {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestDelayNoCache
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2021-12-24 00:03:04 +01:00
|
|
|
if email != "" {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestDelayNoEmail // we cannot store the email address (yet)
|
2021-12-24 00:03:04 +01:00
|
|
|
}
|
2021-12-11 06:06:25 +01:00
|
|
|
delay, err := util.ParseFutureTime(delayStr, time.Now())
|
2021-12-10 17:31:42 +01:00
|
|
|
if err != nil {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestDelayCannotParse
|
2021-12-11 06:06:25 +01:00
|
|
|
} else if delay.Unix() < time.Now().Add(s.config.MinDelay).Unix() {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestDelayTooSmall
|
2021-12-11 06:06:25 +01:00
|
|
|
} else if delay.Unix() > time.Now().Add(s.config.MaxDelay).Unix() {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestDelayTooLarge
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2021-12-11 06:06:25 +01:00
|
|
|
m.Time = delay.Unix()
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2022-01-17 19:28:07 +01:00
|
|
|
unifiedpush = readBoolParam(r, false, "x-unifiedpush", "unifiedpush", "up") // see GET too!
|
2021-12-25 22:07:55 +01:00
|
|
|
if unifiedpush {
|
|
|
|
firebase = false
|
2022-01-17 19:28:07 +01:00
|
|
|
unifiedpush = true
|
2021-12-25 22:07:55 +01:00
|
|
|
}
|
2022-01-17 19:28:07 +01:00
|
|
|
return cache, firebase, email, unifiedpush, nil
|
2021-11-27 22:12:08 +01:00
|
|
|
}
|
|
|
|
|
2022-01-08 21:47:08 +01:00
|
|
|
// handlePublishBody consumes the PUT/POST body and decides whether the body is an attachment or the message.
|
|
|
|
//
|
2022-01-17 19:28:07 +01:00
|
|
|
// 1. curl -T somebinarydata.bin "ntfy.sh/mytopic?up=1"
|
|
|
|
// If body is binary, encode as base64, if not do not encode
|
|
|
|
// 2. curl -H "Attach: http://example.com/file.jpg" ntfy.sh/mytopic
|
2022-01-08 21:47:08 +01:00
|
|
|
// Body must be a message, because we attached an external URL
|
2022-01-17 19:28:07 +01:00
|
|
|
// 3. curl -T short.txt -H "Filename: short.txt" ntfy.sh/mytopic
|
2022-01-08 21:47:08 +01:00
|
|
|
// Body must be attachment, because we passed a filename
|
|
|
|
// 4. curl -T file.txt ntfy.sh/mytopic
|
2022-01-17 19:28:07 +01:00
|
|
|
// If file.txt is <= 4096 (message limit) and valid UTF-8, treat it as a message
|
|
|
|
// 5. curl -T file.txt ntfy.sh/mytopic
|
2022-01-08 21:47:08 +01:00
|
|
|
// If file.txt is > message limit, treat it as an attachment
|
2022-01-17 19:28:07 +01:00
|
|
|
func (s *Server) handlePublishBody(r *http.Request, v *visitor, m *message, body *util.PeakedReadCloser, unifiedpush bool) error {
|
|
|
|
if unifiedpush {
|
|
|
|
return s.handleBodyAsMessageAutoDetect(m, body) // Case 1
|
|
|
|
} else if m.Attachment != nil && m.Attachment.URL != "" {
|
|
|
|
return s.handleBodyAsTextMessage(m, body) // Case 2
|
2022-01-08 21:47:08 +01:00
|
|
|
} else if m.Attachment != nil && m.Attachment.Name != "" {
|
2022-01-17 19:28:07 +01:00
|
|
|
return s.handleBodyAsAttachment(r, v, m, body) // Case 3
|
2022-01-08 21:47:08 +01:00
|
|
|
} else if !body.LimitReached && utf8.Valid(body.PeakedBytes) {
|
2022-01-17 19:28:07 +01:00
|
|
|
return s.handleBodyAsTextMessage(m, body) // Case 4
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
2022-01-17 19:28:07 +01:00
|
|
|
return s.handleBodyAsAttachment(r, v, m, body) // Case 5
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handleBodyAsMessageAutoDetect(m *message, body *util.PeakedReadCloser) error {
|
|
|
|
if utf8.Valid(body.PeakedBytes) {
|
|
|
|
m.Message = string(body.PeakedBytes) // Do not trim
|
|
|
|
} else {
|
|
|
|
m.Message = base64.StdEncoding.EncodeToString(body.PeakedBytes)
|
|
|
|
m.Encoding = encodingBase64
|
|
|
|
}
|
|
|
|
return nil
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
|
|
|
|
2022-01-17 19:28:07 +01:00
|
|
|
func (s *Server) handleBodyAsTextMessage(m *message, body *util.PeakedReadCloser) error {
|
2022-01-08 21:47:08 +01:00
|
|
|
if !utf8.Valid(body.PeakedBytes) {
|
|
|
|
return errHTTPBadRequestMessageNotUTF8
|
|
|
|
}
|
|
|
|
if len(body.PeakedBytes) > 0 { // Empty body should not override message (publish via GET!)
|
|
|
|
m.Message = strings.TrimSpace(string(body.PeakedBytes)) // Truncates the message to the peak limit if required
|
|
|
|
}
|
2022-01-10 19:38:51 +01:00
|
|
|
if m.Attachment != nil && m.Attachment.Name != "" && m.Message == "" {
|
|
|
|
m.Message = fmt.Sprintf(defaultAttachmentMessage, m.Attachment.Name)
|
|
|
|
}
|
2022-01-08 21:47:08 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-11 18:58:11 +01:00
|
|
|
func (s *Server) handleBodyAsAttachment(r *http.Request, v *visitor, m *message, body *util.PeakedReadCloser) error {
|
2022-01-12 17:05:04 +01:00
|
|
|
if s.fileCache == nil || s.config.BaseURL == "" || s.config.AttachmentCacheDir == "" {
|
2022-01-08 21:47:08 +01:00
|
|
|
return errHTTPBadRequestAttachmentsDisallowed
|
|
|
|
} else if m.Time > time.Now().Add(s.config.AttachmentExpiryDuration).Unix() {
|
|
|
|
return errHTTPBadRequestAttachmentsExpiryBeforeDelivery
|
|
|
|
}
|
2022-01-11 18:58:11 +01:00
|
|
|
visitorAttachmentsSize, err := s.cache.AttachmentsSize(v.ip)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
remainingVisitorAttachmentSize := s.config.VisitorAttachmentTotalSizeLimit - visitorAttachmentsSize
|
|
|
|
contentLengthStr := r.Header.Get("Content-Length")
|
|
|
|
if contentLengthStr != "" { // Early "do-not-trust" check, hard limit see below
|
|
|
|
contentLength, err := strconv.ParseInt(contentLengthStr, 10, 64)
|
|
|
|
if err == nil && (contentLength > remainingVisitorAttachmentSize || contentLength > s.config.AttachmentFileSizeLimit) {
|
|
|
|
return errHTTPBadRequestAttachmentTooLarge
|
|
|
|
}
|
|
|
|
}
|
2022-01-08 21:47:08 +01:00
|
|
|
if m.Attachment == nil {
|
|
|
|
m.Attachment = &attachment{}
|
|
|
|
}
|
2022-01-10 19:38:51 +01:00
|
|
|
var ext string
|
2022-01-08 21:47:08 +01:00
|
|
|
m.Attachment.Owner = v.ip // Important for attachment rate limiting
|
|
|
|
m.Attachment.Expires = time.Now().Add(s.config.AttachmentExpiryDuration).Unix()
|
2022-01-10 19:38:51 +01:00
|
|
|
m.Attachment.Type, ext = util.DetectContentType(body.PeakedBytes, m.Attachment.Name)
|
2022-01-08 21:47:08 +01:00
|
|
|
m.Attachment.URL = fmt.Sprintf("%s/file/%s%s", s.config.BaseURL, m.ID, ext)
|
|
|
|
if m.Attachment.Name == "" {
|
|
|
|
m.Attachment.Name = fmt.Sprintf("attachment%s", ext)
|
|
|
|
}
|
|
|
|
if m.Message == "" {
|
2022-01-10 19:38:51 +01:00
|
|
|
m.Message = fmt.Sprintf(defaultAttachmentMessage, m.Attachment.Name)
|
2022-01-04 00:55:08 +01:00
|
|
|
}
|
2022-01-13 03:24:48 +01:00
|
|
|
m.Attachment.Size, err = s.fileCache.Write(m.ID, body, v.BandwidthLimiter(), util.NewFixedLimiter(remainingVisitorAttachmentSize))
|
2022-01-07 14:49:28 +01:00
|
|
|
if err == util.ErrLimitReached {
|
2022-01-11 18:58:11 +01:00
|
|
|
return errHTTPBadRequestAttachmentTooLarge
|
2022-01-07 14:49:28 +01:00
|
|
|
} else if err != nil {
|
2022-01-02 23:56:12 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-01 20:21:38 +01:00
|
|
|
func (s *Server) handleSubscribeJSON(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2021-10-27 20:56:17 +02:00
|
|
|
encoder := func(msg *message) (string, error) {
|
|
|
|
var buf bytes.Buffer
|
|
|
|
if err := json.NewEncoder(&buf).Encode(&msg); err != nil {
|
|
|
|
return "", err
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2021-10-27 20:56:17 +02:00
|
|
|
return buf.String(), nil
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
return s.handleSubscribeHTTP(w, r, v, "application/x-ndjson", encoder)
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-11-01 20:21:38 +01:00
|
|
|
func (s *Server) handleSubscribeSSE(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2021-10-27 20:56:17 +02:00
|
|
|
encoder := func(msg *message) (string, error) {
|
2021-10-23 19:21:33 +02:00
|
|
|
var buf bytes.Buffer
|
|
|
|
if err := json.NewEncoder(&buf).Encode(&msg); err != nil {
|
2021-10-27 20:56:17 +02:00
|
|
|
return "", err
|
2021-10-23 19:21:33 +02:00
|
|
|
}
|
2021-10-29 14:29:27 +02:00
|
|
|
if msg.Event != messageEvent {
|
2021-10-27 20:56:17 +02:00
|
|
|
return fmt.Sprintf("event: %s\ndata: %s\n", msg.Event, buf.String()), nil // Browser's .onmessage() does not fire on this!
|
2021-10-23 19:21:33 +02:00
|
|
|
}
|
2021-10-27 20:56:17 +02:00
|
|
|
return fmt.Sprintf("data: %s\n", buf.String()), nil
|
2021-10-23 21:22:17 +02:00
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
return s.handleSubscribeHTTP(w, r, v, "text/event-stream", encoder)
|
2021-10-23 19:21:33 +02:00
|
|
|
}
|
|
|
|
|
2021-11-01 20:21:38 +01:00
|
|
|
func (s *Server) handleSubscribeRaw(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2021-10-27 20:56:17 +02:00
|
|
|
encoder := func(msg *message) (string, error) {
|
2021-11-02 19:10:56 +01:00
|
|
|
if msg.Event == messageEvent { // only handle default events
|
2021-10-27 20:56:17 +02:00
|
|
|
return strings.ReplaceAll(msg.Message, "\n", " ") + "\n", nil
|
|
|
|
}
|
|
|
|
return "\n", nil // "keepalive" and "open" events just send an empty line
|
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
return s.handleSubscribeHTTP(w, r, v, "text/plain", encoder)
|
2021-10-27 20:56:17 +02:00
|
|
|
}
|
|
|
|
|
2022-01-16 05:17:46 +01:00
|
|
|
func (s *Server) handleSubscribeHTTP(w http.ResponseWriter, r *http.Request, v *visitor, contentType string, encoder messageEncoder) error {
|
2021-12-25 15:15:05 +01:00
|
|
|
if err := v.SubscriptionAllowed(); err != nil {
|
|
|
|
return errHTTPTooManyRequestsLimitSubscriptions
|
2021-11-01 20:21:38 +01:00
|
|
|
}
|
|
|
|
defer v.RemoveSubscription()
|
2022-01-16 05:17:46 +01:00
|
|
|
topics, topicsStr, err := s.topicsFromPath(r.URL.Path)
|
2021-11-01 21:39:40 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
poll, since, scheduled, filters, err := parseSubscribeParams(r)
|
2021-12-21 21:22:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-22 09:44:16 +01:00
|
|
|
var wlock sync.Mutex
|
2021-10-27 20:56:17 +02:00
|
|
|
sub := func(msg *message) error {
|
2022-01-16 05:17:46 +01:00
|
|
|
if !filters.Pass(msg) {
|
2021-12-21 21:22:27 +01:00
|
|
|
return nil
|
|
|
|
}
|
2021-10-27 20:56:17 +02:00
|
|
|
m, err := encoder(msg)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-21 21:22:27 +01:00
|
|
|
wlock.Lock()
|
|
|
|
defer wlock.Unlock()
|
2021-10-27 20:56:17 +02:00
|
|
|
if _, err := w.Write([]byte(m)); err != nil {
|
2021-10-24 03:29:45 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
if fl, ok := w.(http.Flusher); ok {
|
|
|
|
fl.Flush()
|
|
|
|
}
|
|
|
|
return nil
|
2021-10-27 20:56:17 +02:00
|
|
|
}
|
2021-11-07 19:08:03 +01:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
w.Header().Set("Content-Type", contentType+"; charset=utf-8") // Android/Volley client needs charset!
|
2021-10-29 19:58:14 +02:00
|
|
|
if poll {
|
2021-12-10 17:31:42 +01:00
|
|
|
return s.sendOldMessages(topics, since, scheduled, sub)
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
subscriberIDs := make([]int, 0)
|
|
|
|
for _, t := range topics {
|
|
|
|
subscriberIDs = append(subscriberIDs, t.Subscribe(sub))
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
for i, subscriberID := range subscriberIDs {
|
|
|
|
topics[i].Unsubscribe(subscriberID) // Order!
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
if err := sub(newOpenMessage(topicsStr)); err != nil { // Send out open message
|
2021-10-29 19:58:14 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
if err := s.sendOldMessages(topics, since, scheduled, sub); err != nil {
|
2021-10-27 20:56:17 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-r.Context().Done():
|
|
|
|
return nil
|
|
|
|
case <-time.After(s.config.KeepaliveInterval):
|
2021-11-01 20:21:38 +01:00
|
|
|
v.Keepalive()
|
2021-11-15 13:56:58 +01:00
|
|
|
if err := sub(newKeepaliveMessage(topicsStr)); err != nil { // Send keepalive message
|
2021-10-27 20:56:17 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-10-24 03:29:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-15 19:23:35 +01:00
|
|
|
func (s *Server) handleSubscribeWS(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-01-16 23:54:15 +01:00
|
|
|
if r.Header.Get("Upgrade") != "websocket" {
|
|
|
|
return errHTTPBadRequestWebSocketsUpgradeHeaderMissing
|
|
|
|
}
|
2022-01-15 19:23:35 +01:00
|
|
|
if err := v.SubscriptionAllowed(); err != nil {
|
|
|
|
return errHTTPTooManyRequestsLimitSubscriptions
|
|
|
|
}
|
|
|
|
defer v.RemoveSubscription()
|
2022-01-16 05:17:46 +01:00
|
|
|
topics, topicsStr, err := s.topicsFromPath(r.URL.Path)
|
2022-01-15 19:23:35 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
poll, since, scheduled, filters, err := parseSubscribeParams(r)
|
2022-01-15 19:23:35 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
upgrader := &websocket.Upgrader{
|
|
|
|
ReadBufferSize: wsBufferSize,
|
|
|
|
WriteBufferSize: wsBufferSize,
|
|
|
|
CheckOrigin: func(r *http.Request) bool {
|
|
|
|
return true // We're open for business!
|
|
|
|
},
|
|
|
|
}
|
|
|
|
conn, err := upgrader.Upgrade(w, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer conn.Close()
|
2022-01-16 06:07:32 +01:00
|
|
|
var wlock sync.Mutex
|
2022-01-15 19:23:35 +01:00
|
|
|
g, ctx := errgroup.WithContext(context.Background())
|
|
|
|
g.Go(func() error {
|
|
|
|
pongWait := s.config.KeepaliveInterval + wsPongWait
|
|
|
|
conn.SetReadLimit(wsReadLimit)
|
|
|
|
if err := conn.SetReadDeadline(time.Now().Add(pongWait)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn.SetPongHandler(func(appData string) error {
|
|
|
|
return conn.SetReadDeadline(time.Now().Add(pongWait))
|
|
|
|
})
|
|
|
|
for {
|
|
|
|
_, _, err := conn.NextReader()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
g.Go(func() error {
|
|
|
|
ping := func() error {
|
2022-01-16 06:07:32 +01:00
|
|
|
wlock.Lock()
|
|
|
|
defer wlock.Unlock()
|
2022-01-15 19:23:35 +01:00
|
|
|
if err := conn.SetWriteDeadline(time.Now().Add(wsWriteWait)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return conn.WriteMessage(websocket.PingMessage, nil)
|
|
|
|
}
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-ctx.Done():
|
|
|
|
return nil
|
|
|
|
case <-time.After(s.config.KeepaliveInterval):
|
|
|
|
v.Keepalive()
|
|
|
|
if err := ping(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
sub := func(msg *message) error {
|
2022-01-16 05:17:46 +01:00
|
|
|
if !filters.Pass(msg) {
|
2022-01-15 19:23:35 +01:00
|
|
|
return nil
|
|
|
|
}
|
2022-01-16 06:07:32 +01:00
|
|
|
wlock.Lock()
|
|
|
|
defer wlock.Unlock()
|
2022-01-15 19:23:35 +01:00
|
|
|
if err := conn.SetWriteDeadline(time.Now().Add(wsWriteWait)); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return conn.WriteJSON(msg)
|
|
|
|
}
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
if poll {
|
|
|
|
return s.sendOldMessages(topics, since, scheduled, sub)
|
|
|
|
}
|
|
|
|
subscriberIDs := make([]int, 0)
|
|
|
|
for _, t := range topics {
|
|
|
|
subscriberIDs = append(subscriberIDs, t.Subscribe(sub))
|
|
|
|
}
|
|
|
|
defer func() {
|
|
|
|
for i, subscriberID := range subscriberIDs {
|
|
|
|
topics[i].Unsubscribe(subscriberID) // Order!
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
if err := sub(newOpenMessage(topicsStr)); err != nil { // Send out open message
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := s.sendOldMessages(topics, since, scheduled, sub); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-16 04:33:35 +01:00
|
|
|
err = g.Wait()
|
|
|
|
if err != nil && websocket.IsCloseError(err, websocket.CloseNormalClosure, websocket.CloseGoingAway) {
|
|
|
|
return nil // Normal closures are not errors
|
|
|
|
}
|
|
|
|
return err
|
2022-01-15 19:23:35 +01:00
|
|
|
}
|
|
|
|
|
2022-01-16 05:17:46 +01:00
|
|
|
func parseSubscribeParams(r *http.Request) (poll bool, since sinceTime, scheduled bool, filters *queryFilter, err error) {
|
|
|
|
poll = readBoolParam(r, false, "x-poll", "poll", "po")
|
|
|
|
scheduled = readBoolParam(r, false, "x-scheduled", "scheduled", "sched")
|
|
|
|
since, err = parseSince(r, poll)
|
|
|
|
if err != nil {
|
|
|
|
return
|
2021-12-21 21:22:27 +01:00
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
filters, err = parseQueryFilters(r)
|
|
|
|
if err != nil {
|
|
|
|
return
|
2021-12-21 21:22:27 +01:00
|
|
|
}
|
2022-01-16 05:17:46 +01:00
|
|
|
return
|
2021-12-21 21:22:27 +01:00
|
|
|
}
|
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func (s *Server) sendOldMessages(topics []*topic, since sinceTime, scheduled bool, sub subscriber) error {
|
2021-11-08 15:46:31 +01:00
|
|
|
if since.IsNone() {
|
2021-10-29 19:58:14 +02:00
|
|
|
return nil
|
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
for _, t := range topics {
|
2021-12-10 17:31:42 +01:00
|
|
|
messages, err := s.cache.Messages(t.ID, since, scheduled)
|
2021-11-15 13:56:58 +01:00
|
|
|
if err != nil {
|
2021-10-29 19:58:14 +02:00
|
|
|
return err
|
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
for _, m := range messages {
|
|
|
|
if err := sub(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
2021-10-24 19:34:15 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-08 15:46:31 +01:00
|
|
|
// parseSince returns a timestamp identifying the time span from which cached messages should be received.
|
|
|
|
//
|
|
|
|
// Values in the "since=..." parameter can be either a unix timestamp or a duration (e.g. 12h), or
|
|
|
|
// "all" for all messages.
|
2021-12-22 09:44:16 +01:00
|
|
|
func parseSince(r *http.Request, poll bool) (sinceTime, error) {
|
|
|
|
since := readParam(r, "x-since", "since", "si")
|
|
|
|
if since == "" {
|
|
|
|
if poll {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceAllMessages, nil
|
|
|
|
}
|
|
|
|
return sinceNoMessages, nil
|
|
|
|
}
|
2021-12-22 09:44:16 +01:00
|
|
|
if since == "all" {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceAllMessages, nil
|
2021-12-22 09:44:16 +01:00
|
|
|
} else if s, err := strconv.ParseInt(since, 10, 64); err == nil {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceTime(time.Unix(s, 0)), nil
|
2021-12-22 09:44:16 +01:00
|
|
|
} else if d, err := time.ParseDuration(since); err == nil {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceTime(time.Now().Add(-1 * d)), nil
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
2021-12-25 15:15:05 +01:00
|
|
|
return sinceNoMessages, errHTTPBadRequestSinceInvalid
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
|
|
|
|
2021-12-07 17:45:15 +01:00
|
|
|
func (s *Server) handleOptions(w http.ResponseWriter, _ *http.Request) error {
|
2021-10-29 19:58:14 +02:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
w.Header().Set("Access-Control-Allow-Methods", "GET, PUT, POST")
|
2021-10-24 20:22:53 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-12-15 15:41:55 +01:00
|
|
|
func (s *Server) topicFromPath(path string) (*topic, error) {
|
|
|
|
parts := strings.Split(path, "/")
|
|
|
|
if len(parts) < 2 {
|
2021-12-25 15:15:05 +01:00
|
|
|
return nil, errHTTPBadRequestTopicInvalid
|
2021-12-15 15:41:55 +01:00
|
|
|
}
|
|
|
|
topics, err := s.topicsFromIDs(parts[1])
|
2021-11-15 13:56:58 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return topics[0], nil
|
|
|
|
}
|
|
|
|
|
2022-01-16 05:17:46 +01:00
|
|
|
func (s *Server) topicsFromPath(path string) ([]*topic, string, error) {
|
|
|
|
parts := strings.Split(path, "/")
|
|
|
|
if len(parts) < 2 {
|
|
|
|
return nil, "", errHTTPBadRequestTopicInvalid
|
|
|
|
}
|
|
|
|
topicIDs := util.SplitNoEmpty(parts[1], ",")
|
|
|
|
topics, err := s.topicsFromIDs(topicIDs...)
|
|
|
|
if err != nil {
|
|
|
|
return nil, "", errHTTPBadRequestTopicInvalid
|
|
|
|
}
|
|
|
|
return topics, parts[1], nil
|
|
|
|
}
|
|
|
|
|
2021-11-27 22:12:08 +01:00
|
|
|
func (s *Server) topicsFromIDs(ids ...string) ([]*topic, error) {
|
2021-10-23 03:26:01 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2021-11-15 13:56:58 +01:00
|
|
|
topics := make([]*topic, 0)
|
2021-11-27 22:12:08 +01:00
|
|
|
for _, id := range ids {
|
2021-12-09 04:13:59 +01:00
|
|
|
if util.InStringList(disallowedTopics, id) {
|
2021-12-25 15:15:05 +01:00
|
|
|
return nil, errHTTPBadRequestTopicDisallowed
|
2021-12-09 04:13:59 +01:00
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
if _, ok := s.topics[id]; !ok {
|
2022-01-02 23:56:12 +01:00
|
|
|
if len(s.topics) >= s.config.TotalTopicLimit {
|
2022-01-12 17:05:04 +01:00
|
|
|
return nil, errHTTPTooManyRequestsLimitTotalTopics
|
2021-11-15 13:56:58 +01:00
|
|
|
}
|
2021-12-09 04:57:31 +01:00
|
|
|
s.topics[id] = newTopic(id)
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
topics = append(topics, s.topics[id])
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2021-11-15 13:56:58 +01:00
|
|
|
return topics, nil
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2021-12-11 04:57:01 +01:00
|
|
|
func (s *Server) updateStatsAndPrune() {
|
2021-10-23 03:26:01 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2021-10-29 19:58:14 +02:00
|
|
|
|
|
|
|
// Expire visitors from rate visitors map
|
|
|
|
for ip, v := range s.visitors {
|
2021-11-01 20:21:38 +01:00
|
|
|
if v.Stale() {
|
2021-10-29 19:58:14 +02:00
|
|
|
delete(s.visitors, ip)
|
|
|
|
}
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2021-10-24 03:29:45 +02:00
|
|
|
|
2022-01-07 15:15:33 +01:00
|
|
|
// Delete expired attachments
|
2022-01-08 18:14:43 +01:00
|
|
|
if s.fileCache != nil {
|
|
|
|
ids, err := s.cache.AttachmentsExpired()
|
|
|
|
if err == nil {
|
|
|
|
if err := s.fileCache.Remove(ids...); err != nil {
|
|
|
|
log.Printf("error while deleting attachments: %s", err.Error())
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
log.Printf("error retrieving expired attachments: %s", err.Error())
|
2022-01-07 15:15:33 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-11 04:57:01 +01:00
|
|
|
// Prune message cache
|
2021-12-09 04:57:31 +01:00
|
|
|
olderThan := time.Now().Add(-1 * s.config.CacheDuration)
|
|
|
|
if err := s.cache.Prune(olderThan); err != nil {
|
2021-11-03 02:09:49 +01:00
|
|
|
log.Printf("error pruning cache: %s", err.Error())
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
|
|
|
|
2021-12-11 04:57:01 +01:00
|
|
|
// Prune old topics, remove subscriptions without subscribers
|
2021-11-03 02:09:49 +01:00
|
|
|
var subscribers, messages int
|
2021-10-29 19:58:14 +02:00
|
|
|
for _, t := range s.topics {
|
2021-11-03 02:09:49 +01:00
|
|
|
subs := t.Subscribers()
|
2021-12-09 04:57:31 +01:00
|
|
|
msgs, err := s.cache.MessageCount(t.ID)
|
2021-11-03 02:09:49 +01:00
|
|
|
if err != nil {
|
2021-12-09 04:57:31 +01:00
|
|
|
log.Printf("cannot get stats for topic %s: %s", t.ID, err.Error())
|
2021-11-03 02:09:49 +01:00
|
|
|
continue
|
|
|
|
}
|
2021-12-09 18:15:17 +01:00
|
|
|
if msgs == 0 && subs == 0 {
|
2021-12-09 04:57:31 +01:00
|
|
|
delete(s.topics, t.ID)
|
2021-11-03 02:09:49 +01:00
|
|
|
continue
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
|
|
|
subscribers += subs
|
|
|
|
messages += msgs
|
2021-10-24 03:29:45 +02:00
|
|
|
}
|
2021-11-03 02:09:49 +01:00
|
|
|
|
2021-12-27 22:18:15 +01:00
|
|
|
// Mail stats
|
|
|
|
var mailSuccess, mailFailure int64
|
|
|
|
if s.smtpBackend != nil {
|
|
|
|
mailSuccess, mailFailure = s.smtpBackend.Counts()
|
|
|
|
}
|
2021-12-27 22:06:40 +01:00
|
|
|
|
2021-11-03 02:09:49 +01:00
|
|
|
// Print stats
|
2021-12-27 22:06:40 +01:00
|
|
|
log.Printf("Stats: %d message(s) published, %d in cache, %d successful mails, %d failed, %d topic(s) active, %d subscriber(s), %d visitor(s)",
|
|
|
|
s.messages, messages, mailSuccess, mailFailure, len(s.topics), subscribers, len(s.visitors))
|
2021-10-24 03:29:45 +02:00
|
|
|
}
|
2021-10-24 04:49:50 +02:00
|
|
|
|
2021-12-27 22:06:40 +01:00
|
|
|
func (s *Server) runSMTPServer() error {
|
2021-12-27 16:39:28 +01:00
|
|
|
sub := func(m *message) error {
|
|
|
|
url := fmt.Sprintf("%s/%s", s.config.BaseURL, m.Topic)
|
|
|
|
req, err := http.NewRequest("PUT", url, strings.NewReader(m.Message))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if m.Title != "" {
|
|
|
|
req.Header.Set("Title", m.Title)
|
|
|
|
}
|
|
|
|
rr := httptest.NewRecorder()
|
|
|
|
s.handle(rr, req)
|
|
|
|
if rr.Code != http.StatusOK {
|
|
|
|
return errors.New("error: " + rr.Body.String())
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
2021-12-27 22:06:40 +01:00
|
|
|
s.smtpBackend = newMailBackend(s.config, sub)
|
|
|
|
s.smtpServer = smtp.NewServer(s.smtpBackend)
|
|
|
|
s.smtpServer.Addr = s.config.SMTPServerListen
|
|
|
|
s.smtpServer.Domain = s.config.SMTPServerDomain
|
|
|
|
s.smtpServer.ReadTimeout = 10 * time.Second
|
|
|
|
s.smtpServer.WriteTimeout = 10 * time.Second
|
2021-12-28 01:26:20 +01:00
|
|
|
s.smtpServer.MaxMessageBytes = 1024 * 1024 // Must be much larger than message size (headers, multipart, etc.)
|
2021-12-27 22:06:40 +01:00
|
|
|
s.smtpServer.MaxRecipients = 1
|
|
|
|
s.smtpServer.AllowInsecureAuth = true
|
|
|
|
return s.smtpServer.ListenAndServe()
|
2021-12-27 15:48:09 +01:00
|
|
|
}
|
|
|
|
|
2021-12-15 15:13:16 +01:00
|
|
|
func (s *Server) runManager() {
|
2021-12-22 14:17:50 +01:00
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-time.After(s.config.ManagerInterval):
|
2021-12-15 15:13:16 +01:00
|
|
|
s.updateStatsAndPrune()
|
2021-12-22 14:17:50 +01:00
|
|
|
case <-s.closeChan:
|
|
|
|
return
|
2021-12-15 15:13:16 +01:00
|
|
|
}
|
2021-12-22 14:17:50 +01:00
|
|
|
}
|
2021-12-15 15:13:16 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) runAtSender() {
|
|
|
|
for {
|
2021-12-22 14:17:50 +01:00
|
|
|
select {
|
|
|
|
case <-time.After(s.config.AtSenderInterval):
|
|
|
|
if err := s.sendDelayedMessages(); err != nil {
|
|
|
|
log.Printf("error sending scheduled messages: %s", err.Error())
|
|
|
|
}
|
|
|
|
case <-s.closeChan:
|
|
|
|
return
|
2021-12-15 15:13:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-21 20:17:59 +01:00
|
|
|
func (s *Server) runFirebaseKeepaliver() {
|
2021-12-15 15:13:16 +01:00
|
|
|
if s.firebase == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
for {
|
2021-12-22 14:17:50 +01:00
|
|
|
select {
|
|
|
|
case <-time.After(s.config.FirebaseKeepaliveInterval):
|
|
|
|
if err := s.firebase(newKeepaliveMessage(firebaseControlTopic)); err != nil {
|
|
|
|
log.Printf("error sending Firebase keepalive message: %s", err.Error())
|
|
|
|
}
|
|
|
|
case <-s.closeChan:
|
|
|
|
return
|
2021-12-15 15:13:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2021-12-22 14:17:50 +01:00
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func (s *Server) sendDelayedMessages() error {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
|
|
|
messages, err := s.cache.MessagesDue()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, m := range messages {
|
|
|
|
t, ok := s.topics[m.Topic] // If no subscribers, just mark message as published
|
|
|
|
if ok {
|
|
|
|
if err := t.Publish(m); err != nil {
|
|
|
|
log.Printf("unable to publish message %s to topic %s: %v", m.ID, m.Topic, err.Error())
|
|
|
|
}
|
2022-01-10 21:36:12 +01:00
|
|
|
}
|
|
|
|
if s.firebase != nil { // Firebase subscribers may not show up in topics map
|
|
|
|
if err := s.firebase(m); err != nil {
|
|
|
|
log.Printf("unable to publish to Firebase: %v", err.Error())
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if err := s.cache.MarkPublished(m); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-11-05 18:46:27 +01:00
|
|
|
func (s *Server) withRateLimit(w http.ResponseWriter, r *http.Request, handler func(w http.ResponseWriter, r *http.Request, v *visitor) error) error {
|
|
|
|
v := s.visitor(r)
|
|
|
|
if err := v.RequestAllowed(); err != nil {
|
2021-12-25 15:15:05 +01:00
|
|
|
return errHTTPTooManyRequestsLimitRequests
|
2021-11-05 18:46:27 +01:00
|
|
|
}
|
|
|
|
return handler(w, r, v)
|
|
|
|
}
|
|
|
|
|
2021-10-24 04:49:50 +02:00
|
|
|
// visitor creates or retrieves a rate.Limiter for the given visitor.
|
|
|
|
// This function was taken from https://www.alexedwards.net/blog/how-to-rate-limit-http-requests (MIT).
|
2021-11-05 18:46:27 +01:00
|
|
|
func (s *Server) visitor(r *http.Request) *visitor {
|
2021-10-24 04:49:50 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2021-11-05 18:46:27 +01:00
|
|
|
remoteAddr := r.RemoteAddr
|
2021-10-24 04:49:50 +02:00
|
|
|
ip, _, err := net.SplitHostPort(remoteAddr)
|
|
|
|
if err != nil {
|
|
|
|
ip = remoteAddr // This should not happen in real life; only in tests.
|
|
|
|
}
|
2021-11-05 18:46:27 +01:00
|
|
|
if s.config.BehindProxy && r.Header.Get("X-Forwarded-For") != "" {
|
|
|
|
ip = r.Header.Get("X-Forwarded-For")
|
|
|
|
}
|
2021-10-24 04:49:50 +02:00
|
|
|
v, exists := s.visitors[ip]
|
|
|
|
if !exists {
|
2021-12-24 15:01:29 +01:00
|
|
|
s.visitors[ip] = newVisitor(s.config, ip)
|
2021-11-01 20:21:38 +01:00
|
|
|
return s.visitors[ip]
|
2021-10-24 04:49:50 +02:00
|
|
|
}
|
2021-12-22 10:04:59 +01:00
|
|
|
v.Keepalive()
|
2021-10-24 04:49:50 +02:00
|
|
|
return v
|
|
|
|
}
|