2020-07-23 15:41:36 +00:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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 (
|
|
|
|
"context"
|
|
|
|
"encoding/json"
|
2020-07-27 08:19:55 +00:00
|
|
|
"sync"
|
2020-07-23 15:41:36 +00:00
|
|
|
|
|
|
|
"github.com/Shopify/sarama"
|
2021-03-24 10:25:24 +00:00
|
|
|
"github.com/getsentry/sentry-go"
|
2020-07-23 15:41:36 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver/api"
|
2020-09-04 13:25:01 +00:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2021-01-26 12:56:20 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2021-01-08 16:59:06 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/notifier"
|
2020-07-23 15:41:36 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2020-07-27 08:19:55 +00:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/types"
|
2020-07-23 15:41:36 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
log "github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// OutputKeyChangeEventConsumer consumes events that originated in the key server.
|
|
|
|
type OutputKeyChangeEventConsumer struct {
|
2020-07-28 17:25:16 +00:00
|
|
|
keyChangeConsumer *internal.ContinualConsumer
|
|
|
|
db storage.Database
|
2021-01-08 16:59:06 +00:00
|
|
|
notifier *notifier.Notifier
|
|
|
|
stream types.PartitionedStreamProvider
|
2020-07-28 17:25:16 +00:00
|
|
|
serverName gomatrixserverlib.ServerName // our server name
|
2020-09-04 13:25:01 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI
|
2020-07-28 17:25:16 +00:00
|
|
|
keyAPI api.KeyInternalAPI
|
2020-07-27 08:19:55 +00:00
|
|
|
partitionToOffset map[int32]int64
|
|
|
|
partitionToOffsetMu sync.Mutex
|
2020-07-23 15:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewOutputKeyChangeEventConsumer creates a new OutputKeyChangeEventConsumer.
|
|
|
|
// Call Start() to begin consuming from the key server.
|
|
|
|
func NewOutputKeyChangeEventConsumer(
|
2021-01-26 12:56:20 +00:00
|
|
|
process *process.ProcessContext,
|
2020-07-27 08:19:55 +00:00
|
|
|
serverName gomatrixserverlib.ServerName,
|
|
|
|
topic string,
|
2020-07-23 15:41:36 +00:00
|
|
|
kafkaConsumer sarama.Consumer,
|
2020-07-28 17:25:16 +00:00
|
|
|
keyAPI api.KeyInternalAPI,
|
2020-09-04 13:25:01 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-07-23 15:41:36 +00:00
|
|
|
store storage.Database,
|
2021-01-08 16:59:06 +00:00
|
|
|
notifier *notifier.Notifier,
|
|
|
|
stream types.PartitionedStreamProvider,
|
2020-07-23 15:41:36 +00:00
|
|
|
) *OutputKeyChangeEventConsumer {
|
|
|
|
|
|
|
|
consumer := internal.ContinualConsumer{
|
2021-01-26 12:56:20 +00:00
|
|
|
Process: process,
|
2020-09-01 15:53:38 +00:00
|
|
|
ComponentName: "syncapi/keychange",
|
2020-07-27 08:19:55 +00:00
|
|
|
Topic: topic,
|
2020-07-23 15:41:36 +00:00
|
|
|
Consumer: kafkaConsumer,
|
|
|
|
PartitionStore: store,
|
|
|
|
}
|
|
|
|
|
|
|
|
s := &OutputKeyChangeEventConsumer{
|
2020-07-27 08:19:55 +00:00
|
|
|
keyChangeConsumer: &consumer,
|
|
|
|
db: store,
|
|
|
|
serverName: serverName,
|
2020-07-28 17:25:16 +00:00
|
|
|
keyAPI: keyAPI,
|
2020-09-04 13:25:01 +00:00
|
|
|
rsAPI: rsAPI,
|
2020-07-27 08:19:55 +00:00
|
|
|
partitionToOffset: make(map[int32]int64),
|
|
|
|
partitionToOffsetMu: sync.Mutex{},
|
2021-01-08 16:59:06 +00:00
|
|
|
notifier: notifier,
|
|
|
|
stream: stream,
|
2020-07-23 15:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
consumer.ProcessMessage = s.onMessage
|
|
|
|
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
// Start consuming from the key server
|
|
|
|
func (s *OutputKeyChangeEventConsumer) Start() error {
|
2020-07-27 08:19:55 +00:00
|
|
|
offsets, err := s.keyChangeConsumer.StartOffsets()
|
|
|
|
s.partitionToOffsetMu.Lock()
|
|
|
|
for _, o := range offsets {
|
|
|
|
s.partitionToOffset[o.Partition] = o.Offset
|
|
|
|
}
|
|
|
|
s.partitionToOffsetMu.Unlock()
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *OutputKeyChangeEventConsumer) updateOffset(msg *sarama.ConsumerMessage) {
|
|
|
|
s.partitionToOffsetMu.Lock()
|
|
|
|
defer s.partitionToOffsetMu.Unlock()
|
|
|
|
s.partitionToOffset[msg.Partition] = msg.Offset
|
2020-07-23 15:41:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *OutputKeyChangeEventConsumer) onMessage(msg *sarama.ConsumerMessage) error {
|
2020-08-25 12:11:52 +00:00
|
|
|
defer s.updateOffset(msg)
|
|
|
|
|
2020-08-03 16:07:06 +00:00
|
|
|
var output api.DeviceMessage
|
2020-07-23 15:41:36 +00:00
|
|
|
if err := json.Unmarshal(msg.Value, &output); err != nil {
|
|
|
|
// If the message was invalid, log it and move on to the next message in the stream
|
|
|
|
log.WithError(err).Error("syncapi: failed to unmarshal key change event from key server")
|
2021-03-24 10:25:24 +00:00
|
|
|
sentry.CaptureException(err)
|
2020-07-23 15:41:36 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// work out who we need to notify about the new key
|
2020-09-04 13:25:01 +00:00
|
|
|
var queryRes roomserverAPI.QuerySharedUsersResponse
|
|
|
|
err := s.rsAPI.QuerySharedUsers(context.Background(), &roomserverAPI.QuerySharedUsersRequest{
|
2020-07-27 08:19:55 +00:00
|
|
|
UserID: output.UserID,
|
|
|
|
}, &queryRes)
|
2020-07-23 15:41:36 +00:00
|
|
|
if err != nil {
|
|
|
|
log.WithError(err).Error("syncapi: failed to QuerySharedUsers for key change event from key server")
|
2021-03-24 10:25:24 +00:00
|
|
|
sentry.CaptureException(err)
|
2020-07-23 15:41:36 +00:00
|
|
|
return err
|
|
|
|
}
|
2020-12-18 14:04:17 +00:00
|
|
|
// make sure we get our own key updates too!
|
|
|
|
queryRes.UserIDsToCount[output.UserID] = 1
|
2021-01-08 16:59:06 +00:00
|
|
|
posUpdate := types.LogPosition{
|
|
|
|
Offset: msg.Offset,
|
|
|
|
Partition: msg.Partition,
|
2020-12-10 18:57:10 +00:00
|
|
|
}
|
2021-01-08 16:59:06 +00:00
|
|
|
|
|
|
|
s.stream.Advance(posUpdate)
|
2020-07-30 10:15:46 +00:00
|
|
|
for userID := range queryRes.UserIDsToCount {
|
2021-01-08 16:59:06 +00:00
|
|
|
s.notifier.OnNewKeyChange(types.StreamingToken{DeviceListPosition: posUpdate}, userID, output.UserID)
|
2020-07-28 17:25:16 +00:00
|
|
|
}
|
2021-01-08 16:59:06 +00:00
|
|
|
|
2020-07-30 10:15:46 +00:00
|
|
|
return nil
|
2020-07-23 15:41:36 +00:00
|
|
|
}
|