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 clientapi
|
|
|
|
|
|
|
|
import (
|
2018-08-20 09:45:17 +00:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2018-01-02 10:26:56 +00:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/consumers"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/routing"
|
2020-03-30 14:02:20 +00:00
|
|
|
eduServerAPI "github.com/matrix-org/dendrite/eduserver/api"
|
2019-10-01 16:09:47 +00:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2020-05-21 13:40:13 +00:00
|
|
|
"github.com/matrix-org/dendrite/internal/basecomponent"
|
|
|
|
"github.com/matrix-org/dendrite/internal/transactions"
|
2018-07-17 14:36:04 +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"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetupClientAPIComponent sets up and registers HTTP handlers for the ClientAPI
|
|
|
|
// component.
|
|
|
|
func SetupClientAPIComponent(
|
|
|
|
base *basecomponent.BaseDendrite,
|
2020-02-13 17:27:33 +00:00
|
|
|
deviceDB devices.Database,
|
|
|
|
accountsDB accounts.Database,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2020-05-01 09:48:17 +00:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2020-03-30 14:02:20 +00:00
|
|
|
eduInputAPI eduServerAPI.EDUServerInputAPI,
|
2018-08-20 09:45:17 +00:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2018-05-18 09:49:40 +00:00
|
|
|
transactionsCache *transactions.Cache,
|
2020-04-29 10:34:31 +00:00
|
|
|
fsAPI federationSenderAPI.FederationSenderInternalAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
2020-05-01 09:48:17 +00:00
|
|
|
roomserverProducer := producers.NewRoomserverProducer(rsAPI)
|
2020-03-30 14:02:20 +00:00
|
|
|
eduProducer := producers.NewEDUServerProducer(eduInputAPI)
|
2018-01-02 10:26:56 +00:00
|
|
|
|
|
|
|
userUpdateProducer := &producers.UserUpdateProducer{
|
|
|
|
Producer: base.KafkaProducer,
|
|
|
|
Topic: string(base.Cfg.Kafka.Topics.UserUpdates),
|
|
|
|
}
|
|
|
|
|
|
|
|
syncProducer := &producers.SyncAPIProducer{
|
|
|
|
Producer: base.KafkaProducer,
|
|
|
|
Topic: string(base.Cfg.Kafka.Topics.OutputClientData),
|
|
|
|
}
|
|
|
|
|
|
|
|
consumer := consumers.NewOutputRoomEventConsumer(
|
2020-05-01 09:48:17 +00:00
|
|
|
base.Cfg, base.KafkaConsumer, accountsDB, rsAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
if err := consumer.Start(); err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to start room server consumer")
|
|
|
|
}
|
|
|
|
|
|
|
|
routing.Setup(
|
2020-05-22 10:43:17 +00:00
|
|
|
base.PublicAPIMux, base.Cfg, roomserverProducer, rsAPI, asAPI,
|
2018-07-17 14:36:04 +00:00
|
|
|
accountsDB, deviceDB, federation, *keyRing, userUpdateProducer,
|
2020-04-29 10:34:31 +00:00
|
|
|
syncProducer, eduProducer, transactionsCache, fsAPI,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|