2018-01-02 11:26:56 +01: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 syncapi
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
|
2023-03-17 12:09:45 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/fulltext"
|
2023-03-22 09:21:32 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/internal/sqlutil"
|
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
|
|
"github.com/matrix-org/dendrite/setup/process"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2022-09-20 11:32:03 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-06-16 15:10:55 +02:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-01-02 11:26:56 +01:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/consumers"
|
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"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/routing"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2021-01-08 17:59:06 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/streams"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/sync"
|
|
|
|
)
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers for the SyncAPI
|
2018-01-02 11:26:56 +01:00
|
|
|
// component.
|
2020-06-08 16:51:07 +02:00
|
|
|
func AddPublicRoutes(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext *process.ProcessContext,
|
|
|
|
routers httputil.Routers,
|
|
|
|
dendriteCfg *config.Dendrite,
|
2023-07-19 13:37:04 +02:00
|
|
|
cm *sqlutil.Connections,
|
2023-03-22 09:21:32 +01:00
|
|
|
natsInstance *jetstream.NATSInstance,
|
2022-05-05 10:56:03 +02:00
|
|
|
userAPI userapi.SyncUserAPI,
|
|
|
|
rsAPI api.SyncRoomserverAPI,
|
2023-03-17 12:09:45 +01:00
|
|
|
caches caching.LazyLoadCache,
|
2023-03-22 09:21:32 +01:00
|
|
|
enableMetrics bool,
|
2018-01-02 11:26:56 +01:00
|
|
|
) {
|
2023-03-22 09:21:32 +01:00
|
|
|
js, natsClient := natsInstance.Prepare(processContext, &dendriteCfg.Global.JetStream)
|
2022-05-03 18:17:02 +02:00
|
|
|
|
2023-03-22 09:21:32 +01:00
|
|
|
syncDB, err := storage.NewSyncServerDatasource(processContext.Context(), cm, &dendriteCfg.SyncAPI.Database)
|
2018-01-02 11:26:56 +01:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to sync db")
|
|
|
|
}
|
|
|
|
|
2022-03-29 14:14:35 +02:00
|
|
|
eduCache := caching.NewTypingCache()
|
2023-06-12 13:19:25 +02:00
|
|
|
notifier := notifier.NewNotifier(rsAPI)
|
2023-03-17 12:09:45 +01:00
|
|
|
streams := streams.NewSyncStreamProviders(syncDB, userAPI, rsAPI, eduCache, caches, notifier)
|
2022-04-06 13:11:19 +02:00
|
|
|
notifier.SetCurrentPosition(streams.Latest(context.Background()))
|
2021-01-08 17:59:06 +01:00
|
|
|
if err = notifier.Load(context.Background(), syncDB); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to load notifier ")
|
2018-01-02 11:26:56 +01:00
|
|
|
}
|
|
|
|
|
2023-03-17 12:09:45 +01:00
|
|
|
var fts *fulltext.Search
|
2023-03-22 09:21:32 +01:00
|
|
|
if dendriteCfg.SyncAPI.Fulltext.Enabled {
|
2023-03-22 14:12:06 +01:00
|
|
|
fts, err = fulltext.New(processContext, dendriteCfg.SyncAPI.Fulltext)
|
2023-03-17 12:09:45 +01:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to create full text")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-06 13:11:19 +02:00
|
|
|
federationPresenceProducer := &producers.FederationAPIPresenceProducer{
|
2023-03-22 09:21:32 +01:00
|
|
|
Topic: dendriteCfg.Global.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
2022-04-06 13:11:19 +02:00
|
|
|
JetStream: js,
|
|
|
|
}
|
2022-05-17 16:53:08 +02:00
|
|
|
presenceConsumer := consumers.NewPresenceConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, natsClient, syncDB,
|
2022-05-17 16:53:08 +02:00
|
|
|
notifier, streams.PresenceStreamProvider,
|
|
|
|
userAPI,
|
|
|
|
)
|
2022-04-06 13:11:19 +02:00
|
|
|
|
2023-03-22 09:21:32 +01:00
|
|
|
requestPool := sync.NewRequestPool(syncDB, &dendriteCfg.SyncAPI, userAPI, rsAPI, streams, notifier, federationPresenceProducer, presenceConsumer, enableMetrics)
|
2022-05-17 16:53:08 +02:00
|
|
|
|
|
|
|
if err = presenceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start presence consumer")
|
|
|
|
}
|
2018-01-02 11:26:56 +01:00
|
|
|
|
2020-07-30 19:00:56 +02:00
|
|
|
keyChangeConsumer := consumers.NewOutputKeyChangeEventConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, dendriteCfg.Global.JetStream.Prefixed(jetstream.OutputKeyChangeEvent),
|
2022-05-05 10:56:03 +02:00
|
|
|
js, rsAPI, syncDB, notifier,
|
2022-01-05 18:44:49 +01:00
|
|
|
streams.DeviceListStreamProvider,
|
2020-07-30 19:00:56 +02:00
|
|
|
)
|
|
|
|
if err = keyChangeConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start key change consumer")
|
|
|
|
}
|
|
|
|
|
2023-12-12 12:13:55 +01:00
|
|
|
var asProducer *producers.AppserviceEventProducer
|
|
|
|
if len(dendriteCfg.AppServiceAPI.Derived.ApplicationServices) > 0 {
|
|
|
|
asProducer = &producers.AppserviceEventProducer{
|
|
|
|
JetStream: js, Topic: dendriteCfg.Global.JetStream.Prefixed(jetstream.OutputAppserviceEvent),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
roomConsumer := consumers.NewOutputRoomEventConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, syncDB, notifier, streams.PDUStreamProvider,
|
2023-12-12 12:13:55 +01:00
|
|
|
streams.InviteStreamProvider, rsAPI, fts, asProducer,
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
if err = roomConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start room server consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
clientConsumer := consumers.NewOutputClientDataConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, natsClient, syncDB, notifier,
|
2023-03-17 12:09:45 +01:00
|
|
|
streams.AccountDataStreamProvider, fts,
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
if err = clientConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start client data consumer")
|
|
|
|
}
|
|
|
|
|
2022-03-03 12:40:53 +01:00
|
|
|
notificationConsumer := consumers.NewOutputNotificationDataConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, syncDB, notifier, streams.NotificationDataStreamProvider,
|
2022-03-03 12:40:53 +01:00
|
|
|
)
|
|
|
|
if err = notificationConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start notification data consumer")
|
|
|
|
}
|
|
|
|
|
2019-07-12 16:59:53 +02:00
|
|
|
typingConsumer := consumers.NewOutputTypingEventConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, eduCache, notifier, streams.TypingStreamProvider,
|
2019-07-12 16:59:53 +02:00
|
|
|
)
|
|
|
|
if err = typingConsumer.Start(); err != nil {
|
Send-to-device support (#1072)
* Groundwork for send-to-device messaging
* Update sample config
* Add unstable routing for now
* Send to device consumer in sync API
* Start the send-to-device consumer
* fix indentation in dendrite-config.yaml
* Create send-to-device database tables, other tweaks
* Add some logic for send-to-device messages, add them into sync stream
* Handle incoming send-to-device messages, count them with EDU stream pos
* Undo changes to test
* pq.Array
* Fix sync
* Logging
* Fix a couple of transaction things, fix client API
* Add send-to-device test, hopefully fix bugs
* Comments
* Refactor a bit
* Fix schema
* Fix queries
* Debug logging
* Fix storing and retrieving of send-to-device messages
* Try to avoid database locks
* Update sync position
* Use latest sync position
* Jiggle about sync a bit
* Fix tests
* Break out the retrieval from the update/delete behaviour
* Comments
* nolint on getResponseWithPDUsForCompleteSync
* Try to line up sync tokens again
* Implement wildcard
* Add all send-to-device tests to whitelist, what could possibly go wrong?
* Only care about wildcard when targeted locally
* Deduplicate transactions
* Handle tokens properly, return immediately if waiting send-to-device messages
* Fix sync
* Update sytest-whitelist
* Fix copyright notice (need to do more of this)
* Comments, copyrights
* Return errors from Do, fix dendritejs
* Review comments
* Comments
* Constructor for TransactionWriter
* defletions
* Update gomatrixserverlib, sytest-blacklist
2020-06-01 18:50:19 +02:00
|
|
|
logrus.WithError(err).Panicf("failed to start typing consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
sendToDeviceConsumer := consumers.NewOutputSendToDeviceEventConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, syncDB, userAPI, notifier, streams.SendToDeviceStreamProvider,
|
Send-to-device support (#1072)
* Groundwork for send-to-device messaging
* Update sample config
* Add unstable routing for now
* Send to device consumer in sync API
* Start the send-to-device consumer
* fix indentation in dendrite-config.yaml
* Create send-to-device database tables, other tweaks
* Add some logic for send-to-device messages, add them into sync stream
* Handle incoming send-to-device messages, count them with EDU stream pos
* Undo changes to test
* pq.Array
* Fix sync
* Logging
* Fix a couple of transaction things, fix client API
* Add send-to-device test, hopefully fix bugs
* Comments
* Refactor a bit
* Fix schema
* Fix queries
* Debug logging
* Fix storing and retrieving of send-to-device messages
* Try to avoid database locks
* Update sync position
* Use latest sync position
* Jiggle about sync a bit
* Fix tests
* Break out the retrieval from the update/delete behaviour
* Comments
* nolint on getResponseWithPDUsForCompleteSync
* Try to line up sync tokens again
* Implement wildcard
* Add all send-to-device tests to whitelist, what could possibly go wrong?
* Only care about wildcard when targeted locally
* Deduplicate transactions
* Handle tokens properly, return immediately if waiting send-to-device messages
* Fix sync
* Update sytest-whitelist
* Fix copyright notice (need to do more of this)
* Comments, copyrights
* Return errors from Do, fix dendritejs
* Review comments
* Comments
* Constructor for TransactionWriter
* defletions
* Update gomatrixserverlib, sytest-blacklist
2020-06-01 18:50:19 +02:00
|
|
|
)
|
|
|
|
if err = sendToDeviceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start send-to-device consumer")
|
2019-07-12 16:59:53 +02:00
|
|
|
}
|
|
|
|
|
2020-11-09 19:46:11 +01:00
|
|
|
receiptConsumer := consumers.NewOutputReceiptEventConsumer(
|
2023-03-22 09:21:32 +01:00
|
|
|
processContext, &dendriteCfg.SyncAPI, js, syncDB, notifier, streams.ReceiptStreamProvider,
|
2020-11-09 19:46:11 +01:00
|
|
|
)
|
|
|
|
if err = receiptConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start receipts consumer")
|
|
|
|
}
|
|
|
|
|
2023-07-13 14:18:37 +02:00
|
|
|
rateLimits := httputil.NewRateLimits(&dendriteCfg.ClientAPI.RateLimiting)
|
|
|
|
|
2022-05-03 18:17:02 +02:00
|
|
|
routing.Setup(
|
2023-03-22 09:21:32 +01:00
|
|
|
routers.Client, requestPool, syncDB, userAPI,
|
|
|
|
rsAPI, &dendriteCfg.SyncAPI, caches, fts,
|
2023-07-13 14:18:37 +02:00
|
|
|
rateLimits,
|
2022-05-03 18:17:02 +02:00
|
|
|
)
|
2018-01-02 11:26:56 +01:00
|
|
|
}
|