2021-10-23 03:26:01 +02:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
2021-10-29 05:50:38 +02:00
|
|
|
"context"
|
2022-05-27 13:55:57 +02:00
|
|
|
"crypto/sha256"
|
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-10-23 19:21:33 +02:00
|
|
|
"fmt"
|
2021-10-23 03:26:01 +02:00
|
|
|
"io"
|
2021-10-24 04:49:50 +02:00
|
|
|
"net"
|
2021-10-23 03:26:01 +02:00
|
|
|
"net/http"
|
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"
|
2022-05-13 19:08:07 +02:00
|
|
|
|
2022-06-11 03:33:39 +02:00
|
|
|
"heckel.io/ntfy/log"
|
|
|
|
|
2022-05-13 19:08:07 +02:00
|
|
|
"github.com/emersion/go-smtp"
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
"golang.org/x/sync/errgroup"
|
|
|
|
"heckel.io/ntfy/auth"
|
|
|
|
"heckel.io/ntfy/util"
|
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-06-02 05:24:44 +02:00
|
|
|
config *Config
|
|
|
|
httpServer *http.Server
|
|
|
|
httpsServer *http.Server
|
|
|
|
unixListener net.Listener
|
|
|
|
smtpServer *smtp.Server
|
|
|
|
smtpServerBackend *smtpBackend
|
|
|
|
smtpSender mailer
|
|
|
|
topics map[string]*topic
|
|
|
|
visitors map[string]*visitor
|
|
|
|
firebaseClient *firebaseClient
|
|
|
|
messages int64
|
|
|
|
auth auth.Auther
|
|
|
|
messageCache *messageCache
|
|
|
|
fileCache *fileCache
|
|
|
|
closeChan chan bool
|
|
|
|
mu sync.Mutex
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2022-01-22 04:22:27 +01:00
|
|
|
// handleFunc extends the normal http.HandlerFunc to be able to easily return errors
|
|
|
|
type handleFunc func(http.ResponseWriter, *http.Request, *visitor) error
|
|
|
|
|
2021-10-23 03:26:01 +02:00
|
|
|
var (
|
2022-01-31 17:44:58 +01:00
|
|
|
// If changed, don't forget to update Android App and auth_sqlite.go
|
2022-03-23 19:29:55 +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!
|
|
|
|
externalTopicPathRegex = regexp.MustCompile(`^/[^/]+\.[^/]+/[-_A-Za-z0-9]{1,64}$`) // Extended topic path, for web-app, e.g. /example.com/mytopic
|
|
|
|
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$`)
|
|
|
|
wsPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/ws$`)
|
|
|
|
authPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}(,[-_A-Za-z0-9]{1,64})*/auth$`)
|
|
|
|
publishPathRegex = regexp.MustCompile(`^/[-_A-Za-z0-9]{1,64}/(publish|send|trigger)$`)
|
2021-10-29 19:58:14 +02:00
|
|
|
|
2022-03-10 05:28:55 +01:00
|
|
|
webConfigPath = "/config.js"
|
2022-04-03 18:39:52 +02:00
|
|
|
userStatsPath = "/user/stats"
|
2022-06-14 04:07:30 +02:00
|
|
|
matrixPushPath = "/_matrix/push/v1/notify"
|
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-03-06 02:24:10 +01:00
|
|
|
disallowedTopics = []string{"docs", "static", "file", "app", "settings"} // If updated, also update in Android app
|
2022-01-08 21:47:08 +01:00
|
|
|
attachURLRegex = regexp.MustCompile(`^https?://`)
|
2021-10-23 03:26:01 +02:00
|
|
|
|
2022-03-06 02:24:10 +01:00
|
|
|
//go:embed site
|
|
|
|
webFs embed.FS
|
|
|
|
webFsCached = &util.CachingEmbedFS{ModTime: time.Now(), FS: webFs}
|
|
|
|
webSiteDir = "/site"
|
2022-03-06 03:28:25 +01:00
|
|
|
webHomeIndex = "/home.html" // Landing page, only if "web-root: home"
|
2022-03-06 02:24:10 +01:00
|
|
|
webAppIndex = "/app.html" // React app
|
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
|
2022-05-26 03:39:46 +02:00
|
|
|
firebasePollTopic = "~poll" // See iOS if changed
|
2022-01-13 03:24:48 +01:00
|
|
|
emptyMessageBody = "triggered" // Used if message body is empty
|
2022-05-27 13:55:57 +02:00
|
|
|
newMessageBody = "New message" // Used in poll requests as generic message
|
2022-01-13 03:24:48 +01:00
|
|
|
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-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
|
|
|
}
|
2022-02-27 20:47:28 +01:00
|
|
|
messageCache, err := createMessageCache(conf)
|
2021-11-02 19:08:21 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-02-27 20:47:28 +01:00
|
|
|
topics, err := messageCache.Topics()
|
2021-11-03 02:09:49 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
2022-01-23 06:54:18 +01:00
|
|
|
var auther auth.Auther
|
2022-01-23 05:01:20 +01:00
|
|
|
if conf.AuthFile != "" {
|
2022-01-23 06:02:16 +01:00
|
|
|
auther, err = auth.NewSQLiteAuth(conf.AuthFile, conf.AuthDefaultRead, conf.AuthDefaultWrite)
|
2022-01-23 05:01:20 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-01-22 20:47:27 +01:00
|
|
|
}
|
2022-06-01 05:16:44 +02:00
|
|
|
var firebaseClient *firebaseClient
|
2022-02-01 01:33:22 +01:00
|
|
|
if conf.FirebaseKeyFile != "" {
|
2022-06-01 05:16:44 +02:00
|
|
|
sender, err := newFirebaseSender(conf.FirebaseKeyFile)
|
2022-02-01 01:33:22 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-06-01 05:16:44 +02:00
|
|
|
firebaseClient = newFirebaseClient(sender, auther)
|
2022-02-01 01:33:22 +01:00
|
|
|
}
|
2021-10-23 03:26:01 +02:00
|
|
|
return &Server{
|
2022-06-01 05:16:44 +02:00
|
|
|
config: conf,
|
|
|
|
messageCache: messageCache,
|
|
|
|
fileCache: fileCache,
|
|
|
|
firebaseClient: firebaseClient,
|
2022-06-02 05:24:44 +02:00
|
|
|
smtpSender: mailer,
|
2022-06-01 05:16:44 +02:00
|
|
|
topics: topics,
|
|
|
|
auth: auther,
|
|
|
|
visitors: make(map[string]*visitor),
|
2021-10-29 05:50:38 +02:00
|
|
|
}, nil
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2022-02-27 20:47:28 +01:00
|
|
|
func createMessageCache(conf *Config) (*messageCache, error) {
|
2021-12-09 16:23:17 +01:00
|
|
|
if conf.CacheDuration == 0 {
|
2022-02-27 15:38:46 +01:00
|
|
|
return newNopCache()
|
2021-12-09 16:23:17 +01:00
|
|
|
} else if conf.CacheFile != "" {
|
2022-02-27 15:38:46 +01:00
|
|
|
return newSqliteCache(conf.CacheFile, false)
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
2022-02-27 15:38:46 +01:00
|
|
|
return newMemCache()
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
|
|
|
|
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-06-12 17:54:58 +02:00
|
|
|
log.Info("Listening on%s, ntfy %s, log level is %s", listenStr, s.config.Version, log.CurrentLevel().String())
|
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()
|
2022-06-01 02:38:56 +02:00
|
|
|
go s.runDelayedSender()
|
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) {
|
2022-02-14 22:09:59 +01:00
|
|
|
v := s.visitor(r)
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Dispatching request", logHTTPPrefix(v, r))
|
2022-02-14 22:09:59 +01:00
|
|
|
if err := s.handleInternal(w, r, v); err != nil {
|
2022-01-16 04:33:35 +01:00
|
|
|
if websocket.IsWebSocketUpgrade(r) {
|
2022-06-02 05:24:44 +02:00
|
|
|
isNormalError := strings.Contains(err.Error(), "i/o timeout")
|
2022-06-01 22:57:35 +02:00
|
|
|
if isNormalError {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s WebSocket error (this error is okay, it happens a lot): %s", logHTTPPrefix(v, r), err.Error())
|
2022-06-01 22:57:35 +02:00
|
|
|
} else {
|
2022-06-02 17:59:22 +02:00
|
|
|
log.Info("%s WebSocket error: %s", logHTTPPrefix(v, r), err.Error())
|
2022-06-01 22:57:35 +02:00
|
|
|
}
|
2022-01-16 04:33:35 +01:00
|
|
|
return // Do not attempt to write to upgraded connection
|
2021-10-24 04:49:50 +02:00
|
|
|
}
|
2022-06-16 02:36:49 +02:00
|
|
|
if matrixErr, ok := err.(*errMatrix); ok {
|
|
|
|
writeMatrixError(w, r, v, matrixErr)
|
|
|
|
return
|
|
|
|
}
|
2022-01-16 04:33:35 +01:00
|
|
|
httpErr, ok := err.(*errHTTP)
|
|
|
|
if !ok {
|
|
|
|
httpErr = errHTTPInternalError
|
|
|
|
}
|
2022-06-03 02:59:07 +02:00
|
|
|
isNormalError := httpErr.HTTPCode == http.StatusNotFound || httpErr.HTTPCode == http.StatusBadRequest
|
2022-06-01 22:57:35 +02:00
|
|
|
if isNormalError {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Connection closed with HTTP %d (ntfy error %d): %s", logHTTPPrefix(v, r), httpErr.HTTPCode, httpErr.Code, err.Error())
|
2022-06-01 22:57:35 +02:00
|
|
|
} else {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Info("%s Connection closed with HTTP %d (ntfy error %d): %s", logHTTPPrefix(v, r), httpErr.HTTPCode, httpErr.Code, err.Error())
|
2022-06-01 22:57:35 +02:00
|
|
|
}
|
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
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-14 22:09:59 +01:00
|
|
|
func (s *Server) handleInternal(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-05-13 20:42:25 +02:00
|
|
|
if r.Method == http.MethodGet && r.URL.Path == "/" {
|
|
|
|
return s.ensureWebEnabled(s.handleHome)(w, r, v)
|
2021-11-05 18:46:27 +01:00
|
|
|
} else if r.Method == http.MethodHead && r.URL.Path == "/" {
|
2022-05-13 20:42:25 +02:00
|
|
|
return s.ensureWebEnabled(s.handleEmpty)(w, r, v)
|
|
|
|
} else if r.Method == http.MethodGet && r.URL.Path == webConfigPath {
|
|
|
|
return s.ensureWebEnabled(s.handleWebConfig)(w, r, v)
|
2022-04-03 18:39:52 +02:00
|
|
|
} else if r.Method == http.MethodGet && r.URL.Path == userStatsPath {
|
|
|
|
return s.handleUserStats(w, r, v)
|
2022-06-15 22:03:12 +02:00
|
|
|
} else if r.Method == http.MethodGet && r.URL.Path == matrixPushPath {
|
|
|
|
return s.handleMatrixDiscovery(w)
|
2022-05-13 20:42:25 +02:00
|
|
|
} else if r.Method == http.MethodGet && staticRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.ensureWebEnabled(s.handleStatic)(w, r, v)
|
|
|
|
} else if r.Method == http.MethodGet && docsRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.ensureWebEnabled(s.handleDocs)(w, r, v)
|
2022-06-11 03:33:39 +02:00
|
|
|
} else if (r.Method == http.MethodGet || r.Method == http.MethodHead) && fileRegex.MatchString(r.URL.Path) && s.config.AttachmentCacheDir != "" {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.handleFile)(w, r, v)
|
2021-11-05 18:46:27 +01:00
|
|
|
} else if r.Method == http.MethodOptions {
|
2022-05-13 20:42:25 +02:00
|
|
|
return s.ensureWebEnabled(s.handleOptions)(w, r, v)
|
2022-03-16 19:16:54 +01:00
|
|
|
} else if (r.Method == http.MethodPut || r.Method == http.MethodPost) && r.URL.Path == "/" {
|
|
|
|
return s.limitRequests(s.transformBodyJSON(s.authWrite(s.handlePublish)))(w, r, v)
|
2022-06-14 04:07:30 +02:00
|
|
|
} else if r.Method == http.MethodPost && r.URL.Path == matrixPushPath {
|
2022-06-15 02:43:17 +02:00
|
|
|
return s.limitRequests(s.transformMatrixJSON(s.authWrite(s.handlePublishMatrix)))(w, r, v)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if (r.Method == http.MethodPut || r.Method == http.MethodPost) && topicPathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authWrite(s.handlePublish))(w, r, v)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && publishPathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authWrite(s.handlePublish))(w, r, v)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && jsonPathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authRead(s.handleSubscribeJSON))(w, r, v)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && ssePathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authRead(s.handleSubscribeSSE))(w, r, v)
|
2021-12-27 22:06:40 +01:00
|
|
|
} else if r.Method == http.MethodGet && rawPathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authRead(s.handleSubscribeRaw))(w, r, v)
|
2022-01-15 19:23:35 +01:00
|
|
|
} else if r.Method == http.MethodGet && wsPathRegex.MatchString(r.URL.Path) {
|
2022-01-22 04:22:27 +01:00
|
|
|
return s.limitRequests(s.authRead(s.handleSubscribeWS))(w, r, v)
|
2022-01-26 05:04:09 +01:00
|
|
|
} else if r.Method == http.MethodGet && authPathRegex.MatchString(r.URL.Path) {
|
|
|
|
return s.limitRequests(s.authRead(s.handleTopicAuth))(w, r, v)
|
2022-03-23 19:29:55 +01:00
|
|
|
} else if r.Method == http.MethodGet && (topicPathRegex.MatchString(r.URL.Path) || externalTopicPathRegex.MatchString(r.URL.Path)) {
|
2022-05-13 20:42:25 +02:00
|
|
|
return s.ensureWebEnabled(s.handleTopic)(w, r, v)
|
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
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleHome(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-03-06 03:28:25 +01:00
|
|
|
if s.config.WebRootIsApp {
|
|
|
|
r.URL.Path = webAppIndex
|
|
|
|
} else {
|
|
|
|
r.URL.Path = webHomeIndex
|
|
|
|
}
|
2022-05-13 20:42:25 +02:00
|
|
|
return s.handleStatic(w, r, v)
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleTopic(w http.ResponseWriter, r *http.Request, v *visitor) 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
|
|
|
|
}
|
2022-03-06 02:24:10 +01:00
|
|
|
r.URL.Path = webAppIndex
|
2022-05-13 20:42:25 +02:00
|
|
|
return s.handleStatic(w, r, v)
|
2021-12-25 22:07:55 +01:00
|
|
|
}
|
|
|
|
|
2022-01-26 05:04:09 +01:00
|
|
|
func (s *Server) handleEmpty(_ http.ResponseWriter, _ *http.Request, _ *visitor) error {
|
2021-11-05 18:46:27 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-26 05:04:09 +01:00
|
|
|
func (s *Server) handleTopicAuth(w http.ResponseWriter, _ *http.Request, _ *visitor) error {
|
|
|
|
w.Header().Set("Content-Type", "application/json")
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
_, err := io.WriteString(w, `{"success":true}`+"\n")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleWebConfig(w http.ResponseWriter, _ *http.Request, _ *visitor) error {
|
2022-03-10 05:28:55 +01:00
|
|
|
appRoot := "/"
|
|
|
|
if !s.config.WebRootIsApp {
|
|
|
|
appRoot = "/app"
|
|
|
|
}
|
|
|
|
disallowedTopicsStr := `"` + strings.Join(disallowedTopics, `", "`) + `"`
|
2022-03-11 21:56:54 +01:00
|
|
|
w.Header().Set("Content-Type", "text/javascript")
|
2022-03-10 05:28:55 +01:00
|
|
|
_, err := io.WriteString(w, fmt.Sprintf(`// Generated server configuration
|
2022-03-11 21:56:54 +01:00
|
|
|
var config = {
|
2022-03-10 05:28:55 +01:00
|
|
|
appRoot: "%s",
|
|
|
|
disallowedTopics: [%s]
|
|
|
|
};`, appRoot, disallowedTopicsStr))
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-03 18:39:52 +02:00
|
|
|
func (s *Server) handleUserStats(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
|
|
|
stats, err := v.Stats()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
w.Header().Set("Content-Type", "text/json")
|
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
if err := json.NewEncoder(w).Encode(stats); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleStatic(w http.ResponseWriter, r *http.Request, _ *visitor) error {
|
2022-03-06 02:24:10 +01:00
|
|
|
r.URL.Path = webSiteDir + r.URL.Path
|
2022-03-11 03:55:56 +01:00
|
|
|
util.Gzip(http.FileServer(http.FS(webFsCached))).ServeHTTP(w, r)
|
2021-10-29 19:58:14 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleDocs(w http.ResponseWriter, r *http.Request, _ *visitor) error {
|
2022-03-11 03:55:56 +01:00
|
|
|
util.Gzip(http.FileServer(http.FS(docsStaticCached))).ServeHTTP(w, r)
|
2021-12-02 23:27:31 +01:00
|
|
|
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-06-11 03:33:39 +02:00
|
|
|
if r.Method == http.MethodGet {
|
|
|
|
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-03-25 22:17:24 +01:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
2022-06-11 03:33:39 +02:00
|
|
|
if r.Method == http.MethodGet {
|
|
|
|
f, err := os.Open(file)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer f.Close()
|
|
|
|
_, err = io.Copy(util.NewContentTypeWriter(w, r.URL.Path), f)
|
2022-01-02 23:56:12 +01:00
|
|
|
return err
|
|
|
|
}
|
2022-06-11 03:33:39 +02:00
|
|
|
return nil
|
2022-01-02 23:56:12 +01:00
|
|
|
}
|
|
|
|
|
2022-06-15 22:03:12 +02:00
|
|
|
func (s *Server) handleMatrixDiscovery(w http.ResponseWriter) error {
|
2022-06-16 17:40:56 +02:00
|
|
|
return writeMatrixDiscoveryResponse(w)
|
2022-06-15 22:03:12 +02:00
|
|
|
}
|
|
|
|
|
2022-06-15 02:43:17 +02:00
|
|
|
func (s *Server) handlePublishWithoutResponse(r *http.Request, v *visitor) (*message, 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 {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, err
|
2021-11-01 21:39:40 +01:00
|
|
|
}
|
2022-04-03 18:39:52 +02:00
|
|
|
body, err := util.Peek(r.Body, s.config.MessageLimit)
|
2021-10-23 03:26:01 +02:00
|
|
|
if err != nil {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, err
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
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 {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, err
|
2021-10-29 05:50:38 +02:00
|
|
|
}
|
2022-05-27 13:55:57 +02:00
|
|
|
if m.PollID != "" {
|
|
|
|
m = newPollRequestMessage(t.ID, m.PollID)
|
|
|
|
}
|
2022-01-17 19:28:07 +01:00
|
|
|
if err := s.handlePublishBody(r, v, m, body, unifiedpush); err != nil {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, 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()
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Received message: event=%s, body=%d byte(s), delayed=%t, firebase=%t, cache=%t, up=%t, email=%s",
|
|
|
|
logMessagePrefix(v, m), m.Event, len(m.Message), delayed, firebase, cache, unifiedpush, email)
|
|
|
|
if log.IsTrace() {
|
2022-06-02 17:59:22 +02:00
|
|
|
log.Trace("%s Message body: %s", logMessagePrefix(v, m), util.MaybeMarshalJSON(m))
|
2022-06-02 05:24:44 +02:00
|
|
|
}
|
2021-12-10 17:31:42 +01:00
|
|
|
if !delayed {
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := t.Publish(v, m); err != nil {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, err
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2022-06-01 22:57:35 +02:00
|
|
|
if s.firebaseClient != nil && firebase {
|
|
|
|
go s.sendToFirebase(v, m)
|
|
|
|
}
|
2022-06-02 05:24:44 +02:00
|
|
|
if s.smtpSender != nil && email != "" {
|
2022-06-01 22:57:35 +02:00
|
|
|
go s.sendEmail(v, m, email)
|
|
|
|
}
|
|
|
|
if s.config.UpstreamBaseURL != "" {
|
|
|
|
go s.forwardPollRequest(v, m)
|
|
|
|
}
|
|
|
|
} else {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Message delayed, will process later", logMessagePrefix(v, m))
|
2022-05-27 13:55:57 +02:00
|
|
|
}
|
2021-12-09 16:23:17 +01:00
|
|
|
if cache {
|
2022-02-27 20:47:28 +01:00
|
|
|
if err := s.messageCache.AddMessage(m); err != nil {
|
2022-06-15 02:43:17 +02:00
|
|
|
return nil, err
|
2021-12-09 16:23:17 +01:00
|
|
|
}
|
2021-11-02 19:08:21 +01:00
|
|
|
}
|
2022-06-15 02:43:17 +02:00
|
|
|
s.mu.Lock()
|
|
|
|
s.messages++
|
|
|
|
s.mu.Unlock()
|
|
|
|
return m, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handlePublish(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
|
|
|
m, err := s.handlePublishWithoutResponse(r, v)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
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-06-15 02:43:17 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) handlePublishMatrix(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
|
|
|
_, err := s.handlePublishWithoutResponse(r, v)
|
|
|
|
if err != nil {
|
2022-06-16 02:36:49 +02:00
|
|
|
return &errMatrix{pushKey: r.Header.Get(matrixPushKeyHeader), err: err}
|
2022-06-15 02:43:17 +02:00
|
|
|
}
|
2022-06-15 22:03:12 +02:00
|
|
|
return writeMatrixSuccess(w)
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
|
|
|
|
2022-05-28 02:30:20 +02:00
|
|
|
func (s *Server) sendToFirebase(v *visitor, m *message) {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Publishing to Firebase", logMessagePrefix(v, m))
|
2022-06-01 05:16:44 +02:00
|
|
|
if err := s.firebaseClient.Send(v, m); err != nil {
|
2022-06-03 02:59:07 +02:00
|
|
|
if err == errFirebaseTemporarilyBanned {
|
|
|
|
log.Debug("%s Unable to publish to Firebase: %v", logMessagePrefix(v, m), err.Error())
|
|
|
|
} else {
|
|
|
|
log.Warn("%s Unable to publish to Firebase: %v", logMessagePrefix(v, m), err.Error())
|
|
|
|
}
|
2022-05-28 02:30:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) sendEmail(v *visitor, m *message, email string) {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Sending email to %s", logMessagePrefix(v, m), email)
|
|
|
|
if err := s.smtpSender.Send(v, m, email); err != nil {
|
2022-06-02 16:50:05 +02:00
|
|
|
log.Warn("%s Unable to send email to %s: %v", logMessagePrefix(v, m), email, err.Error())
|
2022-05-28 02:30:20 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) forwardPollRequest(v *visitor, m *message) {
|
|
|
|
topicURL := fmt.Sprintf("%s/%s", s.config.BaseURL, m.Topic)
|
|
|
|
topicHash := fmt.Sprintf("%x", sha256.Sum256([]byte(topicURL)))
|
|
|
|
forwardURL := fmt.Sprintf("%s/%s", s.config.UpstreamBaseURL, topicHash)
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Publishing poll request to %s", logMessagePrefix(v, m), forwardURL)
|
2022-05-28 02:30:20 +02:00
|
|
|
req, err := http.NewRequest("POST", forwardURL, strings.NewReader(""))
|
|
|
|
if err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("%s Unable to publish poll request: %v", logMessagePrefix(v, m), err.Error())
|
2022-05-28 02:30:20 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
req.Header.Set("X-Poll-ID", m.ID)
|
2022-06-01 03:39:19 +02:00
|
|
|
var httpClient = &http.Client{
|
|
|
|
Timeout: time.Second * 10,
|
|
|
|
}
|
|
|
|
response, err := httpClient.Do(req)
|
2022-05-28 02:30:20 +02:00
|
|
|
if err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("%s Unable to publish poll request: %v", logMessagePrefix(v, m), err.Error())
|
2022-05-28 02:30:20 +02:00
|
|
|
return
|
|
|
|
} else if response.StatusCode != http.StatusOK {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("%s Unable to publish poll request, unexpected HTTP status: %d", logMessagePrefix(v, m), response.StatusCode)
|
2022-05-28 02:30:20 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
}
|
2022-06-02 05:24:44 +02:00
|
|
|
if s.smtpSender == nil && email != "" {
|
2022-01-17 19:28:07 +01:00
|
|
|
return false, false, "", false, errHTTPBadRequestEmailDisabled
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
2022-02-13 15:23:55 +01:00
|
|
|
messageStr := strings.ReplaceAll(readParam(r, "x-message", "message", "m"), "\\n", "\n")
|
2021-12-15 15:41:55 +01:00
|
|
|
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()
|
2022-06-01 03:39:19 +02:00
|
|
|
m.Sender = v.ip // Important for rate limiting
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2022-04-16 22:17:58 +02:00
|
|
|
actionsStr := readParam(r, "x-actions", "actions", "action")
|
|
|
|
if actionsStr != "" {
|
2022-04-19 15:14:32 +02:00
|
|
|
m.Actions, err = parseActions(actionsStr)
|
|
|
|
if err != nil {
|
2022-04-27 15:51:23 +02:00
|
|
|
return false, false, "", false, wrapErrHTTP(errHTTPBadRequestActionsInvalid, err.Error())
|
2022-04-17 20:29:43 +02:00
|
|
|
}
|
2022-04-16 22:17:58 +02: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-05-29 04:06:46 +02:00
|
|
|
m.PollID = readParam(r, "x-poll-id", "poll-id")
|
2022-05-27 13:55:57 +02:00
|
|
|
if m.PollID != "" {
|
|
|
|
unifiedpush = false
|
|
|
|
cache = false
|
|
|
|
email = ""
|
|
|
|
}
|
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-05-28 02:30:20 +02:00
|
|
|
// 1. curl -X POST -H "Poll: 1234" ntfy.sh/...
|
|
|
|
// If a message is flagged as poll request, the body does not matter and is discarded
|
|
|
|
// 2. curl -T somebinarydata.bin "ntfy.sh/mytopic?up=1"
|
2022-01-17 19:28:07 +01:00
|
|
|
// If body is binary, encode as base64, if not do not encode
|
2022-05-28 02:30:20 +02:00
|
|
|
// 3. 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-05-28 02:30:20 +02:00
|
|
|
// 4. 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
|
2022-01-17 19:28:07 +01:00
|
|
|
// 5. curl -T file.txt ntfy.sh/mytopic
|
2022-05-28 02:30:20 +02:00
|
|
|
// If file.txt is <= 4096 (message limit) and valid UTF-8, treat it as a message
|
|
|
|
// 6. 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-04-03 18:39:52 +02:00
|
|
|
func (s *Server) handlePublishBody(r *http.Request, v *visitor, m *message, body *util.PeekedReadCloser, unifiedpush bool) error {
|
2022-05-28 02:30:20 +02:00
|
|
|
if m.Event == pollRequestEvent { // Case 1
|
2022-06-02 05:24:44 +02:00
|
|
|
return s.handleBodyDiscard(body)
|
2022-05-27 13:55:57 +02:00
|
|
|
} else if unifiedpush {
|
2022-05-28 02:30:20 +02:00
|
|
|
return s.handleBodyAsMessageAutoDetect(m, body) // Case 2
|
2022-01-17 19:28:07 +01:00
|
|
|
} else if m.Attachment != nil && m.Attachment.URL != "" {
|
2022-05-28 02:30:20 +02:00
|
|
|
return s.handleBodyAsTextMessage(m, body) // Case 3
|
2022-01-08 21:47:08 +01:00
|
|
|
} else if m.Attachment != nil && m.Attachment.Name != "" {
|
2022-05-28 02:30:20 +02:00
|
|
|
return s.handleBodyAsAttachment(r, v, m, body) // Case 4
|
2022-04-03 18:39:52 +02:00
|
|
|
} else if !body.LimitReached && utf8.Valid(body.PeekedBytes) {
|
2022-05-28 02:30:20 +02:00
|
|
|
return s.handleBodyAsTextMessage(m, body) // Case 5
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
2022-05-28 02:30:20 +02:00
|
|
|
return s.handleBodyAsAttachment(r, v, m, body) // Case 6
|
2022-01-17 19:28:07 +01:00
|
|
|
}
|
|
|
|
|
2022-06-02 05:24:44 +02:00
|
|
|
func (s *Server) handleBodyDiscard(body *util.PeekedReadCloser) error {
|
|
|
|
_, err := io.Copy(io.Discard, body)
|
|
|
|
_ = body.Close()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-04-03 18:39:52 +02:00
|
|
|
func (s *Server) handleBodyAsMessageAutoDetect(m *message, body *util.PeekedReadCloser) error {
|
|
|
|
if utf8.Valid(body.PeekedBytes) {
|
|
|
|
m.Message = string(body.PeekedBytes) // Do not trim
|
2022-01-17 19:28:07 +01:00
|
|
|
} else {
|
2022-04-03 18:39:52 +02:00
|
|
|
m.Message = base64.StdEncoding.EncodeToString(body.PeekedBytes)
|
2022-01-17 19:28:07 +01:00
|
|
|
m.Encoding = encodingBase64
|
|
|
|
}
|
|
|
|
return nil
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
|
|
|
|
2022-04-03 18:39:52 +02:00
|
|
|
func (s *Server) handleBodyAsTextMessage(m *message, body *util.PeekedReadCloser) error {
|
|
|
|
if !utf8.Valid(body.PeekedBytes) {
|
2022-01-08 21:47:08 +01:00
|
|
|
return errHTTPBadRequestMessageNotUTF8
|
|
|
|
}
|
2022-04-03 18:39:52 +02:00
|
|
|
if len(body.PeekedBytes) > 0 { // Empty body should not override message (publish via GET!)
|
|
|
|
m.Message = strings.TrimSpace(string(body.PeekedBytes)) // Truncates the message to the peek limit if required
|
2022-01-08 21:47:08 +01:00
|
|
|
}
|
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-04-03 18:39:52 +02:00
|
|
|
func (s *Server) handleBodyAsAttachment(r *http.Request, v *visitor, m *message, body *util.PeekedReadCloser) 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-04-03 18:39:52 +02:00
|
|
|
visitorStats, err := v.Stats()
|
2022-01-11 18:58:11 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
contentLengthStr := r.Header.Get("Content-Length")
|
|
|
|
if contentLengthStr != "" { // Early "do-not-trust" check, hard limit see below
|
|
|
|
contentLength, err := strconv.ParseInt(contentLengthStr, 10, 64)
|
2022-04-03 18:39:52 +02:00
|
|
|
if err == nil && (contentLength > visitorStats.VisitorAttachmentBytesRemaining || contentLength > s.config.AttachmentFileSizeLimit) {
|
2022-04-02 23:06:26 +02:00
|
|
|
return errHTTPEntityTooLargeAttachmentTooLarge
|
2022-01-11 18:58:11 +01:00
|
|
|
}
|
|
|
|
}
|
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-06-01 03:39:19 +02:00
|
|
|
m.Sender = v.ip // Important for attachment rate limiting
|
2022-01-08 21:47:08 +01:00
|
|
|
m.Attachment.Expires = time.Now().Add(s.config.AttachmentExpiryDuration).Unix()
|
2022-04-03 18:39:52 +02:00
|
|
|
m.Attachment.Type, ext = util.DetectContentType(body.PeekedBytes, 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-04-03 18:39:52 +02:00
|
|
|
m.Attachment.Size, err = s.fileCache.Write(m.ID, body, v.BandwidthLimiter(), util.NewFixedLimiter(visitorStats.VisitorAttachmentBytesRemaining))
|
2022-01-07 14:49:28 +01:00
|
|
|
if err == util.ErrLimitReached {
|
2022-04-02 23:06:26 +02:00
|
|
|
return errHTTPEntityTooLargeAttachmentTooLarge
|
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 {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s HTTP stream connection opened", logHTTPPrefix(v, r))
|
|
|
|
defer log.Debug("%s HTTP stream connection closed", logHTTPPrefix(v, r))
|
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
|
2022-06-01 02:38:56 +02:00
|
|
|
sub := func(v *visitor, 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 {
|
2022-06-01 02:38:56 +02:00
|
|
|
return s.sendOldMessages(topics, since, scheduled, v, 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!
|
|
|
|
}
|
|
|
|
}()
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := sub(v, newOpenMessage(topicsStr)); err != nil { // Send out open message
|
2021-10-29 19:58:14 +02:00
|
|
|
return err
|
|
|
|
}
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := s.sendOldMessages(topics, since, scheduled, v, 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):
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Trace("%s Sending keepalive message", logHTTPPrefix(v, r))
|
2021-11-01 20:21:38 +01:00
|
|
|
v.Keepalive()
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := sub(v, 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-04-29 19:23:04 +02:00
|
|
|
if strings.ToLower(r.Header.Get("Upgrade")) != "websocket" {
|
2022-01-16 23:54:15 +01:00
|
|
|
return errHTTPBadRequestWebSocketsUpgradeHeaderMissing
|
|
|
|
}
|
2022-01-15 19:23:35 +01:00
|
|
|
if err := v.SubscriptionAllowed(); err != nil {
|
|
|
|
return errHTTPTooManyRequestsLimitSubscriptions
|
|
|
|
}
|
|
|
|
defer v.RemoveSubscription()
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s WebSocket connection opened", logHTTPPrefix(v, r))
|
|
|
|
defer log.Debug("%s WebSocket connection closed", logHTTPPrefix(v, r))
|
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 {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Trace("%s Received WebSocket pong", logHTTPPrefix(v, r))
|
2022-01-15 19:23:35 +01:00
|
|
|
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
|
|
|
|
}
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Trace("%s Sending WebSocket ping", logHTTPPrefix(v, r))
|
2022-01-15 19:23:35 +01:00
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
2022-06-01 02:38:56 +02:00
|
|
|
sub := func(v *visitor, 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 {
|
2022-06-01 02:38:56 +02:00
|
|
|
return s.sendOldMessages(topics, since, scheduled, v, sub)
|
2022-01-15 19:23:35 +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!
|
|
|
|
}
|
|
|
|
}()
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := sub(v, newOpenMessage(topicsStr)); err != nil { // Send out open message
|
2022-01-15 19:23:35 +01:00
|
|
|
return err
|
|
|
|
}
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := s.sendOldMessages(topics, since, scheduled, v, sub); err != nil {
|
2022-01-15 19:23:35 +01:00
|
|
|
return err
|
|
|
|
}
|
2022-01-16 04:33:35 +01:00
|
|
|
err = g.Wait()
|
2022-06-02 05:24:44 +02:00
|
|
|
if err != nil && websocket.IsCloseError(err, websocket.CloseNormalClosure, websocket.CloseGoingAway, websocket.CloseAbnormalClosure) {
|
|
|
|
log.Trace("%s WebSocket connection closed: %s", logHTTPPrefix(v, r), err.Error())
|
|
|
|
return nil // Normal closures are not errors; note: "1006 (abnormal closure)" is treated as normal, because people disconnect a lot
|
2022-01-16 04:33:35 +01:00
|
|
|
}
|
|
|
|
return err
|
2022-01-15 19:23:35 +01:00
|
|
|
}
|
|
|
|
|
2022-02-26 21:57:10 +01:00
|
|
|
func parseSubscribeParams(r *http.Request) (poll bool, since sinceMarker, scheduled bool, filters *queryFilter, err error) {
|
2022-01-16 05:17:46 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-06-01 02:38:56 +02:00
|
|
|
func (s *Server) sendOldMessages(topics []*topic, since sinceMarker, scheduled bool, v *visitor, 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 {
|
2022-02-27 20:47:28 +01:00
|
|
|
messages, err := s.messageCache.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 {
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := sub(v, m); err != nil {
|
2021-11-15 13:56:58 +01:00
|
|
|
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.
|
2022-02-26 21:57:10 +01:00
|
|
|
func parseSince(r *http.Request, poll bool) (sinceMarker, error) {
|
2021-12-22 09:44:16 +01:00
|
|
|
since := readParam(r, "x-since", "since", "si")
|
2022-02-26 21:57:10 +01:00
|
|
|
|
|
|
|
// Easy cases (empty, all, none)
|
2021-12-22 09:44:16 +01:00
|
|
|
if since == "" {
|
|
|
|
if poll {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceAllMessages, nil
|
|
|
|
}
|
|
|
|
return sinceNoMessages, nil
|
2022-02-26 21:57:10 +01:00
|
|
|
} else if since == "all" {
|
2021-11-08 15:46:31 +01:00
|
|
|
return sinceAllMessages, nil
|
2022-02-26 21:57:10 +01:00
|
|
|
} else if since == "none" {
|
|
|
|
return sinceNoMessages, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ID, timestamp, duration
|
|
|
|
if validMessageID(since) {
|
|
|
|
return newSinceID(since), nil
|
2021-12-22 09:44:16 +01:00
|
|
|
} else if s, err := strconv.ParseInt(since, 10, 64); err == nil {
|
2022-02-26 21:57:10 +01:00
|
|
|
return newSinceTime(s), nil
|
2021-12-22 09:44:16 +01:00
|
|
|
} else if d, err := time.ParseDuration(since); err == nil {
|
2022-02-26 21:57:10 +01:00
|
|
|
return newSinceTime(time.Now().Add(-1 * d).Unix()), 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
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) handleOptions(w http.ResponseWriter, _ *http.Request, _ *visitor) error {
|
2021-10-29 19:58:14 +02:00
|
|
|
w.Header().Set("Access-Control-Allow-Methods", "GET, PUT, POST")
|
2022-03-11 04:58:24 +01:00
|
|
|
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
|
|
|
|
w.Header().Set("Access-Control-Allow-Headers", "*") // CORS, allow auth via JS // FIXME is this terrible?
|
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
|
2022-06-02 05:24:44 +02:00
|
|
|
staleVisitors := 0
|
2021-10-29 19:58:14 +02:00
|
|
|
for ip, v := range s.visitors {
|
2021-11-01 20:21:38 +01:00
|
|
|
if v.Stale() {
|
2022-06-01 22:57:35 +02:00
|
|
|
log.Debug("Deleting stale visitor %s", v.ip)
|
2021-10-29 19:58:14 +02:00
|
|
|
delete(s.visitors, ip)
|
2022-06-02 05:24:44 +02:00
|
|
|
staleVisitors++
|
2021-10-29 19:58:14 +02:00
|
|
|
}
|
2021-10-23 03:26:01 +02:00
|
|
|
}
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("Manager: Deleted %d stale visitor(s)", staleVisitors)
|
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 {
|
2022-02-27 20:47:28 +01:00
|
|
|
ids, err := s.messageCache.AttachmentsExpired()
|
2022-06-01 22:57:35 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Warn("Error retrieving expired attachments: %s", err.Error())
|
|
|
|
} else if len(ids) > 0 {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("Manager: Deleting expired attachments: %v", ids)
|
2022-01-08 18:14:43 +01:00
|
|
|
if err := s.fileCache.Remove(ids...); err != nil {
|
2022-05-30 04:14:14 +02:00
|
|
|
log.Warn("Error deleting attachments: %s", err.Error())
|
2022-01-08 18:14:43 +01:00
|
|
|
}
|
|
|
|
} else {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("Manager: No expired attachments to delete")
|
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)
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("Manager: Pruning messages older than %s", olderThan.Format("2006-01-02 15:04:05"))
|
2022-02-27 20:47:28 +01:00
|
|
|
if err := s.messageCache.Prune(olderThan); err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("Manager: 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()
|
2022-02-27 20:47:28 +01:00
|
|
|
msgs, err := s.messageCache.MessageCount(t.ID)
|
2021-11-03 02:09:49 +01:00
|
|
|
if err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("Manager: 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
|
2022-06-02 05:24:44 +02:00
|
|
|
var receivedMailTotal, receivedMailSuccess, receivedMailFailure int64
|
|
|
|
if s.smtpServerBackend != nil {
|
|
|
|
receivedMailTotal, receivedMailSuccess, receivedMailFailure = s.smtpServerBackend.Counts()
|
|
|
|
}
|
|
|
|
var sentMailTotal, sentMailSuccess, sentMailFailure int64
|
|
|
|
if s.smtpSender != nil {
|
|
|
|
sentMailTotal, sentMailSuccess, sentMailFailure = s.smtpSender.Counts()
|
2021-12-27 22:18:15 +01:00
|
|
|
}
|
2021-12-27 22:06:40 +01:00
|
|
|
|
2021-11-03 02:09:49 +01:00
|
|
|
// Print stats
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Info("Stats: %d messages published, %d in cache, %d topic(s) active, %d subscriber(s), %d visitor(s), %d mails received (%d successful, %d failed), %d mails sent (%d successful, %d failed)",
|
|
|
|
s.messages, messages, len(s.topics), subscribers, len(s.visitors),
|
|
|
|
receivedMailTotal, receivedMailSuccess, receivedMailFailure,
|
|
|
|
sentMailTotal, sentMailSuccess, sentMailFailure)
|
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 {
|
2022-06-02 05:24:44 +02:00
|
|
|
s.smtpServerBackend = newMailBackend(s.config, s.handle)
|
|
|
|
s.smtpServer = smtp.NewServer(s.smtpServerBackend)
|
2021-12-27 22:06:40 +01:00
|
|
|
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
|
|
|
}
|
|
|
|
|
2022-01-21 20:17:59 +01:00
|
|
|
func (s *Server) runFirebaseKeepaliver() {
|
2022-06-01 05:16:44 +02:00
|
|
|
if s.firebaseClient == nil {
|
2021-12-15 15:13:16 +01:00
|
|
|
return
|
|
|
|
}
|
2022-06-01 05:16:44 +02:00
|
|
|
v := newVisitor(s.config, s.messageCache, "0.0.0.0") // Background process, not a real visitor
|
2021-12-15 15:13:16 +01:00
|
|
|
for {
|
2021-12-22 14:17:50 +01:00
|
|
|
select {
|
|
|
|
case <-time.After(s.config.FirebaseKeepaliveInterval):
|
2022-06-01 05:16:44 +02:00
|
|
|
s.sendToFirebase(v, newKeepaliveMessage(firebaseControlTopic))
|
2022-05-26 03:39:46 +02:00
|
|
|
case <-time.After(s.config.FirebasePollInterval):
|
2022-06-01 05:16:44 +02:00
|
|
|
s.sendToFirebase(v, newKeepaliveMessage(firebasePollTopic))
|
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
|
|
|
|
2022-06-02 05:24:44 +02:00
|
|
|
func (s *Server) runDelayedSender() {
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-time.After(s.config.DelayedSenderInterval):
|
|
|
|
if err := s.sendDelayedMessages(); err != nil {
|
|
|
|
log.Warn("Error sending delayed messages: %s", err.Error())
|
|
|
|
}
|
|
|
|
case <-s.closeChan:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-10 17:31:42 +01:00
|
|
|
func (s *Server) sendDelayedMessages() error {
|
2022-02-27 20:47:28 +01:00
|
|
|
messages, err := s.messageCache.MessagesDue()
|
2021-12-10 17:31:42 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
for _, m := range messages {
|
2022-06-01 03:39:19 +02:00
|
|
|
v := s.visitorFromIP(m.Sender)
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := s.sendDelayedMessage(v, m); err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("%s Error sending delayed message: %s", logMessagePrefix(v, m), err.Error())
|
2022-01-10 21:36:12 +01:00
|
|
|
}
|
2022-06-01 02:38:56 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) sendDelayedMessage(v *visitor, m *message) error {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Debug("%s Sending delayed message", logMessagePrefix(v, m))
|
2022-06-01 02:38:56 +02:00
|
|
|
t, ok := s.topics[m.Topic] // If no subscribers, just mark message as published
|
|
|
|
if ok {
|
2022-06-01 03:39:19 +02:00
|
|
|
go func() {
|
|
|
|
// We do not rate-limit messages here, since we've rate limited them in the PUT/POST handler
|
|
|
|
if err := t.Publish(v, m); err != nil {
|
2022-06-02 05:24:44 +02:00
|
|
|
log.Warn("%s Unable to publish message: %v", logMessagePrefix(v, m), err.Error())
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2022-06-01 03:39:19 +02:00
|
|
|
}()
|
2022-06-01 02:38:56 +02:00
|
|
|
}
|
2022-06-01 05:16:44 +02:00
|
|
|
if s.firebaseClient != nil { // Firebase subscribers may not show up in topics map
|
2022-06-01 03:39:19 +02:00
|
|
|
go s.sendToFirebase(v, m)
|
|
|
|
}
|
|
|
|
if s.config.UpstreamBaseURL != "" {
|
|
|
|
go s.forwardPollRequest(v, m)
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
2022-06-01 02:38:56 +02:00
|
|
|
if err := s.messageCache.MarkPublished(m); err != nil {
|
|
|
|
return err
|
2021-12-10 17:31:42 +01:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-01-22 04:22:27 +01:00
|
|
|
func (s *Server) limitRequests(next handleFunc) handleFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-02-14 22:09:59 +01:00
|
|
|
if util.InStringList(s.config.VisitorRequestExemptIPAddrs, v.ip) {
|
|
|
|
return next(w, r, v)
|
|
|
|
} else if err := v.RequestAllowed(); err != nil {
|
2022-01-22 04:22:27 +01:00
|
|
|
return errHTTPTooManyRequestsLimitRequests
|
|
|
|
}
|
|
|
|
return next(w, r, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-13 20:42:25 +02:00
|
|
|
func (s *Server) ensureWebEnabled(next handleFunc) handleFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
|
|
|
if !s.config.EnableWeb {
|
|
|
|
return errHTTPNotFound
|
|
|
|
}
|
|
|
|
return next(w, r, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-03 18:39:52 +02:00
|
|
|
// transformBodyJSON peeks the request body, reads the JSON, and converts it to headers
|
2022-03-16 19:16:54 +01:00
|
|
|
// before passing it on to the next handler. This is meant to be used in combination with handlePublish.
|
|
|
|
func (s *Server) transformBodyJSON(next handleFunc) handleFunc {
|
2022-03-15 21:00:59 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-04-03 18:39:52 +02:00
|
|
|
body, err := util.Peek(r.Body, s.config.MessageLimit)
|
2022-03-15 21:00:59 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
defer r.Body.Close()
|
|
|
|
var m publishMessage
|
|
|
|
if err := json.NewDecoder(body).Decode(&m); err != nil {
|
2022-03-16 19:16:54 +01:00
|
|
|
return errHTTPBadRequestJSONInvalid
|
2022-03-15 21:00:59 +01:00
|
|
|
}
|
|
|
|
if !topicRegex.MatchString(m.Topic) {
|
2022-03-16 19:16:54 +01:00
|
|
|
return errHTTPBadRequestTopicInvalid
|
2022-03-15 21:00:59 +01:00
|
|
|
}
|
|
|
|
if m.Message == "" {
|
|
|
|
m.Message = emptyMessageBody
|
|
|
|
}
|
|
|
|
r.URL.Path = "/" + m.Topic
|
|
|
|
r.Body = io.NopCloser(strings.NewReader(m.Message))
|
|
|
|
if m.Title != "" {
|
|
|
|
r.Header.Set("X-Title", m.Title)
|
|
|
|
}
|
2022-03-16 19:16:54 +01:00
|
|
|
if m.Priority != 0 {
|
|
|
|
r.Header.Set("X-Priority", fmt.Sprintf("%d", m.Priority))
|
2022-03-15 21:00:59 +01:00
|
|
|
}
|
2022-03-16 19:16:54 +01:00
|
|
|
if m.Tags != nil && len(m.Tags) > 0 {
|
|
|
|
r.Header.Set("X-Tags", strings.Join(m.Tags, ","))
|
2022-03-15 21:00:59 +01:00
|
|
|
}
|
|
|
|
if m.Attach != "" {
|
|
|
|
r.Header.Set("X-Attach", m.Attach)
|
|
|
|
}
|
|
|
|
if m.Filename != "" {
|
|
|
|
r.Header.Set("X-Filename", m.Filename)
|
|
|
|
}
|
|
|
|
if m.Click != "" {
|
|
|
|
r.Header.Set("X-Click", m.Click)
|
|
|
|
}
|
2022-04-16 22:17:58 +02:00
|
|
|
if len(m.Actions) > 0 {
|
|
|
|
actionsStr, err := json.Marshal(m.Actions)
|
|
|
|
if err != nil {
|
|
|
|
return errHTTPBadRequestJSONInvalid
|
|
|
|
}
|
|
|
|
r.Header.Set("X-Actions", string(actionsStr))
|
|
|
|
}
|
2022-03-29 21:40:26 +02:00
|
|
|
if m.Email != "" {
|
|
|
|
r.Header.Set("X-Email", m.Email)
|
|
|
|
}
|
|
|
|
if m.Delay != "" {
|
|
|
|
r.Header.Set("X-Delay", m.Delay)
|
|
|
|
}
|
2022-03-15 21:00:59 +01:00
|
|
|
return next(w, r, v)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-14 04:07:30 +02:00
|
|
|
func (s *Server) transformMatrixJSON(next handleFunc) handleFunc {
|
|
|
|
return func(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-06-16 02:36:49 +02:00
|
|
|
newRequest, err := newRequestFromMatrixJSON(r, s.config.BaseURL, s.config.MessageLimit)
|
2022-06-14 04:07:30 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-06-16 02:36:49 +02:00
|
|
|
if err := next(w, newRequest, v); err != nil {
|
|
|
|
return &errMatrix{pushKey: newRequest.Header.Get(matrixPushKeyHeader), err: err}
|
2022-06-14 04:07:30 +02:00
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-22 04:22:27 +01:00
|
|
|
func (s *Server) authWrite(next handleFunc) handleFunc {
|
2022-01-23 06:02:16 +01:00
|
|
|
return s.withAuth(next, auth.PermissionWrite)
|
2022-01-22 04:22:27 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) authRead(next handleFunc) handleFunc {
|
2022-01-23 06:02:16 +01:00
|
|
|
return s.withAuth(next, auth.PermissionRead)
|
2022-01-22 04:22:27 +01:00
|
|
|
}
|
|
|
|
|
2022-01-23 06:02:16 +01:00
|
|
|
func (s *Server) withAuth(next handleFunc, perm auth.Permission) handleFunc {
|
2022-01-22 04:22:27 +01:00
|
|
|
return func(w http.ResponseWriter, r *http.Request, v *visitor) error {
|
2022-01-23 05:01:20 +01:00
|
|
|
if s.auth == nil {
|
2022-01-22 04:22:27 +01:00
|
|
|
return next(w, r, v)
|
|
|
|
}
|
2022-01-27 18:49:05 +01:00
|
|
|
topics, _, err := s.topicsFromPath(r.URL.Path)
|
2022-01-22 04:22:27 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-24 05:02:39 +01:00
|
|
|
var user *auth.User // may stay nil if no auth header!
|
2022-02-26 05:25:04 +01:00
|
|
|
username, password, ok := extractUserPass(r)
|
2022-01-22 04:22:27 +01:00
|
|
|
if ok {
|
2022-01-23 05:01:20 +01:00
|
|
|
if user, err = s.auth.Authenticate(username, password); err != nil {
|
2022-05-30 04:14:14 +02:00
|
|
|
log.Info("authentication failed: %s", err.Error())
|
2022-01-22 04:22:27 +01:00
|
|
|
return errHTTPUnauthorized
|
|
|
|
}
|
|
|
|
}
|
2022-01-27 18:49:05 +01:00
|
|
|
for _, t := range topics {
|
|
|
|
if err := s.auth.Authorize(user, t.ID, perm); err != nil {
|
2022-05-30 04:14:14 +02:00
|
|
|
log.Info("unauthorized: %s", err.Error())
|
2022-01-27 18:49:05 +01:00
|
|
|
return errHTTPForbidden
|
|
|
|
}
|
2022-01-22 04:22:27 +01:00
|
|
|
}
|
|
|
|
return next(w, r, v)
|
2021-11-05 18:46:27 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-02-26 05:25:04 +01:00
|
|
|
// extractUserPass reads the username/password from the basic auth header (Authorization: Basic ...),
|
|
|
|
// or from the ?auth=... query param. The latter is required only to support the WebSocket JavaScript
|
|
|
|
// class, which does not support passing headers during the initial request. The auth query param
|
|
|
|
// is effectively double base64 encoded. Its format is base64(Basic base64(user:pass)).
|
|
|
|
func extractUserPass(r *http.Request) (username string, password string, ok bool) {
|
|
|
|
username, password, ok = r.BasicAuth()
|
|
|
|
if ok {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
authParam := readQueryParam(r, "authorization", "auth")
|
|
|
|
if authParam != "" {
|
|
|
|
a, err := base64.RawURLEncoding.DecodeString(authParam)
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
r.Header.Set("Authorization", string(a))
|
|
|
|
return r.BasicAuth()
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
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 {
|
|
|
|
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.
|
|
|
|
}
|
2022-06-16 21:31:09 +02:00
|
|
|
if s.config.BehindProxy && strings.TrimSpace(r.Header.Get("X-Forwarded-For")) != "" {
|
|
|
|
// X-Forwarded-For can contain multiple addresses (see #328). If we are behind a proxy,
|
|
|
|
// only the right-most address can be trusted (as this is the one added by our proxy server).
|
|
|
|
// See https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Forwarded-For for details.
|
|
|
|
ips := util.SplitNoEmpty(r.Header.Get("X-Forwarded-For"), ",")
|
|
|
|
ip = strings.TrimSpace(util.LastString(ips, remoteAddr))
|
2021-11-05 18:46:27 +01:00
|
|
|
}
|
2022-06-01 02:38:56 +02:00
|
|
|
return s.visitorFromIP(ip)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Server) visitorFromIP(ip string) *visitor {
|
|
|
|
s.mu.Lock()
|
|
|
|
defer s.mu.Unlock()
|
2021-10-24 04:49:50 +02:00
|
|
|
v, exists := s.visitors[ip]
|
|
|
|
if !exists {
|
2022-04-03 18:39:52 +02:00
|
|
|
s.visitors[ip] = newVisitor(s.config, s.messageCache, 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
|
|
|
|
}
|