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 (
|
2020-06-08 15:51:07 +01:00
|
|
|
"github.com/gorilla/mux"
|
2020-06-10 12:17:54 +01:00
|
|
|
eduserverAPI "github.com/matrix-org/dendrite/eduserver/api"
|
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"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/inthttp"
|
|
|
|
"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 17:04:57 +01:00
|
|
|
keyserverAPI "github.com/matrix-org/dendrite/keyserver/api"
|
2018-08-20 10:45:17 +01:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2020-12-02 17:41:00 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/kafka"
|
2020-06-16 14:53:19 +01:00
|
|
|
userapi "github.com/matrix-org/dendrite/userapi/api"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/sirupsen/logrus"
|
2018-08-20 10:45:17 +01:00
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
// AddInternalRoutes registers HTTP handlers for the internal API. Invokes functions
|
|
|
|
// on the given input API.
|
|
|
|
func AddInternalRoutes(router *mux.Router, intAPI api.FederationInternalAPI) {
|
|
|
|
inthttp.AddRoutes(intAPI, router)
|
|
|
|
}
|
|
|
|
|
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(
|
2021-09-10 10:05:31 +01:00
|
|
|
fedRouter, keyRouter, wellKnownRouter *mux.Router,
|
2020-08-10 14:18:04 +01:00
|
|
|
cfg *config.FederationAPI,
|
2020-06-16 14:53:19 +01:00
|
|
|
userAPI userapi.UserInternalAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2020-06-15 16:57:59 +01:00
|
|
|
keyRing gomatrixserverlib.JSONVerifier,
|
2020-05-01 10:48:17 +01:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2021-11-24 10:45:23 +00:00
|
|
|
federationAPI federationAPI.FederationInternalAPI,
|
2020-06-10 12:17:54 +01:00
|
|
|
eduAPI eduserverAPI.EDUServerInputAPI,
|
2020-07-22 17:04:57 +01:00
|
|
|
keyAPI keyserverAPI.KeyInternalAPI,
|
2021-01-22 16:08:47 +00:00
|
|
|
mscCfg *config.MSCs,
|
2021-06-30 12:05:58 +01:00
|
|
|
servers federationAPI.ServersInRoomProvider,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
|
|
|
routing.Setup(
|
2021-09-10 10:05:31 +01:00
|
|
|
fedRouter, keyRouter, wellKnownRouter, cfg, rsAPI,
|
2021-11-24 10:45:23 +00:00
|
|
|
eduAPI, federationAPI, keyRing,
|
2021-01-22 16:08:47 +00:00
|
|
|
federation, userAPI, keyAPI, mscCfg,
|
2021-06-30 12:05:58 +01:00
|
|
|
servers,
|
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(
|
|
|
|
base *base.BaseDendrite,
|
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
|
|
|
caches *caching.Caches,
|
|
|
|
resetBlacklist bool,
|
|
|
|
) api.FederationInternalAPI {
|
|
|
|
cfg := &base.Cfg.FederationAPI
|
|
|
|
|
|
|
|
federationDB, err := storage.NewDatabase(&cfg.Database, base.Caches)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to connect to federation sender db")
|
|
|
|
}
|
|
|
|
|
|
|
|
if resetBlacklist {
|
|
|
|
_ = federationDB.RemoveAllServersFromBlacklist()
|
|
|
|
}
|
|
|
|
|
|
|
|
stats := &statistics.Statistics{
|
|
|
|
DB: federationDB,
|
|
|
|
FailuresUntilBlacklist: cfg.FederationMaxRetries,
|
|
|
|
}
|
|
|
|
|
|
|
|
consumer, _ := kafka.SetupConsumerProducer(&cfg.Matrix.Kafka)
|
|
|
|
|
|
|
|
queues := queue.NewOutgoingQueues(
|
|
|
|
federationDB, base.ProcessContext,
|
|
|
|
cfg.Matrix.DisableFederation,
|
|
|
|
cfg.Matrix.ServerName, federation, rsAPI, stats,
|
|
|
|
&queue.SigningInfo{
|
|
|
|
KeyID: cfg.Matrix.KeyID,
|
|
|
|
PrivateKey: cfg.Matrix.PrivateKey,
|
|
|
|
ServerName: cfg.Matrix.ServerName,
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
rsConsumer := consumers.NewOutputRoomEventConsumer(
|
|
|
|
base.ProcessContext, cfg, consumer, queues,
|
|
|
|
federationDB, rsAPI,
|
|
|
|
)
|
|
|
|
if err = rsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start room server consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
tsConsumer := consumers.NewOutputEDUConsumer(
|
|
|
|
base.ProcessContext, cfg, consumer, queues, federationDB,
|
|
|
|
)
|
|
|
|
if err := tsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start typing server consumer")
|
|
|
|
}
|
|
|
|
keyConsumer := consumers.NewKeyChangeConsumer(
|
|
|
|
base.ProcessContext, &base.Cfg.KeyServer, consumer, queues, federationDB, rsAPI,
|
|
|
|
)
|
|
|
|
if err := keyConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start key server consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
return internal.NewFederationInternalAPI(federationDB, cfg, rsAPI, federation, stats, caches, queues)
|
|
|
|
}
|