2017-08-02 17:21:35 +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.
|
|
|
|
|
|
|
|
package consumers
|
|
|
|
|
|
|
|
import (
|
2017-09-18 17:52:22 +02:00
|
|
|
"context"
|
2022-03-03 13:09:16 +01:00
|
|
|
"database/sql"
|
2017-08-02 17:21:35 +02:00
|
|
|
"encoding/json"
|
2022-03-03 12:40:53 +01:00
|
|
|
"fmt"
|
2017-08-02 17:21:35 +02:00
|
|
|
|
2021-03-24 11:25:24 +01:00
|
|
|
"github.com/getsentry/sentry-go"
|
2020-06-12 15:55:57 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/eventutil"
|
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"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/producers"
|
2017-08-02 17:21:35 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2019-07-12 16:59:53 +02:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/nats-io/nats.go"
|
2022-03-03 12:40:53 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
2017-11-16 11:12:02 +01:00
|
|
|
log "github.com/sirupsen/logrus"
|
2017-08-02 17:21:35 +02:00
|
|
|
)
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
// OutputClientDataConsumer consumes events that originated in the client API server.
|
|
|
|
type OutputClientDataConsumer struct {
|
2022-03-03 12:40:53 +01:00
|
|
|
ctx context.Context
|
|
|
|
jetstream nats.JetStreamContext
|
|
|
|
durable string
|
|
|
|
topic string
|
|
|
|
db storage.Database
|
|
|
|
stream types.StreamProvider
|
|
|
|
notifier *notifier.Notifier
|
|
|
|
serverName gomatrixserverlib.ServerName
|
|
|
|
producer *producers.UserAPIReadProducer
|
2017-08-02 17:21:35 +02:00
|
|
|
}
|
|
|
|
|
2017-10-11 19:13:43 +02:00
|
|
|
// NewOutputClientDataConsumer creates a new OutputClientData consumer. Call Start() to begin consuming from room servers.
|
|
|
|
func NewOutputClientDataConsumer(
|
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,
|
|
|
|
stream types.StreamProvider,
|
2022-03-03 12:40:53 +01:00
|
|
|
producer *producers.UserAPIReadProducer,
|
2017-10-11 19:13:43 +02:00
|
|
|
) *OutputClientDataConsumer {
|
2022-01-05 18:44:49 +01:00
|
|
|
return &OutputClientDataConsumer{
|
2022-03-03 12:40:53 +01:00
|
|
|
ctx: process.Context(),
|
|
|
|
jetstream: js,
|
2022-03-23 11:20:18 +01:00
|
|
|
topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputClientData),
|
2022-03-03 12:40:53 +01:00
|
|
|
durable: cfg.Matrix.JetStream.Durable("SyncAPIClientAPIConsumer"),
|
|
|
|
db: store,
|
|
|
|
notifier: notifier,
|
|
|
|
stream: stream,
|
|
|
|
serverName: cfg.Matrix.ServerName,
|
|
|
|
producer: producer,
|
2017-08-02 17:21:35 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start consuming from room servers
|
2017-10-11 19:13:43 +02:00
|
|
|
func (s *OutputClientDataConsumer) Start() error {
|
2022-02-02 14:32:48 +01:00
|
|
|
return jetstream.JetStreamConsumer(
|
|
|
|
s.ctx, s.jetstream, s.topic, s.durable, s.onMessage,
|
|
|
|
nats.DeliverAll(), nats.ManualAck(),
|
|
|
|
)
|
2017-08-02 17:21:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// onMessage is called when the sync server receives a new event from the client API 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-02-02 14:32:48 +01:00
|
|
|
func (s *OutputClientDataConsumer) onMessage(ctx context.Context, msg *nats.Msg) bool {
|
|
|
|
// Parse out the event JSON
|
|
|
|
userID := msg.Header.Get(jetstream.UserID)
|
|
|
|
var output eventutil.AccountData
|
|
|
|
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("client API server output log: message parse failure")
|
|
|
|
sentry.CaptureException(err)
|
|
|
|
return true
|
|
|
|
}
|
2017-08-02 17:21:35 +02:00
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"type": output.Type,
|
|
|
|
"room_id": output.RoomID,
|
|
|
|
}).Debug("Received data from client API server")
|
2022-01-05 18:44:49 +01:00
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
streamPos, err := s.db.UpsertAccountData(
|
|
|
|
s.ctx, userID, output.RoomID, output.Type,
|
|
|
|
)
|
|
|
|
if err != nil {
|
|
|
|
sentry.CaptureException(err)
|
|
|
|
log.WithFields(log.Fields{
|
|
|
|
"type": output.Type,
|
|
|
|
"room_id": output.RoomID,
|
|
|
|
log.ErrorKey: err,
|
|
|
|
}).Panicf("could not save account data")
|
|
|
|
}
|
2017-08-02 17:21:35 +02:00
|
|
|
|
2022-03-03 12:40:53 +01:00
|
|
|
if err = s.sendReadUpdate(ctx, userID, output); err != nil {
|
|
|
|
log.WithError(err).WithFields(logrus.Fields{
|
|
|
|
"user_id": userID,
|
|
|
|
"room_id": output.RoomID,
|
|
|
|
}).Errorf("Failed to generate read update")
|
|
|
|
sentry.CaptureException(err)
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
s.stream.Advance(streamPos)
|
|
|
|
s.notifier.OnNewAccountData(userID, types.StreamingToken{AccountDataPosition: streamPos})
|
2017-08-02 17:21:35 +02:00
|
|
|
|
2022-02-02 14:32:48 +01:00
|
|
|
return true
|
2017-08-02 17:21:35 +02:00
|
|
|
}
|
2022-03-03 12:40:53 +01:00
|
|
|
|
|
|
|
func (s *OutputClientDataConsumer) sendReadUpdate(ctx context.Context, userID string, output eventutil.AccountData) error {
|
|
|
|
if output.Type != "m.fully_read" || output.ReadMarker == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
_, serverName, err := gomatrixserverlib.SplitID('@', userID)
|
|
|
|
if err != nil {
|
|
|
|
return fmt.Errorf("gomatrixserverlib.SplitID: %w", err)
|
|
|
|
}
|
|
|
|
if serverName != s.serverName {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
var readPos types.StreamPosition
|
|
|
|
var fullyReadPos types.StreamPosition
|
|
|
|
if output.ReadMarker.Read != "" {
|
2022-03-03 13:09:16 +01:00
|
|
|
if _, readPos, err = s.db.PositionInTopology(ctx, output.ReadMarker.Read); err != nil && err != sql.ErrNoRows {
|
2022-03-03 12:40:53 +01:00
|
|
|
return fmt.Errorf("s.db.PositionInTopology (Read): %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if output.ReadMarker.FullyRead != "" {
|
2022-03-03 13:09:16 +01:00
|
|
|
if _, fullyReadPos, err = s.db.PositionInTopology(ctx, output.ReadMarker.FullyRead); err != nil && err != sql.ErrNoRows {
|
2022-03-03 12:40:53 +01:00
|
|
|
return fmt.Errorf("s.db.PositionInTopology (FullyRead): %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if readPos > 0 || fullyReadPos > 0 {
|
|
|
|
if err := s.producer.SendReadUpdate(userID, output.RoomID, readPos, fullyReadPos); err != nil {
|
|
|
|
return fmt.Errorf("s.producer.SendReadUpdate: %w", err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|