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 federationapi
|
|
|
|
|
|
|
|
import (
|
2022-08-09 11:15:58 +02:00
|
|
|
"time"
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
"github.com/gorilla/mux"
|
2022-09-07 11:45:12 +02:00
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/api"
|
2021-06-30 13:05:58 +02:00
|
|
|
federationAPI "github.com/matrix-org/dendrite/federationapi/api"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/consumers"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/internal"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/inthttp"
|
2022-03-29 14:14:35 +02:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/producers"
|
2021-11-24 11:45:23 +01: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"
|
2020-07-22 18:04:57 +02:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-08-20 11:45:17 +02:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2021-11-24 11:45:23 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2022-01-05 18:44:49 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2020-06-16 15:53:19 +02:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2018-08-20 11:45:17 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
2022-09-07 11:45:12 +02:00
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
// AddInternalRoutes registers HTTP handlers for the internal API. Invokes functions
|
|
|
|
// on the given input API.
|
2022-12-05 13:53:36 +01:00
|
|
|
func AddInternalRoutes(router *mux.Router, intAPI api.FederationInternalAPI, enableMetrics bool) {
|
|
|
|
inthttp.AddRoutes(intAPI, router, enableMetrics)
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|
|
|
|
|
2020-06-08 16:51:07 +02:00
|
|
|
// AddPublicRoutes sets up and registers HTTP handlers on the base API muxes for the FederationAPI component.
|
|
|
|
func AddPublicRoutes(
|
2022-05-03 18:17:02 +02:00
|
|
|
base *base.BaseDendrite,
|
2020-06-16 15:53:19 +02:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2018-01-02 11:26:56 +01:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-06-15 17:57:59 +02:00
|
|
|
keyRing gomatrixserverlib.JSONVerifier,
|
2022-05-05 20:30:38 +02:00
|
|
|
rsAPI roomserverAPI.FederationRoomserverAPI,
|
2022-05-06 13:39:26 +02:00
|
|
|
fedAPI federationAPI.FederationInternalAPI,
|
|
|
|
keyAPI keyserverAPI.FederationKeyAPI,
|
2021-06-30 13:05:58 +02:00
|
|
|
servers federationAPI.ServersInRoomProvider,
|
2018-01-02 11:26:56 +01:00
|
|
|
) {
|
2022-05-03 18:17:02 +02:00
|
|
|
cfg := &base.Cfg.FederationAPI
|
|
|
|
mscCfg := &base.Cfg.MSCs
|
2022-05-09 15:15:24 +02:00
|
|
|
js, _ := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2022-03-29 14:14:35 +02: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 13:11:19 +02:00
|
|
|
TopicPresenceEvent: cfg.Matrix.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
2022-06-15 15:27:07 +02:00
|
|
|
TopicDeviceListUpdate: cfg.Matrix.JetStream.Prefixed(jetstream.InputDeviceListUpdate),
|
2022-09-07 11:45:12 +02:00
|
|
|
TopicSigningKeyUpdate: cfg.Matrix.JetStream.Prefixed(jetstream.InputSigningKeyUpdate),
|
2022-10-26 13:59:19 +02:00
|
|
|
Config: cfg,
|
2022-03-29 14:14:35 +02:00
|
|
|
UserAPI: userAPI,
|
|
|
|
}
|
|
|
|
|
2022-05-06 13:39:26 +02: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 11:26:56 +01:00
|
|
|
routing.Setup(
|
2023-01-20 12:45:56 +01:00
|
|
|
base,
|
2022-05-06 13:39:26 +02:00
|
|
|
rsAPI, f, keyRing,
|
2021-01-22 17:08:47 +01:00
|
|
|
federation, userAPI, keyAPI, mscCfg,
|
2022-03-29 14:14:35 +02:00
|
|
|
servers, producer,
|
2018-01-02 11:26:56 +01:00
|
|
|
)
|
|
|
|
}
|
2021-11-24 11:45:23 +01: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(
|
|
|
|
base *base.BaseDendrite,
|
2022-05-17 14:23:35 +02:00
|
|
|
federation api.FederationClient,
|
|
|
|
rsAPI roomserverAPI.FederationRoomserverAPI,
|
2021-11-24 11:45:23 +01:00
|
|
|
caches *caching.Caches,
|
2021-12-13 14:24:49 +01:00
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2021-11-24 11:45:23 +01:00
|
|
|
resetBlacklist bool,
|
|
|
|
) api.FederationInternalAPI {
|
|
|
|
cfg := &base.Cfg.FederationAPI
|
|
|
|
|
2022-10-26 13:59:19 +02:00
|
|
|
federationDB, err := storage.NewDatabase(base, &cfg.Database, base.Caches, base.Cfg.Global.IsLocalServerName)
|
2021-11-24 11:45:23 +01:00
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to connect to federation sender db")
|
|
|
|
}
|
|
|
|
|
|
|
|
if resetBlacklist {
|
|
|
|
_ = federationDB.RemoveAllServersFromBlacklist()
|
|
|
|
}
|
|
|
|
|
2023-01-23 18:55:12 +01:00
|
|
|
stats := statistics.NewStatistics(
|
|
|
|
federationDB,
|
|
|
|
cfg.FederationMaxRetries+1,
|
|
|
|
cfg.P2PFederationRetriesUntilAssumedOffline+1)
|
2021-11-24 11:45:23 +01:00
|
|
|
|
2022-11-11 10:35:17 +01:00
|
|
|
js, nats := base.NATS.Prepare(base.ProcessContext, &cfg.Matrix.JetStream)
|
2021-11-24 11:45:23 +01:00
|
|
|
|
2022-11-15 16:05:23 +01:00
|
|
|
signingInfo := base.Cfg.Global.SigningIdentities()
|
2022-11-11 17:41:37 +01:00
|
|
|
|
2021-11-24 11:45:23 +01:00
|
|
|
queues := queue.NewOutgoingQueues(
|
|
|
|
federationDB, base.ProcessContext,
|
|
|
|
cfg.Matrix.DisableFederation,
|
2022-10-19 12:03:16 +02:00
|
|
|
cfg.Matrix.ServerName, federation, rsAPI, &stats,
|
2022-11-11 17:41:37 +01:00
|
|
|
signingInfo,
|
2021-11-24 11:45:23 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
rsConsumer := consumers.NewOutputRoomEventConsumer(
|
2022-11-11 10:35:17 +01:00
|
|
|
base.ProcessContext, cfg, js, nats, queues,
|
2021-11-24 11:45:23 +01:00
|
|
|
federationDB, rsAPI,
|
|
|
|
)
|
|
|
|
if err = rsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start room server consumer")
|
|
|
|
}
|
2022-03-29 14:14:35 +02:00
|
|
|
tsConsumer := consumers.NewOutputSendToDeviceConsumer(
|
|
|
|
base.ProcessContext, cfg, js, queues, federationDB,
|
|
|
|
)
|
|
|
|
if err = tsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start send-to-device consumer")
|
|
|
|
}
|
|
|
|
receiptConsumer := consumers.NewOutputReceiptConsumer(
|
|
|
|
base.ProcessContext, cfg, js, queues, federationDB,
|
|
|
|
)
|
|
|
|
if err = receiptConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start receipt consumer")
|
|
|
|
}
|
|
|
|
typingConsumer := consumers.NewOutputTypingConsumer(
|
2022-01-05 18:44:49 +01:00
|
|
|
base.ProcessContext, cfg, js, queues, federationDB,
|
2021-11-24 11:45:23 +01:00
|
|
|
)
|
2022-03-29 14:14:35 +02:00
|
|
|
if err = typingConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start typing consumer")
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|
|
|
|
keyConsumer := consumers.NewKeyChangeConsumer(
|
2022-02-04 14:08:13 +01:00
|
|
|
base.ProcessContext, &base.Cfg.KeyServer, js, queues, federationDB, rsAPI,
|
2021-11-24 11:45:23 +01:00
|
|
|
)
|
2022-03-29 14:14:35 +02:00
|
|
|
if err = keyConsumer.Start(); err != nil {
|
2021-11-24 11:45:23 +01:00
|
|
|
logrus.WithError(err).Panic("failed to start key server consumer")
|
|
|
|
}
|
|
|
|
|
2022-04-06 13:11:19 +02:00
|
|
|
presenceConsumer := consumers.NewOutputPresenceConsumer(
|
2022-11-04 13:23:00 +01:00
|
|
|
base.ProcessContext, cfg, js, queues, federationDB, rsAPI,
|
2022-04-06 13:11:19 +02:00
|
|
|
)
|
|
|
|
if err = presenceConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start presence consumer")
|
|
|
|
}
|
2022-08-09 11:15:58 +02:00
|
|
|
|
|
|
|
var cleanExpiredEDUs func()
|
|
|
|
cleanExpiredEDUs = func() {
|
|
|
|
logrus.Infof("Cleaning expired EDUs")
|
|
|
|
if err := federationDB.DeleteExpiredEDUs(base.Context()); err != nil {
|
|
|
|
logrus.WithError(err).Error("Failed to clean expired EDUs")
|
|
|
|
}
|
|
|
|
time.AfterFunc(time.Hour, cleanExpiredEDUs)
|
|
|
|
}
|
|
|
|
time.AfterFunc(time.Minute, cleanExpiredEDUs)
|
|
|
|
|
2022-10-19 12:03:16 +02:00
|
|
|
return internal.NewFederationInternalAPI(federationDB, cfg, rsAPI, federation, &stats, caches, queues, keyRing)
|
2021-11-24 11:45:23 +01:00
|
|
|
}
|