2018-01-02 10:26:56 +00: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 federationapi
|
|
|
|
|
|
|
|
import (
|
2022-08-09 10:15:58 +01:00
|
|
|
"time"
|
|
|
|
|
2023-03-22 08:21:32 +00: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"
|
2023-04-06 09:55:01 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib/fclient"
|
2022-09-07 10:45:12 +01:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/api"
|
2021-06-30 12:05:58 +01:00
|
|
|
federationAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/consumers"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/internal"
|
2022-03-29 13:14:35 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/producers"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/queue"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/statistics"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/internal/caching"
|
2018-08-20 10:45:17 +01:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2022-01-05 17:44:49 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-06-16 14:53:19 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-08-20 10:45:17 +01:00
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2022-09-07 10:45:12 +01:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
|
2020-06-08 15:51:07 +01:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers on the base API muxes for the FederationAPI component.
|
|
|
|
func AddPublicRoutes(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext *process.ProcessContext,
|
|
|
|
routers httputil.Routers,
|
|
|
|
dendriteConfig *config.Dendrite,
|
|
|
|
natsInstance *jetstream.NATSInstance,
|
2023-02-20 13:58:03 +00:00
|
|
|
userAPI userapi.FederationUserAPI,
|
2023-04-06 09:55:01 +01:00
|
|
|
federation *fclient.FederationClient,
|
2020-06-15 16:57:59 +01:00
|
|
|
keyRing gomatrixserverlib.JSONVerifier,
|
2022-05-05 19:30:38 +01:00
|
|
|
rsAPI roomserverAPI.FederationRoomserverAPI,
|
2022-05-06 12:39:26 +01:00
|
|
|
fedAPI federationAPI.FederationInternalAPI,
|
2021-06-30 12:05:58 +01:00
|
|
|
servers federationAPI.ServersInRoomProvider,
|
2023-03-22 08:21:32 +00:00
|
|
|
enableMetrics bool,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
2023-03-22 08:21:32 +00:00
|
|
|
cfg := &dendriteConfig.FederationAPI
|
|
|
|
mscCfg := &dendriteConfig.MSCs
|
|
|
|
js, _ := natsInstance.Prepare(processContext, &cfg.Matrix.JetStream)
|
2022-03-29 13:14:35 +01:00
|
|
|
producer := &producers.SyncAPIProducer{
|
|
|
|
JetStream: js,
|
|
|
|
TopicReceiptEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputReceiptEvent),
|
|
|
|
TopicSendToDeviceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputSendToDeviceEvent),
|
|
|
|
TopicTypingEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputTypingEvent),
|
2022-04-06 12:11:19 +01:00
|
|
|
TopicPresenceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
2022-06-15 14:27:07 +01:00
|
|
|
TopicDeviceListUpdate: cfg.Matrix.JetStream.Prefixed(jetstream.InputDeviceListUpdate),
|
2022-09-07 10:45:12 +01:00
|
|
|
TopicSigningKeyUpdate: cfg.Matrix.JetStream.Prefixed(jetstream.InputSigningKeyUpdate),
|
2022-10-26 12:59:19 +01:00
|
|
|
Config: cfg,
|
2022-03-29 13:14:35 +01:00
|
|
|
UserAPI: userAPI,
|
|
|
|
}
|
|
|
|
|
2022-05-06 12:39:26 +01:00
|
|
|
// the federationapi component is a bit unique in that it attaches public routes AND serves
|
|
|
|
// internal APIs (because it used to be 2 components: the 2nd being fedsender). As a result,
|
|
|
|
// the constructor shape is a bit wonky in that it is not valid to AddPublicRoutes without a
|
|
|
|
// concrete impl of FederationInternalAPI as the public routes and the internal API _should_
|
|
|
|
// be the same thing now.
|
|
|
|
f, ok := fedAPI.(*internal.FederationInternalAPI)
|
|
|
|
if !ok {
|
|
|
|
panic("federationapi.AddPublicRoutes called with a FederationInternalAPI impl which was not " +
|
|
|
|
"FederationInternalAPI. This is a programming error.")
|
|
|
|
}
|
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
routing.Setup(
|
2023-03-22 08:21:32 +00:00
|
|
|
routers,
|
|
|
|
dendriteConfig,
|
2022-05-06 12:39:26 +01:00
|
|
|
rsAPI, f, keyRing,
|
2023-02-20 13:58:03 +00:00
|
|
|
federation, userAPI, mscCfg,
|
2023-03-22 08:21:32 +00:00
|
|
|
servers, producer, enableMetrics,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|
2021-11-24 10:45:23 +00:00
|
|
|
|
|
|
|
// NewInternalAPI returns a concerete implementation of the internal API. Callers
|
|
|
|
// can call functions directly on the returned API or via an HTTP interface using AddInternalRoutes.
|
|
|
|
func NewInternalAPI(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext *process.ProcessContext,
|
|
|
|
dendriteCfg *config.Dendrite,
|
|
|
|
cm sqlutil.Connections,
|
|
|
|
natsInstance *jetstream.NATSInstance,
|
2022-05-17 13:23:35 +01:00
|
|
|
federation api.FederationClient,
|
|
|
|
rsAPI roomserverAPI.FederationRoomserverAPI,
|
2021-11-24 10:45:23 +00:00
|
|
|
caches *caching.Caches,
|
2021-12-13 13:24:49 +00:00
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2021-11-24 10:45:23 +00:00
|
|
|
resetBlacklist bool,
|
|
|
|
) api.FederationInternalAPI {
|
2023-03-22 08:21:32 +00:00
|
|
|
cfg := &dendriteCfg.FederationAPI
|
2021-11-24 10:45:23 +00:00
|
|
|
|
2023-03-22 08:21:32 +00:00
|
|
|
federationDB, err := storage.NewDatabase(processContext.Context(), cm, &cfg.Database, caches, dendriteCfg.Global.IsLocalServerName)
|
2021-11-24 10:45:23 +00:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to connect to federation sender db")
|
|
|
|
}
|
|
|
|
|
|
|
|
if resetBlacklist {
|
|
|
|
_ = federationDB.RemoveAllServersFromBlacklist()
|
|
|
|
}
|
|
|
|
|
2023-01-23 17:55:12 +00:00
|
|
|
stats := statistics.NewStatistics(
|
|
|
|
federationDB,
|
|
|
|
cfg.FederationMaxRetries+1,
|
|
|
|
cfg.P2PFederationRetriesUntilAssumedOffline+1)
|
2021-11-24 10:45:23 +00:00
|
|
|
|
2023-03-22 08:21:32 +00:00
|
|
|
js, nats := natsInstance.Prepare(processContext, &cfg.Matrix.JetStream)
|
2021-11-24 10:45:23 +00:00
|
|
|
|
2023-03-22 08:21:32 +00:00
|
|
|
signingInfo := dendriteCfg.Global.SigningIdentities()
|
2022-11-11 16:41:37 +00:00
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
queues := queue.NewOutgoingQueues(
|
2023-03-22 08:21:32 +00:00
|
|
|
federationDB, processContext,
|
2021-11-24 10:45:23 +00:00
|
|
|
cfg.Matrix.DisableFederation,
|
2022-10-19 11:03:16 +01:00
|
|
|
cfg.Matrix.ServerName, federation, rsAPI, &stats,
|
2022-11-11 16:41:37 +00:00
|
|
|
signingInfo,
|
2021-11-24 10:45:23 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
rsConsumer := consumers.NewOutputRoomEventConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, js, nats, queues,
|
2021-11-24 10:45:23 +00:00
|
|
|
federationDB, rsAPI,
|
|
|
|
)
|
|
|
|
if err = rsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start room server consumer")
|
|
|
|
}
|
2022-03-29 13:14:35 +01:00
|
|
|
tsConsumer := consumers.NewOutputSendToDeviceConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, js, queues, federationDB,
|
2022-03-29 13:14:35 +01:00
|
|
|
)
|
|
|
|
if err = tsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start send-to-device consumer")
|
|
|
|
}
|
|
|
|
receiptConsumer := consumers.NewOutputReceiptConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, js, queues, federationDB,
|
2022-03-29 13:14:35 +01:00
|
|
|
)
|
|
|
|
if err = receiptConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start receipt consumer")
|
|
|
|
}
|
|
|
|
typingConsumer := consumers.NewOutputTypingConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, js, queues, federationDB,
|
2021-11-24 10:45:23 +00:00
|
|
|
)
|
2022-03-29 13:14:35 +01:00
|
|
|
if err = typingConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start typing consumer")
|
2021-11-24 10:45:23 +00:00
|
|
|
}
|
|
|
|
keyConsumer := consumers.NewKeyChangeConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, &dendriteCfg.KeyServer, js, queues, federationDB, rsAPI,
|
2021-11-24 10:45:23 +00:00
|
|
|
)
|
2022-03-29 13:14:35 +01:00
|
|
|
if err = keyConsumer.Start(); err != nil {
|
2021-11-24 10:45:23 +00:00
|
|
|
logrus.WithError(err).Panic("failed to start key server consumer")
|
|
|
|
}
|
|
|
|
|
2022-04-06 12:11:19 +01:00
|
|
|
presenceConsumer := consumers.NewOutputPresenceConsumer(
|
2023-03-22 08:21:32 +00:00
|
|
|
processContext, cfg, js, queues, federationDB, rsAPI,
|
2022-04-06 12:11:19 +01:00
|
|
|
)
|
|
|
|
if err = presenceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start presence consumer")
|
|
|
|
}
|
2022-08-09 10:15:58 +01:00
|
|
|
|
|
|
|
var cleanExpiredEDUs func()
|
|
|
|
cleanExpiredEDUs = func() {
|
|
|
|
logrus.Infof("Cleaning expired EDUs")
|
2023-03-22 08:21:32 +00:00
|
|
|
if err := federationDB.DeleteExpiredEDUs(processContext.Context()); err != nil {
|
2022-08-09 10:15:58 +01:00
|
|
|
logrus.WithError(err).Error("Failed to clean expired EDUs")
|
|
|
|
}
|
|
|
|
time.AfterFunc(time.Hour, cleanExpiredEDUs)
|
|
|
|
}
|
|
|
|
time.AfterFunc(time.Minute, cleanExpiredEDUs)
|
|
|
|
|
2022-10-19 11:03:16 +01:00
|
|
|
return internal.NewFederationInternalAPI(federationDB, cfg, rsAPI, federation, &stats, caches, queues, keyRing)
|
2021-11-24 10:45:23 +00:00
|
|
|
}
|