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 federationsender
|
|
|
|
|
|
|
|
import (
|
2019-08-23 17:25:10 +00:00
|
|
|
"net/http"
|
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/common/basecomponent"
|
2019-08-23 17:25:10 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/api"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/consumers"
|
2019-08-23 17:25:10 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/query"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationsender/queue"
|
|
|
|
"github.com/matrix-org/dendrite/federationsender/storage"
|
2019-08-23 17:25:10 +00:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetupFederationSenderComponent sets up and registers HTTP handlers for the
|
|
|
|
// FederationSender component.
|
|
|
|
func SetupFederationSenderComponent(
|
|
|
|
base *basecomponent.BaseDendrite,
|
|
|
|
federation *gomatrixserverlib.FederationClient,
|
2019-08-23 17:25:10 +00:00
|
|
|
rsQueryAPI roomserverAPI.RoomserverQueryAPI,
|
|
|
|
) api.FederationSenderQueryAPI {
|
2018-01-02 10:26:56 +00:00
|
|
|
federationSenderDB, err := storage.NewDatabase(string(base.Cfg.Database.FederationSender))
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to connect to federation sender db")
|
|
|
|
}
|
|
|
|
|
|
|
|
queues := queue.NewOutgoingQueues(base.Cfg.Matrix.ServerName, federation)
|
|
|
|
|
2018-08-10 15:26:57 +00:00
|
|
|
rsConsumer := consumers.NewOutputRoomEventConsumer(
|
2018-01-02 10:26:56 +00:00
|
|
|
base.Cfg, base.KafkaConsumer, queues,
|
2019-08-23 17:25:10 +00:00
|
|
|
federationSenderDB, rsQueryAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
2018-08-10 15:26:57 +00:00
|
|
|
if err = rsConsumer.Start(); err != nil {
|
2018-01-02 10:26:56 +00:00
|
|
|
logrus.WithError(err).Panic("failed to start room server consumer")
|
|
|
|
}
|
2018-08-10 15:26:57 +00:00
|
|
|
|
|
|
|
tsConsumer := consumers.NewOutputTypingEventConsumer(
|
|
|
|
base.Cfg, base.KafkaConsumer, queues, federationSenderDB,
|
|
|
|
)
|
|
|
|
if err := tsConsumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panic("failed to start typing server consumer")
|
|
|
|
}
|
2019-08-23 17:25:10 +00:00
|
|
|
|
|
|
|
queryAPI := query.FederationSenderQueryAPI{
|
|
|
|
DB: federationSenderDB,
|
|
|
|
}
|
|
|
|
queryAPI.SetupHTTP(http.DefaultServeMux)
|
|
|
|
|
|
|
|
return &queryAPI
|
2018-01-02 10:26:56 +00:00
|
|
|
}
|