mirror of
https://github.com/1f349/dendrite.git
synced 2025-04-01 17:55:04 +01:00
* Use HTTP API for roomserver input. * Use synchronous HTTP API for writing events to the roomserver * Remove unused config for kafka topic * Tweak comments
104 lines
3.4 KiB
Go
104 lines
3.4 KiB
Go
// 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 (
|
|
"flag"
|
|
"net/http"
|
|
"os"
|
|
|
|
"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"
|
|
"github.com/matrix-org/dendrite/common"
|
|
"github.com/matrix-org/dendrite/common/config"
|
|
"github.com/matrix-org/dendrite/common/keydb"
|
|
"github.com/matrix-org/dendrite/roomserver/api"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
log "github.com/Sirupsen/logrus"
|
|
)
|
|
|
|
var (
|
|
logDir = os.Getenv("LOG_DIR")
|
|
configPath = flag.String("config", "dendrite.yaml", "The path to the config file, For more information see the config file in this repository")
|
|
)
|
|
|
|
func main() {
|
|
common.SetupLogging(logDir)
|
|
|
|
flag.Parse()
|
|
|
|
cfg, err := config.Load(*configPath)
|
|
if err != nil {
|
|
log.Fatalf("Invalid config file: %s", err)
|
|
}
|
|
|
|
log.Info("config: ", cfg)
|
|
|
|
queryAPI := api.NewRoomserverQueryAPIHTTP(cfg.RoomServerURL(), nil)
|
|
|
|
roomserverProducer := producers.NewRoomserverProducer(cfg.RoomServerURL())
|
|
userUpdateProducer, err := producers.NewUserUpdateProducer(
|
|
cfg.Kafka.Addresses, string(cfg.Kafka.Topics.UserUpdates),
|
|
)
|
|
if err != nil {
|
|
log.Panicf("Failed to setup kafka producers(%q): %s", cfg.Kafka.Addresses, err)
|
|
}
|
|
|
|
federation := gomatrixserverlib.NewFederationClient(
|
|
cfg.Matrix.ServerName, cfg.Matrix.KeyID, cfg.Matrix.PrivateKey,
|
|
)
|
|
|
|
accountDB, err := accounts.NewDatabase(string(cfg.Database.Account), cfg.Matrix.ServerName)
|
|
if err != nil {
|
|
log.Panicf("Failed to setup account database(%q): %s", cfg.Database.Account, err.Error())
|
|
}
|
|
deviceDB, err := devices.NewDatabase(string(cfg.Database.Device), cfg.Matrix.ServerName)
|
|
if err != nil {
|
|
log.Panicf("Failed to setup device database(%q): %s", cfg.Database.Device, err.Error())
|
|
}
|
|
keyDB, err := keydb.NewDatabase(string(cfg.Database.ServerKey))
|
|
if err != nil {
|
|
log.Panicf("Failed to setup key database(%q): %s", cfg.Database.ServerKey, err.Error())
|
|
}
|
|
|
|
keyRing := gomatrixserverlib.KeyRing{
|
|
KeyFetchers: []gomatrixserverlib.KeyFetcher{
|
|
// TODO: Use perspective key fetchers for production.
|
|
&gomatrixserverlib.DirectKeyFetcher{federation.Client},
|
|
},
|
|
KeyDatabase: keyDB,
|
|
}
|
|
|
|
consumer, err := consumers.NewOutputRoomEvent(cfg, accountDB)
|
|
if err != nil {
|
|
log.Panicf("startup: failed to create room server consumer: %s", err)
|
|
}
|
|
if err = consumer.Start(); err != nil {
|
|
log.Panicf("startup: failed to start room server consumer")
|
|
}
|
|
|
|
log.Info("Starting client API server on ", cfg.Listen.ClientAPI)
|
|
routing.Setup(
|
|
http.DefaultServeMux, http.DefaultClient, *cfg, roomserverProducer,
|
|
queryAPI, accountDB, deviceDB, federation, keyRing, userUpdateProducer,
|
|
)
|
|
log.Fatal(http.ListenAndServe(string(cfg.Listen.ClientAPI), nil))
|
|
}
|