2017-05-19 17:06:41 +02: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 main
|
|
|
|
|
|
|
|
import (
|
2020-03-30 17:40:28 +02:00
|
|
|
"github.com/matrix-org/dendrite/clientapi/producers"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/common/basecomponent"
|
2017-06-09 19:07:34 +02:00
|
|
|
"github.com/matrix-org/dendrite/common/keydb"
|
2020-03-30 17:40:28 +02:00
|
|
|
"github.com/matrix-org/dendrite/eduserver"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver/cache"
|
2018-01-02 11:26:56 +01:00
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
2017-05-19 17:06:41 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2018-01-02 11:26:56 +01:00
|
|
|
cfg := basecomponent.ParseFlags()
|
|
|
|
base := basecomponent.NewBaseDendrite(cfg, "FederationAPI")
|
|
|
|
defer base.Close() // nolint: errcheck
|
2017-06-07 15:32:53 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
accountDB := base.CreateAccountsDB()
|
2018-06-26 12:32:43 +02:00
|
|
|
deviceDB := base.CreateDeviceDB()
|
2018-01-02 11:26:56 +01:00
|
|
|
keyDB := base.CreateKeyDB()
|
|
|
|
federation := base.CreateFederationClient()
|
2019-12-20 14:24:57 +01:00
|
|
|
federationSender := base.CreateHTTPFederationSenderAPIs()
|
2020-04-20 18:42:34 +02:00
|
|
|
keyRing := keydb.CreateKeyRing(federation.Client, keyDB, cfg.Matrix.KeyPerspectives)
|
2017-06-25 02:20:04 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
alias, input, query := base.CreateHTTPRoomserverAPIs()
|
2018-08-20 11:45:17 +02:00
|
|
|
asQuery := base.CreateHTTPAppServiceAPIs()
|
2020-03-30 17:40:28 +02:00
|
|
|
eduInputAPI := eduserver.SetupEDUServerComponent(base, cache.New())
|
|
|
|
eduProducer := producers.NewEDUServerProducer(eduInputAPI)
|
2017-05-25 17:08:28 +02:00
|
|
|
|
2018-01-02 11:26:56 +01:00
|
|
|
federationapi.SetupFederationAPIComponent(
|
2018-06-26 12:32:43 +02:00
|
|
|
base, accountDB, deviceDB, federation, &keyRing,
|
2020-03-30 17:40:28 +02:00
|
|
|
alias, input, query, asQuery, federationSender, eduProducer,
|
2017-06-19 16:21:04 +02:00
|
|
|
)
|
2017-06-07 15:32:53 +02:00
|
|
|
|
2019-10-02 11:29:27 +02:00
|
|
|
base.SetupAndServeHTTP(string(base.Cfg.Bind.FederationAPI), string(base.Cfg.Listen.FederationAPI))
|
|
|
|
|
2017-05-19 17:06:41 +02:00
|
|
|
}
|