2018-01-02 04:26:56 -06: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 04:45:17 -05:00
|
|
|
appserviceAPI "github.com/matrix-org/dendrite/appservice/api"
|
2018-01-02 04:26:56 -06:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/accounts"
|
2018-06-26 05:32:43 -05:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/auth/storage/devices"
|
2019-12-20 07:24:57 -06:00
|
|
|
federationSenderAPI "github.com/matrix-org/dendrite/federationsender/api"
|
2020-05-21 08:40:13 -05:00
|
|
|
"github.com/matrix-org/dendrite/internal/basecomponent"
|
2018-08-20 04:45:17 -05:00
|
|
|
roomserverAPI "github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
|
2018-01-02 04:26:56 -06: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 11:27:33 -06:00
|
|
|
accountsDB accounts.Database,
|
|
|
|
deviceDB devices.Database,
|
2018-01-02 04:26:56 -06:00
|
|
|
federation *gomatrixserverlib.FederationClient,
|
|
|
|
keyRing *gomatrixserverlib.KeyRing,
|
2020-05-01 04:48:17 -05:00
|
|
|
rsAPI roomserverAPI.RoomserverInternalAPI,
|
2018-08-20 04:45:17 -05:00
|
|
|
asAPI appserviceAPI.AppServiceQueryAPI,
|
2020-04-29 05:34:31 -05:00
|
|
|
federationSenderAPI federationSenderAPI.FederationSenderInternalAPI,
|
2020-03-30 10:40:28 -05:00
|
|
|
eduProducer *producers.EDUServerProducer,
|
2018-01-02 04:26:56 -06:00
|
|
|
) {
|
2020-05-01 04:48:17 -05:00
|
|
|
roomserverProducer := producers.NewRoomserverProducer(rsAPI)
|
2018-01-02 04:26:56 -06:00
|
|
|
|
|
|
|
routing.Setup(
|
2020-05-22 05:43:17 -05:00
|
|
|
base.PublicAPIMux, base.Cfg, rsAPI, asAPI, roomserverProducer,
|
2020-05-01 04:48:17 -05:00
|
|
|
eduProducer, federationSenderAPI, *keyRing,
|
2020-02-11 05:18:12 -06:00
|
|
|
federation, accountsDB, deviceDB,
|
2018-01-02 04:26:56 -06:00
|
|
|
)
|
|
|
|
}
|