2017-04-21 00:40:52 +02:00
|
|
|
// Copyright 2017 Vector Creations Ltd
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2017-04-12 17:06:26 +02:00
|
|
|
package consumers
|
2017-03-29 15:05:43 +02:00
|
|
|
|
|
|
|
import (
|
2017-09-13 14:37:50 +02:00
|
|
|
"context"
|
2022-02-16 12:56:08 +01:00
|
|
|
"database/sql"
|
2017-03-30 16:29:23 +02:00
|
|
|
"encoding/json"
|
2020-09-10 15:39:18 +02:00
|
|
|
"fmt"
|
2017-03-30 16:29:23 +02:00
|
|
|
|
2021-03-24 11:25:24 +01:00
|
|
|
"github.com/getsentry/sentry-go"
|
2022-09-27 15:01:34 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/nats-io/nats.go"
|
|
|
|
log "github.com/sirupsen/logrus"
|
2022-09-27 18:06:49 +02:00
|
|
|
"github.com/tidwall/gjson"
|
2022-09-27 15:01:34 +02:00
|
|
|
|
2022-09-27 18:06:49 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/fulltext"
|
2022-09-30 17:07:18 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
2017-03-30 16:29:23 +02:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2020-12-02 18:41:00 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2021-01-26 13:56:20 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2021-01-08 17:59:06 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/notifier"
|
2017-04-20 18:22:44 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2022-09-30 13:48:10 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/streams"
|
2017-04-20 18:22:44 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
2017-03-29 15:05:43 +02:00
|
|
|
)
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
// OutputRoomEventConsumer consumes events that originated in the room server.
|
|
|
|
type OutputRoomEventConsumer struct {
|
2022-01-05 18:44:49 +01:00
|
|
|
ctx context.Context
|
2021-01-08 17:59:06 +01:00
|
|
|
cfg *config.SyncAPI
|
2022-05-05 10:56:03 +02:00
|
|
|
rsAPI api.SyncRoomserverAPI
|
2022-01-05 18:44:49 +01:00
|
|
|
jetstream nats.JetStreamContext
|
2022-02-02 14:32:48 +01:00
|
|
|
durable string
|
2022-01-05 18:44:49 +01:00
|
|
|
topic string
|
2021-01-08 17:59:06 +01:00
|
|
|
db storage.Database
|
2022-09-30 13:48:10 +02:00
|
|
|
pduStream streams.StreamProvider
|
|
|
|
inviteStream streams.StreamProvider
|
2021-01-08 17:59:06 +01:00
|
|
|
notifier *notifier.Notifier
|
2022-09-27 18:06:49 +02:00
|
|
|
fts *fulltext.Search
|
2017-07-25 17:10:59 +02:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
// NewOutputRoomEventConsumer creates a new OutputRoomEventConsumer. Call Start() to begin consuming from room servers.
|
|
|
|
func NewOutputRoomEventConsumer(
|
2021-01-26 13:56:20 +01:00
|
|
|
process *process.ProcessContext,
|
2020-08-10 15:18:04 +02:00
|
|
|
cfg *config.SyncAPI,
|
2022-01-05 18:44:49 +01:00
|
|
|
js nats.JetStreamContext,
|
2020-01-03 15:07:05 +01:00
|
|
|
store storage.Database,
|
2021-01-08 17:59:06 +01:00
|
|
|
notifier *notifier.Notifier,
|
2022-09-30 13:48:10 +02:00
|
|
|
pduStream streams.StreamProvider,
|
|
|
|
inviteStream streams.StreamProvider,
|
2022-05-05 10:56:03 +02:00
|
|
|
rsAPI api.SyncRoomserverAPI,
|
2022-09-27 18:06:49 +02:00
|
|
|
fts *fulltext.Search,
|
2017-10-11 19:13:43 +02:00
|
|
|
) *OutputRoomEventConsumer {
|
2022-01-05 18:44:49 +01:00
|
|
|
return &OutputRoomEventConsumer{
|
|
|
|
ctx: process.Context(),
|
2021-01-08 17:59:06 +01:00
|
|
|
cfg: cfg,
|
2022-01-05 18:44:49 +01:00
|
|
|
jetstream: js,
|
2022-03-23 11:20:18 +01:00
|
|
|
topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputRoomEvent),
|
2022-01-07 18:31:57 +01:00
|
|
|
durable: cfg.Matrix.JetStream.Durable("SyncAPIRoomServerConsumer"),
|
2021-01-08 17:59:06 +01:00
|
|
|
db: store,
|
|
|
|
notifier: notifier,
|
|
|
|
pduStream: pduStream,
|
|
|
|
inviteStream: inviteStream,
|
|
|
|
rsAPI: rsAPI,
|
2022-09-27 18:06:49 +02:00
|
|
|
fts: fts,
|
2017-03-29 15:05:43 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start consuming from room servers
|
2017-10-11 19:13:43 +02:00
|
|
|
func (s *OutputRoomEventConsumer) Start() error {
|
2022-02-02 14:32:48 +01:00
|
|
|
return jetstream.JetStreamConsumer(
|
2022-08-31 13:21:56 +02:00
|
|
|
s.ctx, s.jetstream, s.topic, s.durable, 1,
|
|
|
|
s.onMessage, nats.DeliverAll(), nats.ManualAck(),
|
2022-01-27 15:29:14 +01:00
|
|
|
)
|
2017-03-29 15:05:43 +02:00
|
|
|
}
|
|
|
|
|
2017-04-10 16:12:18 +02:00
|
|
|
// onMessage is called when the sync server receives a new event from the room server output log.
|
|
|
|
// It is not safe for this function to be called from multiple goroutines, or else the
|
|
|
|
// sync stream position may race and be incorrectly calculated.
|
2022-08-31 13:21:56 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onMessage(ctx context.Context, msgs []*nats.Msg) bool {
|
|
|
|
msg := msgs[0] // Guaranteed to exist if onMessage is called
|
2022-02-02 14:32:48 +01:00
|
|
|
// Parse out the event JSON
|
|
|
|
var err error
|
|
|
|
var output api.OutputEvent
|
|
|
|
if err = json.Unmarshal(msg.Data, &output); err != nil {
|
|
|
|
// If the message was invalid, log it and move on to the next message in the stream
|
|
|
|
log.WithError(err).Errorf("roomserver output log: message parse failure")
|
|
|
|
return true
|
|
|
|
}
|
2017-03-30 16:29:23 +02:00
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
switch output.Type {
|
|
|
|
case api.OutputTypeNewRoomEvent:
|
|
|
|
// Ignore redaction events. We will add them to the database when they are
|
|
|
|
// validated (when we receive OutputTypeRedactedEvent)
|
|
|
|
event := output.NewRoomEvent.Event
|
|
|
|
if event.Type() == gomatrixserverlib.MRoomRedaction && event.StateKey() == nil {
|
|
|
|
// in the special case where the event redacts itself, just pass the message through because
|
|
|
|
// we will never see the other part of the pair
|
|
|
|
if event.Redacts() != event.EventID() {
|
|
|
|
return true
|
2020-07-08 18:45:39 +02:00
|
|
|
}
|
2022-01-05 18:44:49 +01:00
|
|
|
}
|
2022-02-02 14:32:48 +01:00
|
|
|
err = s.onNewRoomEvent(s.ctx, *output.NewRoomEvent)
|
|
|
|
case api.OutputTypeOldRoomEvent:
|
|
|
|
err = s.onOldRoomEvent(s.ctx, *output.OldRoomEvent)
|
|
|
|
case api.OutputTypeNewInviteEvent:
|
|
|
|
s.onNewInviteEvent(s.ctx, *output.NewInviteEvent)
|
|
|
|
case api.OutputTypeRetireInviteEvent:
|
|
|
|
s.onRetireInviteEvent(s.ctx, *output.RetireInviteEvent)
|
|
|
|
case api.OutputTypeNewPeek:
|
|
|
|
s.onNewPeek(s.ctx, *output.NewPeek)
|
|
|
|
case api.OutputTypeRetirePeek:
|
|
|
|
s.onRetirePeek(s.ctx, *output.RetirePeek)
|
|
|
|
case api.OutputTypeRedactedEvent:
|
|
|
|
err = s.onRedactEvent(s.ctx, *output.RedactedEvent)
|
|
|
|
default:
|
|
|
|
log.WithField("type", output.Type).Debug(
|
|
|
|
"roomserver output log: ignoring unknown output type",
|
|
|
|
)
|
|
|
|
}
|
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("roomserver output log: failed to process event")
|
|
|
|
return false
|
|
|
|
}
|
2022-01-05 18:44:49 +01:00
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
return true
|
2017-09-20 16:36:41 +02:00
|
|
|
}
|
2017-07-12 11:46:29 +02:00
|
|
|
|
2020-07-08 18:45:39 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onRedactEvent(
|
|
|
|
ctx context.Context, msg api.OutputRedactedEvent,
|
|
|
|
) error {
|
2020-11-16 16:44:53 +01:00
|
|
|
err := s.db.RedactEvent(ctx, msg.RedactedEventID, msg.RedactedBecause)
|
2020-07-08 18:45:39 +02:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("RedactEvent error'd")
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
// fake a room event so we notify clients about the redaction, as if it were
|
|
|
|
// a normal event.
|
|
|
|
return s.onNewRoomEvent(ctx, api.OutputNewRoomEvent{
|
|
|
|
Event: msg.RedactedBecause,
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onNewRoomEvent(
|
2017-09-20 16:36:41 +02:00
|
|
|
ctx context.Context, msg api.OutputNewRoomEvent,
|
|
|
|
) error {
|
2020-03-19 13:07:01 +01:00
|
|
|
ev := msg.Event
|
2022-05-09 17:19:35 +02:00
|
|
|
addsStateEvents, missingEventIDs := msg.NeededStateEventIDs()
|
2022-05-09 16:22:33 +02:00
|
|
|
|
|
|
|
// Work out the list of events we need to find out about. Either
|
|
|
|
// they will be the event supplied in the request, we will find it
|
|
|
|
// in the sync API database or we'll need to ask the roomserver.
|
|
|
|
knownEventIDs := make(map[string]bool, len(msg.AddsStateEventIDs))
|
2022-05-09 17:19:35 +02:00
|
|
|
for _, eventID := range missingEventIDs {
|
|
|
|
knownEventIDs[eventID] = false
|
2022-05-09 16:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Look the events up in the database. If we know them, add them into
|
|
|
|
// the set of adds state events.
|
|
|
|
if len(missingEventIDs) > 0 {
|
2022-05-09 17:19:35 +02:00
|
|
|
alreadyKnown, err := s.db.Events(ctx, missingEventIDs)
|
2022-03-07 18:17:16 +01:00
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("s.db.Events: %w", err)
|
|
|
|
}
|
2022-05-09 16:22:33 +02:00
|
|
|
for _, knownEvent := range alreadyKnown {
|
|
|
|
knownEventIDs[knownEvent.EventID()] = true
|
|
|
|
addsStateEvents = append(addsStateEvents, knownEvent)
|
2022-03-07 18:17:16 +01:00
|
|
|
}
|
2022-05-09 16:22:33 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Now work out if there are any remaining events we don't know. For
|
|
|
|
// these we will need to ask the roomserver for help.
|
|
|
|
missingEventIDs = missingEventIDs[:0]
|
|
|
|
for eventID, known := range knownEventIDs {
|
|
|
|
if !known {
|
|
|
|
missingEventIDs = append(missingEventIDs, eventID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ask the roomserver and add in the rest of the results into the set.
|
|
|
|
// Finally, work out if there are any more events missing.
|
|
|
|
if len(missingEventIDs) > 0 {
|
|
|
|
eventsReq := &api.QueryEventsByIDRequest{
|
|
|
|
EventIDs: missingEventIDs,
|
2022-03-07 18:17:16 +01:00
|
|
|
}
|
2022-05-09 16:22:33 +02:00
|
|
|
eventsRes := &api.QueryEventsByIDResponse{}
|
|
|
|
if err := s.rsAPI.QueryEventsByID(ctx, eventsReq, eventsRes); err != nil {
|
2022-03-07 18:17:16 +01:00
|
|
|
return fmt.Errorf("s.rsAPI.QueryEventsByID: %w", err)
|
|
|
|
}
|
|
|
|
for _, event := range eventsRes.Events {
|
2022-05-09 16:22:33 +02:00
|
|
|
addsStateEvents = append(addsStateEvents, event)
|
|
|
|
knownEventIDs[event.EventID()] = true
|
2022-03-07 18:17:16 +01:00
|
|
|
}
|
2022-05-09 16:22:33 +02:00
|
|
|
|
|
|
|
// This should never happen because this would imply that the
|
|
|
|
// roomserver has sent us adds_state_event_ids for events that it
|
|
|
|
// also doesn't know about, but let's just be sure.
|
|
|
|
for eventID, found := range knownEventIDs {
|
2022-03-07 18:17:16 +01:00
|
|
|
if !found {
|
|
|
|
return fmt.Errorf("event %s is missing", eventID)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-07 17:35:41 +02:00
|
|
|
|
2020-06-11 20:50:40 +02:00
|
|
|
ev, err := s.updateStateEvent(ev)
|
2017-07-25 17:10:59 +02:00
|
|
|
if err != nil {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2017-07-25 17:10:59 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for i := range addsStateEvents {
|
2017-08-02 17:21:35 +02:00
|
|
|
addsStateEvents[i], err = s.updateStateEvent(addsStateEvents[i])
|
2017-07-25 17:10:59 +02:00
|
|
|
if err != nil {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2017-07-25 17:10:59 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-15 12:17:46 +02:00
|
|
|
if msg.RewritesState {
|
2020-10-22 11:39:16 +02:00
|
|
|
if err = s.db.PurgeRoomState(ctx, ev.RoomID()); err != nil {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2020-09-15 12:17:46 +02:00
|
|
|
return fmt.Errorf("s.db.PurgeRoom: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-12 16:59:53 +02:00
|
|
|
pduPos, err := s.db.WriteEvent(
|
2017-09-20 16:36:41 +02:00
|
|
|
ctx,
|
2020-11-16 16:44:53 +01:00
|
|
|
ev,
|
2017-09-18 17:52:22 +02:00
|
|
|
addsStateEvents,
|
2017-09-20 16:36:41 +02:00
|
|
|
msg.AddsStateEventIDs,
|
|
|
|
msg.RemovesStateEventIDs,
|
2017-12-06 10:37:18 +01:00
|
|
|
msg.TransactionID,
|
2020-01-23 18:51:10 +01:00
|
|
|
false,
|
2022-07-18 14:46:15 +02:00
|
|
|
msg.HistoryVisibility,
|
2017-06-07 17:35:41 +02:00
|
|
|
)
|
2017-04-10 16:12:18 +02:00
|
|
|
if err != nil {
|
2017-03-30 16:29:23 +02:00
|
|
|
// panic rather than continue with an inconsistent database
|
2017-04-05 11:30:13 +02:00
|
|
|
log.WithFields(log.Fields{
|
2021-01-18 13:58:48 +01:00
|
|
|
"event_id": ev.EventID(),
|
2017-04-05 11:30:13 +02:00
|
|
|
"event": string(ev.JSON()),
|
|
|
|
log.ErrorKey: err,
|
2017-09-20 16:36:41 +02:00
|
|
|
"add": msg.AddsStateEventIDs,
|
|
|
|
"del": msg.RemovesStateEventIDs,
|
2020-10-19 15:59:13 +02:00
|
|
|
}).Panicf("roomserver output log: write new event failure")
|
|
|
|
return nil
|
|
|
|
}
|
2022-09-27 18:06:49 +02:00
|
|
|
if err = s.writeFTS(ev, pduPos); err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"event_id": ev.EventID(),
|
|
|
|
"type": ev.Type(),
|
|
|
|
}).WithError(err).Warn("failed to index fulltext element")
|
|
|
|
}
|
2020-10-19 15:59:13 +02:00
|
|
|
|
2020-11-16 16:44:53 +01:00
|
|
|
if pduPos, err = s.notifyJoinedPeeks(ctx, ev, pduPos); err != nil {
|
2020-12-21 15:27:01 +01:00
|
|
|
log.WithError(err).Errorf("Failed to notifyJoinedPeeks for PDU pos %d", pduPos)
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2020-10-19 15:59:13 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:59:06 +01:00
|
|
|
s.pduStream.Advance(pduPos)
|
|
|
|
s.notifier.OnNewEvent(ev, ev.RoomID(), nil, types.StreamingToken{PDUPosition: pduPos})
|
2020-10-19 15:59:13 +02:00
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *OutputRoomEventConsumer) onOldRoomEvent(
|
|
|
|
ctx context.Context, msg api.OutputOldRoomEvent,
|
|
|
|
) error {
|
|
|
|
ev := msg.Event
|
|
|
|
|
2020-10-22 12:50:48 +02:00
|
|
|
// TODO: The state key check when excluding from sync is designed
|
|
|
|
// to stop us from lying to clients with old state, whilst still
|
|
|
|
// allowing normal timeline events through. This is an absolute
|
|
|
|
// hack but until we have some better strategy for dealing with
|
|
|
|
// old events in the sync API, this should at least prevent us
|
|
|
|
// from confusing clients into thinking they've joined/left rooms.
|
2020-10-19 15:59:13 +02:00
|
|
|
pduPos, err := s.db.WriteEvent(
|
|
|
|
ctx,
|
2020-11-16 16:44:53 +01:00
|
|
|
ev,
|
|
|
|
[]*gomatrixserverlib.HeaderedEvent{},
|
2020-10-22 12:50:48 +02:00
|
|
|
[]string{}, // adds no state
|
|
|
|
[]string{}, // removes no state
|
|
|
|
nil, // no transaction
|
2022-07-18 14:46:15 +02:00
|
|
|
ev.StateKey() != nil, // exclude from sync?,
|
|
|
|
msg.HistoryVisibility,
|
2020-10-19 15:59:13 +02:00
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
// panic rather than continue with an inconsistent database
|
|
|
|
log.WithFields(log.Fields{
|
2021-01-18 13:58:48 +01:00
|
|
|
"event_id": ev.EventID(),
|
2020-10-19 15:59:13 +02:00
|
|
|
"event": string(ev.JSON()),
|
|
|
|
log.ErrorKey: err,
|
|
|
|
}).Panicf("roomserver output log: write old event failure")
|
2017-03-30 16:29:23 +02:00
|
|
|
return nil
|
|
|
|
}
|
2020-09-10 15:39:18 +02:00
|
|
|
|
2022-09-27 18:06:49 +02:00
|
|
|
if err = s.writeFTS(ev, pduPos); err != nil {
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"event_id": ev.EventID(),
|
|
|
|
"type": ev.Type(),
|
|
|
|
}).WithError(err).Warn("failed to index fulltext element")
|
|
|
|
}
|
|
|
|
|
2020-11-16 16:44:53 +01:00
|
|
|
if pduPos, err = s.notifyJoinedPeeks(ctx, ev, pduPos); err != nil {
|
2020-12-21 15:27:01 +01:00
|
|
|
log.WithError(err).Errorf("Failed to notifyJoinedPeeks for PDU pos %d", pduPos)
|
2020-09-10 15:39:18 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-08 17:59:06 +01:00
|
|
|
s.pduStream.Advance(pduPos)
|
|
|
|
s.notifier.OnNewEvent(ev, ev.RoomID(), nil, types.StreamingToken{PDUPosition: pduPos})
|
2017-03-30 16:29:23 +02:00
|
|
|
|
2017-03-29 15:05:43 +02:00
|
|
|
return nil
|
|
|
|
}
|
2017-06-07 17:35:41 +02:00
|
|
|
|
2020-09-10 15:39:18 +02:00
|
|
|
func (s *OutputRoomEventConsumer) notifyJoinedPeeks(ctx context.Context, ev *gomatrixserverlib.HeaderedEvent, sp types.StreamPosition) (types.StreamPosition, error) {
|
|
|
|
if ev.Type() != gomatrixserverlib.MRoomMember {
|
|
|
|
return sp, nil
|
|
|
|
}
|
|
|
|
membership, err := ev.Membership()
|
|
|
|
if err != nil {
|
|
|
|
return sp, fmt.Errorf("ev.Membership: %w", err)
|
|
|
|
}
|
|
|
|
// TODO: check that it's a join and not a profile change (means unmarshalling prev_content)
|
|
|
|
if membership == gomatrixserverlib.Join {
|
|
|
|
// check it's a local join
|
|
|
|
_, domain, err := gomatrixserverlib.SplitID('@', *ev.StateKey())
|
|
|
|
if err != nil {
|
|
|
|
return sp, fmt.Errorf("gomatrixserverlib.SplitID: %w", err)
|
|
|
|
}
|
|
|
|
if domain != s.cfg.Matrix.ServerName {
|
|
|
|
return sp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// cancel any peeks for it
|
|
|
|
peekSP, peekErr := s.db.DeletePeeks(ctx, ev.RoomID(), *ev.StateKey())
|
|
|
|
if peekErr != nil {
|
|
|
|
return sp, fmt.Errorf("s.db.DeletePeeks: %w", peekErr)
|
|
|
|
}
|
|
|
|
if peekSP > 0 {
|
|
|
|
sp = peekSP
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sp, nil
|
|
|
|
}
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onNewInviteEvent(
|
2017-09-20 16:36:41 +02:00
|
|
|
ctx context.Context, msg api.OutputNewInviteEvent,
|
2022-01-05 18:44:49 +01:00
|
|
|
) {
|
2020-12-18 12:11:21 +01:00
|
|
|
if msg.Event.StateKey() == nil {
|
2022-05-09 17:25:22 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if _, serverName, err := gomatrixserverlib.SplitID('@', *msg.Event.StateKey()); err != nil {
|
|
|
|
return
|
|
|
|
} else if serverName != s.cfg.Matrix.ServerName {
|
2022-01-05 18:44:49 +01:00
|
|
|
return
|
2020-12-18 12:11:21 +01:00
|
|
|
}
|
2020-03-19 13:07:01 +01:00
|
|
|
pduPos, err := s.db.AddInviteEvent(ctx, msg.Event)
|
2017-09-20 16:36:41 +02:00
|
|
|
if err != nil {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2017-09-20 16:36:41 +02:00
|
|
|
// panic rather than continue with an inconsistent database
|
|
|
|
log.WithFields(log.Fields{
|
2021-01-18 13:58:48 +01:00
|
|
|
"event_id": msg.Event.EventID(),
|
2017-09-20 16:36:41 +02:00
|
|
|
"event": string(msg.Event.JSON()),
|
2020-02-20 10:28:03 +01:00
|
|
|
"pdupos": pduPos,
|
2017-09-20 16:36:41 +02:00
|
|
|
log.ErrorKey: err,
|
2022-07-22 15:44:04 +02:00
|
|
|
}).Errorf("roomserver output log: write invite failure")
|
2022-01-05 18:44:49 +01:00
|
|
|
return
|
2017-09-20 16:36:41 +02:00
|
|
|
}
|
2021-01-08 17:59:06 +01:00
|
|
|
|
|
|
|
s.inviteStream.Advance(pduPos)
|
2020-12-18 12:11:21 +01:00
|
|
|
s.notifier.OnNewInvite(types.StreamingToken{InvitePosition: pduPos}, *msg.Event.StateKey())
|
2017-09-20 16:36:41 +02:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onRetireInviteEvent(
|
2017-09-20 16:36:41 +02:00
|
|
|
ctx context.Context, msg api.OutputRetireInviteEvent,
|
2022-01-05 18:44:49 +01:00
|
|
|
) {
|
2020-12-18 12:11:21 +01:00
|
|
|
pduPos, err := s.db.RetireInviteEvent(ctx, msg.EventID)
|
2022-02-16 12:56:08 +01:00
|
|
|
// It's possible we just haven't heard of this invite yet, so
|
|
|
|
// we should not panic if we try to retire it.
|
|
|
|
if err != nil && err != sql.ErrNoRows {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2017-09-20 16:36:41 +02:00
|
|
|
// panic rather than continue with an inconsistent database
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"event_id": msg.EventID,
|
|
|
|
log.ErrorKey: err,
|
2022-07-22 15:44:04 +02:00
|
|
|
}).Errorf("roomserver output log: remove invite failure")
|
2022-01-05 18:44:49 +01:00
|
|
|
return
|
2017-09-20 16:36:41 +02:00
|
|
|
}
|
2021-01-08 17:59:06 +01:00
|
|
|
|
2020-06-26 12:07:52 +02:00
|
|
|
// Notify any active sync requests that the invite has been retired.
|
2021-01-08 17:59:06 +01:00
|
|
|
s.inviteStream.Advance(pduPos)
|
2020-12-18 12:11:21 +01:00
|
|
|
s.notifier.OnNewInvite(types.StreamingToken{InvitePosition: pduPos}, msg.TargetUserID)
|
2017-09-20 16:36:41 +02:00
|
|
|
}
|
|
|
|
|
2020-09-10 15:39:18 +02:00
|
|
|
func (s *OutputRoomEventConsumer) onNewPeek(
|
|
|
|
ctx context.Context, msg api.OutputNewPeek,
|
2022-01-05 18:44:49 +01:00
|
|
|
) {
|
2020-09-10 15:39:18 +02:00
|
|
|
sp, err := s.db.AddPeek(ctx, msg.RoomID, msg.UserID, msg.DeviceID)
|
|
|
|
if err != nil {
|
2021-03-24 11:25:24 +01:00
|
|
|
sentry.CaptureException(err)
|
2020-09-10 15:39:18 +02:00
|
|
|
// panic rather than continue with an inconsistent database
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
log.ErrorKey: err,
|
2022-07-22 15:44:04 +02:00
|
|
|
}).Errorf("roomserver output log: write peek failure")
|
2022-01-05 18:44:49 +01:00
|
|
|
return
|
2020-09-10 15:39:18 +02:00
|
|
|
}
|
2021-01-08 17:59:06 +01:00
|
|
|
|
2020-09-10 15:39:18 +02:00
|
|
|
// tell the notifier about the new peek so it knows to wake up new devices
|
2021-01-08 17:59:06 +01:00
|
|
|
// TODO: This only works because the peeks table is reusing the same
|
|
|
|
// index as PDUs, but we should fix this
|
|
|
|
s.pduStream.Advance(sp)
|
|
|
|
s.notifier.OnNewPeek(msg.RoomID, msg.UserID, msg.DeviceID, types.StreamingToken{PDUPosition: sp})
|
2020-09-10 15:39:18 +02:00
|
|
|
}
|
|
|
|
|
2020-12-03 12:11:46 +01:00
|
|
|
func (s *OutputRoomEventConsumer) onRetirePeek(
|
|
|
|
ctx context.Context, msg api.OutputRetirePeek,
|
2022-01-05 18:44:49 +01:00
|
|
|
) {
|
2020-12-03 12:11:46 +01:00
|
|
|
sp, err := s.db.DeletePeek(ctx, msg.RoomID, msg.UserID, msg.DeviceID)
|
|
|
|
if err != nil {
|
|
|
|
// panic rather than continue with an inconsistent database
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
log.ErrorKey: err,
|
2022-07-22 15:44:04 +02:00
|
|
|
}).Errorf("roomserver output log: write peek failure")
|
2022-01-05 18:44:49 +01:00
|
|
|
return
|
2020-12-03 12:11:46 +01:00
|
|
|
}
|
2021-01-08 17:59:06 +01:00
|
|
|
|
2020-12-03 12:11:46 +01:00
|
|
|
// tell the notifier about the new peek so it knows to wake up new devices
|
2021-01-08 17:59:06 +01:00
|
|
|
// TODO: This only works because the peeks table is reusing the same
|
|
|
|
// index as PDUs, but we should fix this
|
|
|
|
s.pduStream.Advance(sp)
|
|
|
|
s.notifier.OnRetirePeek(msg.RoomID, msg.UserID, msg.DeviceID, types.StreamingToken{PDUPosition: sp})
|
2020-12-03 12:11:46 +01:00
|
|
|
}
|
|
|
|
|
2020-11-16 16:44:53 +01:00
|
|
|
func (s *OutputRoomEventConsumer) updateStateEvent(event *gomatrixserverlib.HeaderedEvent) (*gomatrixserverlib.HeaderedEvent, error) {
|
2017-07-25 17:10:59 +02:00
|
|
|
if event.StateKey() == nil {
|
2020-07-08 18:45:39 +02:00
|
|
|
return event, nil
|
2017-07-25 17:10:59 +02:00
|
|
|
}
|
2020-07-08 18:45:39 +02:00
|
|
|
stateKey := *event.StateKey()
|
2017-07-25 17:10:59 +02:00
|
|
|
|
2022-09-30 13:48:10 +02:00
|
|
|
snapshot, err := s.db.NewDatabaseSnapshot(s.ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2022-09-30 17:07:18 +02:00
|
|
|
var succeeded bool
|
|
|
|
defer sqlutil.EndTransactionWithCheck(snapshot, &succeeded, &err)
|
2022-09-30 13:48:10 +02:00
|
|
|
|
|
|
|
prevEvent, err := snapshot.GetStateEvent(
|
|
|
|
s.ctx, event.RoomID(), event.Type(), stateKey,
|
2017-09-18 17:52:22 +02:00
|
|
|
)
|
2017-07-25 17:10:59 +02:00
|
|
|
if err != nil {
|
|
|
|
return event, err
|
|
|
|
}
|
|
|
|
|
2021-07-22 17:46:36 +02:00
|
|
|
if prevEvent == nil || prevEvent.EventID() == event.EventID() {
|
2017-07-25 17:10:59 +02:00
|
|
|
return event, nil
|
|
|
|
}
|
|
|
|
|
2017-09-22 12:34:54 +02:00
|
|
|
prev := types.PrevEventRef{
|
|
|
|
PrevContent: prevEvent.Content(),
|
|
|
|
ReplacesState: prevEvent.EventID(),
|
|
|
|
PrevSender: prevEvent.Sender(),
|
2017-07-25 17:10:59 +02:00
|
|
|
}
|
|
|
|
|
2020-03-19 13:07:01 +01:00
|
|
|
event.Event, err = event.SetUnsigned(prev)
|
2022-09-30 17:07:18 +02:00
|
|
|
succeeded = true
|
2020-03-19 13:07:01 +01:00
|
|
|
return event, err
|
2017-07-25 17:10:59 +02:00
|
|
|
}
|
2022-09-27 18:06:49 +02:00
|
|
|
|
|
|
|
func (s *OutputRoomEventConsumer) writeFTS(ev *gomatrixserverlib.HeaderedEvent, pduPosition types.StreamPosition) error {
|
|
|
|
if !s.cfg.Fulltext.Enabled {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
e := fulltext.IndexElement{
|
|
|
|
EventID: ev.EventID(),
|
|
|
|
RoomID: ev.RoomID(),
|
|
|
|
StreamPosition: int64(pduPosition),
|
|
|
|
}
|
|
|
|
e.SetContentType(ev.Type())
|
|
|
|
|
|
|
|
switch ev.Type() {
|
|
|
|
case "m.room.message":
|
|
|
|
e.Content = gjson.GetBytes(ev.Content(), "body").String()
|
|
|
|
case gomatrixserverlib.MRoomName:
|
|
|
|
e.Content = gjson.GetBytes(ev.Content(), "name").String()
|
|
|
|
case gomatrixserverlib.MRoomTopic:
|
|
|
|
e.Content = gjson.GetBytes(ev.Content(), "topic").String()
|
|
|
|
case gomatrixserverlib.MRoomRedaction:
|
|
|
|
log.Tracef("Redacting event: %s", ev.Redacts())
|
|
|
|
if err := s.fts.Delete(ev.Redacts()); err != nil {
|
|
|
|
return fmt.Errorf("failed to delete entry from fulltext index: %w", err)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
default:
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
if e.Content != "" {
|
|
|
|
log.Tracef("Indexing element: %+v", e)
|
|
|
|
if err := s.fts.Index(e); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|