2018-01-02 04:26:56 -06: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"
|
|
|
|
|
2020-06-08 09:51:07 -05:00
|
|
|
"github.com/gorilla/mux"
|
2022-03-29 07:14:35 -05:00
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2020-07-30 05:15:46 -05:00
|
|
|
keyapi "github.com/matrix-org/dendrite/keyserver/api"
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
2022-05-03 10:35:06 -05:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 11:41:00 -06:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2022-01-05 11:44:49 -06:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-06-16 08:10:55 -05:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2020-01-23 11:51:10 -06:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2018-01-02 04:26:56 -06:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/consumers"
|
2021-01-08 10:59:06 -06:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/notifier"
|
2022-03-03 05:40:53 -06:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/producers"
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/routing"
|
|
|
|
"github.com/matrix-org/dendrite/syncapi/storage"
|
2021-01-08 10:59:06 -06:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/streams"
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/matrix-org/dendrite/syncapi/sync"
|
|
|
|
)
|
|
|
|
|
2020-06-08 09:51:07 -05:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers for the SyncAPI
|
2018-01-02 04:26:56 -06:00
|
|
|
// component.
|
2020-06-08 09:51:07 -05:00
|
|
|
func AddPublicRoutes(
|
2022-05-03 10:35:06 -05:00
|
|
|
base *base.BaseDendrite,
|
2020-06-08 09:51:07 -05:00
|
|
|
router *mux.Router,
|
2020-06-16 08:10:55 -05:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2020-05-01 04:48:17 -05:00
|
|
|
rsAPI api.RoomserverInternalAPI,
|
2020-07-30 05:15:46 -05:00
|
|
|
keyAPI keyapi.KeyInternalAPI,
|
2020-01-23 11:51:10 -06:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-08-10 08:18:04 -05:00
|
|
|
cfg *config.SyncAPI,
|
2018-01-02 04:26:56 -06:00
|
|
|
) {
|
2022-05-03 10:35:06 -05:00
|
|
|
js, natsClient := jetstream.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2020-10-15 07:27:13 -05:00
|
|
|
|
2022-05-03 10:35:06 -05:00
|
|
|
syncDB, err := storage.NewSyncServerDatasource(base, &cfg.Database)
|
2018-01-02 04:26:56 -06:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to sync db")
|
|
|
|
}
|
|
|
|
|
2022-03-29 07:14:35 -05:00
|
|
|
eduCache := caching.NewTypingCache()
|
2022-04-19 03:46:45 -05:00
|
|
|
lazyLoadCache, err := caching.NewLazyLoadCache()
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to create lazy loading cache")
|
|
|
|
}
|
2022-04-06 06:11:19 -05:00
|
|
|
notifier := notifier.NewNotifier()
|
2022-04-19 03:46:45 -05:00
|
|
|
streams := streams.NewSyncStreamProviders(syncDB, userAPI, rsAPI, keyAPI, eduCache, lazyLoadCache, notifier)
|
2022-04-06 06:11:19 -05:00
|
|
|
notifier.SetCurrentPosition(streams.Latest(context.Background()))
|
2021-01-08 10:59:06 -06:00
|
|
|
if err = notifier.Load(context.Background(), syncDB); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to load notifier ")
|
2018-01-02 04:26:56 -06:00
|
|
|
}
|
|
|
|
|
2022-04-06 06:11:19 -05:00
|
|
|
federationPresenceProducer := &producers.FederationAPIPresenceProducer{
|
|
|
|
Topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
|
|
|
JetStream: js,
|
|
|
|
}
|
|
|
|
|
|
|
|
requestPool := sync.NewRequestPool(syncDB, cfg, userAPI, keyAPI, rsAPI, streams, notifier, federationPresenceProducer)
|
2018-01-02 04:26:56 -06:00
|
|
|
|
2022-03-03 05:40:53 -06:00
|
|
|
userAPIStreamEventProducer := &producers.UserAPIStreamEventProducer{
|
|
|
|
JetStream: js,
|
2022-03-23 05:20:18 -05:00
|
|
|
Topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputStreamEvent),
|
2022-03-03 05:40:53 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
userAPIReadUpdateProducer := &producers.UserAPIReadProducer{
|
|
|
|
JetStream: js,
|
2022-03-23 05:20:18 -05:00
|
|
|
Topic: cfg.Matrix.JetStream.Prefixed(jetstream.OutputReadUpdate),
|
2022-03-03 05:40:53 -06:00
|
|
|
}
|
|
|
|
|
2020-07-30 12:00:56 -05:00
|
|
|
keyChangeConsumer := consumers.NewOutputKeyChangeEventConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, cfg.Matrix.JetStream.Prefixed(jetstream.OutputKeyChangeEvent),
|
2022-02-04 07:08:13 -06:00
|
|
|
js, keyAPI, rsAPI, syncDB, notifier,
|
2022-01-05 11:44:49 -06:00
|
|
|
streams.DeviceListStreamProvider,
|
2020-07-30 12:00:56 -05:00
|
|
|
)
|
|
|
|
if err = keyChangeConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start key change consumer")
|
|
|
|
}
|
|
|
|
|
2018-01-02 04:26:56 -06:00
|
|
|
roomConsumer := consumers.NewOutputRoomEventConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, syncDB, notifier, streams.PDUStreamProvider,
|
2022-03-03 05:40:53 -06:00
|
|
|
streams.InviteStreamProvider, rsAPI, userAPIStreamEventProducer,
|
2018-01-02 04:26:56 -06:00
|
|
|
)
|
|
|
|
if err = roomConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start room server consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
clientConsumer := consumers.NewOutputClientDataConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, syncDB, notifier, streams.AccountDataStreamProvider,
|
2022-03-03 05:40:53 -06:00
|
|
|
userAPIReadUpdateProducer,
|
2018-01-02 04:26:56 -06:00
|
|
|
)
|
|
|
|
if err = clientConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start client data consumer")
|
|
|
|
}
|
|
|
|
|
2022-03-03 05:40:53 -06:00
|
|
|
notificationConsumer := consumers.NewOutputNotificationDataConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, syncDB, notifier, streams.NotificationDataStreamProvider,
|
2022-03-03 05:40:53 -06:00
|
|
|
)
|
|
|
|
if err = notificationConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start notification data consumer")
|
|
|
|
}
|
|
|
|
|
2019-07-12 09:59:53 -05:00
|
|
|
typingConsumer := consumers.NewOutputTypingEventConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, eduCache, notifier, streams.TypingStreamProvider,
|
2019-07-12 09:59:53 -05: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 11:50:19 -05:00
|
|
|
logrus.WithError(err).Panicf("failed to start typing consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
sendToDeviceConsumer := consumers.NewOutputSendToDeviceEventConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, syncDB, 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 11:50:19 -05:00
|
|
|
)
|
|
|
|
if err = sendToDeviceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start send-to-device consumer")
|
2019-07-12 09:59:53 -05:00
|
|
|
}
|
|
|
|
|
2020-11-09 12:46:11 -06:00
|
|
|
receiptConsumer := consumers.NewOutputReceiptEventConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, syncDB, notifier, streams.ReceiptStreamProvider,
|
2022-03-03 05:40:53 -06:00
|
|
|
userAPIReadUpdateProducer,
|
2020-11-09 12:46:11 -06:00
|
|
|
)
|
|
|
|
if err = receiptConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start receipts consumer")
|
|
|
|
}
|
|
|
|
|
2022-04-06 06:11:19 -05:00
|
|
|
presenceConsumer := consumers.NewPresenceConsumer(
|
2022-05-03 10:35:06 -05:00
|
|
|
base.ProcessContext, cfg, js, natsClient, syncDB,
|
2022-04-06 06:11:19 -05:00
|
|
|
notifier, streams.PresenceStreamProvider,
|
|
|
|
userAPI,
|
|
|
|
)
|
|
|
|
if err = presenceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start presence consumer")
|
|
|
|
}
|
|
|
|
|
2022-04-22 04:38:29 -05:00
|
|
|
routing.Setup(router, requestPool, syncDB, userAPI, federation, rsAPI, cfg, lazyLoadCache)
|
2018-01-02 04:26:56 -06:00
|
|
|
}
|