123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- package server
- import (
- "bytes"
- "encoding/json"
- "fmt"
- "heckel.io/ntfy/v2/util"
- "io"
- "net/http"
- "strings"
- "time"
- )
- // Matrix Push Gateway / UnifiedPush / ntfy integration:
- //
- // ntfy implements a Matrix Push Gateway (as defined in https://spec.matrix.org/v1.2/push-gateway-api/),
- // in combination with UnifiedPush as the Provider Push Protocol (as defined in https://unifiedpush.org/developers/gateway/).
- //
- // In the picture below, ntfy is the Push Gateway (mostly in this file), as well as the Push Provider (ntfy's
- // main functionality). UnifiedPush is the Provider Push Protocol, as implemented by the ntfy server and the
- // ntfy Android app.
- //
- // +--------------------+ +-------------------+
- // Matrix HTTP | | | |
- // Notification Protocol | App Developer | | Device Vendor |
- // | | | |
- // +-------------------+ | +----------------+ | | +---------------+ |
- // | | | | | | | | | |
- // | Matrix homeserver +-----> Push Gateway +------> Push Provider | |
- // | | | | | | | | | |
- // +-^-----------------+ | +----------------+ | | +----+----------+ |
- // | | | | | |
- // Matrix | | | | | |
- // Client/Server API + | | | | |
- // | | +--------------------+ +-------------------+
- // | +--+-+ |
- // | | <-------------------------------------------+
- // +---+ |
- // | | Provider Push Protocol
- // +----+
- //
- // Mobile Device or Client
- //
- // matrixRequest represents a Matrix message, as it is sent to a Push Gateway (as per
- // this spec: https://spec.matrix.org/v1.2/push-gateway-api/).
- //
- // From the message, we only require the "pushkey", as it represents our target topic URL.
- // A message may look like this (excerpt):
- //
- // {
- // "notification": {
- // "devices": [
- // {
- // "pushkey": "https://ntfy.sh/upDAHJKFFDFD?up=1",
- // ...
- // }
- // ]
- // }
- // }
- type matrixRequest struct {
- Notification *struct {
- Devices []*struct {
- PushKey string `json:"pushkey"`
- } `json:"devices"`
- } `json:"notification"`
- }
- // matrixResponse represents the response to a Matrix push gateway message, as defined
- // in the spec (https://spec.matrix.org/v1.2/push-gateway-api/).
- type matrixResponse struct {
- Rejected []string `json:"rejected"`
- }
- const (
- // matrixRejectPushKeyForUnifiedPushTopicWithoutRateVisitorAfter is the time after which a Matrix response
- // will return an HTTP 200 with the push key (i.e. "rejected":["<pushkey>"]}), if no rate visitor has been set on
- // the topic. Rejecting the push key will instruct the Matrix server to invalidate the pushkey and stop sending
- // messages to it. This must be longer than topicExpungeAfter. See https://spec.matrix.org/v1.6/push-gateway-api/
- matrixRejectPushKeyForUnifiedPushTopicWithoutRateVisitorAfter = 12 * time.Hour
- )
- // errMatrixPushkeyRejected represents an error when handing Matrix gateway messages
- //
- // If the push key is set, the app server will remove it and will never send messages using the same
- // push key again, until the user repairs it.
- type errMatrixPushkeyRejected struct {
- rejectedPushKey string
- configuredBaseURL string
- }
- func (e errMatrixPushkeyRejected) Error() string {
- return fmt.Sprintf("push key must be prefixed with base URL, received push key: %s, configured base URL: %s", e.rejectedPushKey, e.configuredBaseURL)
- }
- // newRequestFromMatrixJSON reads the request body as a Matrix JSON message, parses the "pushkey", and creates a new
- // HTTP request that looks like a normal ntfy request from it.
- //
- // It basically converts a Matrix push gatewqy request:
- //
- // POST /_matrix/push/v1/notify HTTP/1.1
- // { "notification": { "devices": [ { "pushkey": "https://ntfy.sh/upDAHJKFFDFD?up=1", ... } ] } }
- //
- // to a ntfy request, looking like this:
- //
- // POST /upDAHJKFFDFD?up=1 HTTP/1.1
- // { "notification": { "devices": [ { "pushkey": "https://ntfy.sh/upDAHJKFFDFD?up=1", ... } ] } }
- func newRequestFromMatrixJSON(r *http.Request, baseURL string, messageLimit int) (*http.Request, error) {
- if baseURL == "" {
- return nil, errHTTPInternalErrorMissingBaseURL
- }
- body, err := util.Peek(r.Body, messageLimit)
- if err != nil {
- return nil, err
- }
- defer r.Body.Close()
- if body.LimitReached {
- return nil, errHTTPEntityTooLargeMatrixRequest
- }
- var m matrixRequest
- if err := json.Unmarshal(body.PeekedBytes, &m); err != nil {
- return nil, errHTTPBadRequestMatrixMessageInvalid
- } else if m.Notification == nil || len(m.Notification.Devices) == 0 || m.Notification.Devices[0].PushKey == "" {
- return nil, errHTTPBadRequestMatrixMessageInvalid
- }
- pushKey := m.Notification.Devices[0].PushKey // We ignore other devices for now, see discussion in #316
- if !strings.HasPrefix(pushKey, baseURL+"/") {
- return nil, &errMatrixPushkeyRejected{rejectedPushKey: pushKey, configuredBaseURL: baseURL}
- }
- newRequest, err := http.NewRequest(http.MethodPost, pushKey, io.NopCloser(bytes.NewReader(body.PeekedBytes)))
- if err != nil {
- return nil, err
- }
- newRequest.RemoteAddr = r.RemoteAddr // Not strictly necessary, since visitor was already extracted
- if r.Header.Get("X-Forwarded-For") != "" {
- newRequest.Header.Set("X-Forwarded-For", r.Header.Get("X-Forwarded-For"))
- }
- newRequest = withContext(newRequest, map[contextKey]any{
- contextMatrixPushKey: pushKey,
- })
- return newRequest, nil
- }
- // writeMatrixDiscoveryResponse writes the UnifiedPush Matrix Gateway Discovery response to the given http.ResponseWriter,
- // as per the spec (https://unifiedpush.org/developers/gateway/).
- func writeMatrixDiscoveryResponse(w http.ResponseWriter) error {
- w.Header().Set("Content-Type", "application/json")
- _, err := io.WriteString(w, `{"unifiedpush":{"gateway":"matrix"}}`+"\n")
- return err
- }
- // writeMatrixSuccess writes a successful matrixResponse (no rejected push key) to the given http.ResponseWriter
- func writeMatrixSuccess(w http.ResponseWriter) error {
- return writeMatrixResponse(w, "")
- }
- // writeMatrixResponse writes a matrixResponse to the given http.ResponseWriter, as defined in
- // the spec (https://spec.matrix.org/v1.2/push-gateway-api/)
- func writeMatrixResponse(w http.ResponseWriter, rejectedPushKey string) error {
- rejected := make([]string, 0)
- if rejectedPushKey != "" {
- rejected = append(rejected, rejectedPushKey)
- }
- response := &matrixResponse{
- Rejected: rejected,
- }
- w.Header().Set("Content-Type", "application/json")
- if err := json.NewEncoder(w).Encode(response); err != nil {
- return err
- }
- return nil
- }
|