2020-06-10 11:54:06 +02:00
|
|
|
// Copyright 2020 The Matrix.org Foundation C.I.C.
|
|
|
|
//
|
|
|
|
// 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 (
|
|
|
|
"context"
|
|
|
|
"crypto/tls"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
2020-06-11 11:16:46 +02:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/embed"
|
2020-06-10 17:29:02 +02:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/signing"
|
2020-06-10 11:54:06 +02:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/yggconn"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver"
|
|
|
|
"github.com/matrix-org/dendrite/eduserver/cache"
|
|
|
|
"github.com/matrix-org/dendrite/federationsender"
|
|
|
|
"github.com/matrix-org/dendrite/internal/config"
|
2020-06-12 15:55:57 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
2020-06-10 11:54:06 +02:00
|
|
|
"github.com/matrix-org/dendrite/internal/setup"
|
|
|
|
"github.com/matrix-org/dendrite/publicroomsapi/storage"
|
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
2020-06-16 15:10:55 +02:00
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
2020-06-10 11:54:06 +02:00
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
instanceName = flag.String("name", "dendrite-p2p-ygg", "the name of this P2P demo instance")
|
|
|
|
instancePort = flag.Int("port", 8008, "the port that the client API will listen on")
|
|
|
|
instancePeer = flag.String("peer", "", "an internet Yggdrasil peer to connect to")
|
|
|
|
)
|
|
|
|
|
|
|
|
type yggroundtripper struct {
|
|
|
|
inner *http.Transport
|
|
|
|
}
|
|
|
|
|
|
|
|
func (y *yggroundtripper) RoundTrip(req *http.Request) (*http.Response, error) {
|
|
|
|
req.URL.Scheme = "http"
|
|
|
|
return y.inner.RoundTrip(req)
|
|
|
|
}
|
|
|
|
|
|
|
|
func createFederationClient(
|
2020-06-12 15:55:57 +02:00
|
|
|
base *setup.BaseDendrite, n *yggconn.Node,
|
2020-06-10 11:54:06 +02:00
|
|
|
) *gomatrixserverlib.FederationClient {
|
|
|
|
tr := &http.Transport{}
|
|
|
|
tr.RegisterProtocol(
|
|
|
|
"matrix", &yggroundtripper{
|
|
|
|
inner: &http.Transport{
|
2020-06-11 10:50:54 +02:00
|
|
|
ResponseHeaderTimeout: 15 * time.Second,
|
|
|
|
IdleConnTimeout: 60 * time.Second,
|
2020-06-16 15:29:11 +02:00
|
|
|
DialContext: n.DialerContext,
|
2020-06-10 11:54:06 +02:00
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return gomatrixserverlib.NewFederationClientWithTransport(
|
|
|
|
base.Cfg.Matrix.ServerName, base.Cfg.Matrix.KeyID, base.Cfg.Matrix.PrivateKey, tr,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
2020-06-16 15:29:11 +02:00
|
|
|
func createClient(n *yggconn.Node) *gomatrixserverlib.Client {
|
|
|
|
tr := &http.Transport{}
|
|
|
|
tr.RegisterProtocol(
|
|
|
|
"matrix", &yggroundtripper{
|
|
|
|
inner: &http.Transport{
|
|
|
|
ResponseHeaderTimeout: 15 * time.Second,
|
|
|
|
IdleConnTimeout: 60 * time.Second,
|
|
|
|
DialContext: n.DialerContext,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
)
|
|
|
|
return gomatrixserverlib.NewClientWithTransport(tr)
|
|
|
|
}
|
|
|
|
|
2020-06-10 11:54:06 +02:00
|
|
|
// nolint:gocyclo
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
|
|
|
|
ygg, err := yggconn.Setup(*instanceName, *instancePeer)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
cfg := &config.Dendrite{}
|
|
|
|
cfg.SetDefaults()
|
2020-06-10 17:29:02 +02:00
|
|
|
cfg.Matrix.ServerName = gomatrixserverlib.ServerName(ygg.DerivedServerName())
|
2020-06-10 11:54:06 +02:00
|
|
|
cfg.Matrix.PrivateKey = ygg.SigningPrivateKey()
|
2020-06-10 17:29:02 +02:00
|
|
|
cfg.Matrix.KeyID = gomatrixserverlib.KeyID(signing.KeyID)
|
2020-06-10 11:54:06 +02:00
|
|
|
cfg.Kafka.UseNaffka = true
|
|
|
|
cfg.Kafka.Topics.OutputRoomEvent = "roomserverOutput"
|
|
|
|
cfg.Kafka.Topics.OutputClientData = "clientapiOutput"
|
|
|
|
cfg.Kafka.Topics.OutputTypingEvent = "typingServerOutput"
|
|
|
|
cfg.Database.Account = config.DataSource(fmt.Sprintf("file:%s-account.db", *instanceName))
|
|
|
|
cfg.Database.Device = config.DataSource(fmt.Sprintf("file:%s-device.db", *instanceName))
|
|
|
|
cfg.Database.MediaAPI = config.DataSource(fmt.Sprintf("file:%s-mediaapi.db", *instanceName))
|
|
|
|
cfg.Database.SyncAPI = config.DataSource(fmt.Sprintf("file:%s-syncapi.db", *instanceName))
|
|
|
|
cfg.Database.RoomServer = config.DataSource(fmt.Sprintf("file:%s-roomserver.db", *instanceName))
|
|
|
|
cfg.Database.ServerKey = config.DataSource(fmt.Sprintf("file:%s-serverkey.db", *instanceName))
|
|
|
|
cfg.Database.FederationSender = config.DataSource(fmt.Sprintf("file:%s-federationsender.db", *instanceName))
|
|
|
|
cfg.Database.AppService = config.DataSource(fmt.Sprintf("file:%s-appservice.db", *instanceName))
|
|
|
|
cfg.Database.PublicRoomsAPI = config.DataSource(fmt.Sprintf("file:%s-publicroomsa.db", *instanceName))
|
|
|
|
cfg.Database.Naffka = config.DataSource(fmt.Sprintf("file:%s-naffka.db", *instanceName))
|
|
|
|
if err = cfg.Derive(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
2020-06-12 15:55:57 +02:00
|
|
|
base := setup.NewBaseDendrite(cfg, "Monolith", false)
|
2020-06-10 11:54:06 +02:00
|
|
|
defer base.Close() // nolint: errcheck
|
|
|
|
|
|
|
|
accountDB := base.CreateAccountsDB()
|
|
|
|
deviceDB := base.CreateDeviceDB()
|
|
|
|
federation := createFederationClient(base, ygg)
|
|
|
|
|
2020-06-10 17:29:02 +02:00
|
|
|
serverKeyAPI := &signing.YggdrasilKeys{}
|
2020-06-10 11:54:06 +02:00
|
|
|
keyRing := serverKeyAPI.KeyRing()
|
|
|
|
|
|
|
|
rsComponent := roomserver.NewInternalAPI(
|
|
|
|
base, keyRing, federation,
|
|
|
|
)
|
|
|
|
rsAPI := rsComponent
|
|
|
|
|
|
|
|
eduInputAPI := eduserver.NewInternalAPI(
|
|
|
|
base, cache.New(), deviceDB,
|
|
|
|
)
|
|
|
|
|
|
|
|
asAPI := appservice.NewInternalAPI(base, accountDB, deviceDB, rsAPI)
|
|
|
|
|
|
|
|
fsAPI := federationsender.NewInternalAPI(
|
|
|
|
base, federation, rsAPI, keyRing,
|
|
|
|
)
|
|
|
|
|
|
|
|
rsComponent.SetFederationSenderAPI(fsAPI)
|
|
|
|
|
|
|
|
publicRoomsDB, err := storage.NewPublicRoomsServerDatabase(string(base.Cfg.Database.PublicRoomsAPI), base.Cfg.DbProperties(), cfg.Matrix.ServerName)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Panicf("failed to connect to public rooms db")
|
|
|
|
}
|
|
|
|
|
2020-06-11 11:16:46 +02:00
|
|
|
embed.Embed(*instancePort, "Yggdrasil Demo")
|
2020-06-16 15:10:55 +02:00
|
|
|
userAPI := userapi.NewInternalAPI(accountDB, deviceDB, cfg.Matrix.ServerName, nil)
|
2020-06-11 11:16:46 +02:00
|
|
|
|
2020-06-10 11:54:06 +02:00
|
|
|
monolith := setup.Monolith{
|
|
|
|
Config: base.Cfg,
|
|
|
|
AccountDB: accountDB,
|
|
|
|
DeviceDB: deviceDB,
|
2020-06-16 15:29:11 +02:00
|
|
|
Client: createClient(ygg),
|
2020-06-10 11:54:06 +02:00
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
|
|
|
KafkaConsumer: base.KafkaConsumer,
|
|
|
|
KafkaProducer: base.KafkaProducer,
|
|
|
|
|
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
EDUInternalAPI: eduInputAPI,
|
|
|
|
FederationSenderAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
2020-06-16 15:10:55 +02:00
|
|
|
UserAPI: userAPI,
|
2020-06-10 17:29:02 +02:00
|
|
|
//ServerKeyAPI: serverKeyAPI,
|
2020-06-10 11:54:06 +02:00
|
|
|
|
|
|
|
PublicRoomsDB: publicRoomsDB,
|
|
|
|
}
|
|
|
|
monolith.AddAllPublicRoutes(base.PublicAPIMux)
|
|
|
|
|
2020-06-12 15:55:57 +02:00
|
|
|
httputil.SetupHTTPAPI(
|
2020-06-15 17:57:59 +02:00
|
|
|
base.BaseMux,
|
2020-06-10 11:54:06 +02:00
|
|
|
base.PublicAPIMux,
|
|
|
|
base.InternalAPIMux,
|
|
|
|
cfg,
|
|
|
|
base.UseHTTPAPIs,
|
|
|
|
)
|
|
|
|
|
2020-06-15 17:57:59 +02:00
|
|
|
// Build both ends of a HTTP multiplex.
|
|
|
|
httpServer := &http.Server{
|
|
|
|
Addr: ":0",
|
|
|
|
TLSNextProto: map[string]func(*http.Server, *tls.Conn, http.Handler){},
|
|
|
|
ReadTimeout: 15 * time.Second,
|
|
|
|
WriteTimeout: 45 * time.Second,
|
|
|
|
IdleTimeout: 60 * time.Second,
|
|
|
|
BaseContext: func(_ net.Listener) context.Context {
|
|
|
|
return context.Background()
|
|
|
|
},
|
|
|
|
Handler: base.BaseMux,
|
|
|
|
}
|
|
|
|
|
2020-06-10 11:54:06 +02:00
|
|
|
go func() {
|
2020-06-10 17:29:02 +02:00
|
|
|
logrus.Info("Listening on ", ygg.DerivedServerName())
|
2020-06-10 11:54:06 +02:00
|
|
|
logrus.Fatal(httpServer.Serve(ygg))
|
|
|
|
}()
|
|
|
|
go func() {
|
2020-06-11 11:16:46 +02:00
|
|
|
httpBindAddr := fmt.Sprintf("localhost:%d", *instancePort)
|
2020-06-10 11:54:06 +02:00
|
|
|
logrus.Info("Listening on ", httpBindAddr)
|
2020-06-15 17:57:59 +02:00
|
|
|
logrus.Fatal(http.ListenAndServe(httpBindAddr, base.BaseMux))
|
2020-06-10 11:54:06 +02:00
|
|
|
}()
|
|
|
|
|
|
|
|
select {}
|
|
|
|
}
|