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 (
|
2018-08-20 10:45:17 +01: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"
|
2018-06-26 11:32:43 +01:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
2019-12-20 13:24:57 +00:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2020-05-21 14:40:13 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal/basecomponent"
|
2018-08-20 10:45:17 +01:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
|
2018-01-02 10:26:56 +00:00
|
|
|
// TODO: Are we really wanting to pull in the producer from clientapi
|
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
|
|
|
"github.com/matrix-org/dendrite/federationapi/routing"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
)
|
|
|
|
|
|
|
|
// SetupFederationAPIComponent sets up and registers HTTP handlers for the
|
|
|
|
// FederationAPI component.
|
|
|
|
func SetupFederationAPIComponent(
|
|
|
|
base *basecomponent.BaseDendrite,
|
2020-02-13 17:27:33 +00:00
|
|
|
accountsDB accounts.Database,
|
|
|
|
deviceDB devices.Database,
|
2018-01-02 10:26:56 +00:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2020-05-01 10:48:17 +01:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2018-08-20 10:45:17 +01:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2020-04-29 11:34:31 +01:00
|
|
|
federationSenderAPI federationSenderAPI.FederationSenderInternalAPI,
|
2020-03-30 16:40:28 +01:00
|
|
|
eduProducer *producers.EDUServerProducer,
|
2018-01-02 10:26:56 +00:00
|
|
|
) {
|
2020-05-01 10:48:17 +01:00
|
|
|
roomserverProducer := producers.NewRoomserverProducer(rsAPI)
|
2018-01-02 10:26:56 +00:00
|
|
|
|
|
|
|
routing.Setup(
|
2020-05-22 11:43:17 +01:00
|
|
|
base.PublicAPIMux, base.Cfg, rsAPI, asAPI, roomserverProducer,
|
2020-05-01 10:48:17 +01:00
|
|
|
eduProducer, federationSenderAPI, *keyRing,
|
2020-02-11 11:18:12 +00:00
|
|
|
federation, accountsDB, deviceDB,
|
2018-01-02 10:26:56 +00:00
|
|
|
)
|
|
|
|
}
|