2022-03-30 15:01:22 +01:00
|
|
|
// Copyright 2022 The Matrix.org Foundation C.I.C.
|
2021-05-06 12:00:42 +01:00
|
|
|
//
|
|
|
|
// 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/ed25519"
|
|
|
|
"crypto/tls"
|
|
|
|
"encoding/hex"
|
|
|
|
"flag"
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
"net/http"
|
|
|
|
"os"
|
2022-09-23 15:44:21 +01:00
|
|
|
"path/filepath"
|
2022-08-31 10:41:32 +01:00
|
|
|
"strings"
|
2021-05-06 12:00:42 +01:00
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/gorilla/mux"
|
|
|
|
"github.com/gorilla/websocket"
|
|
|
|
"github.com/matrix-org/dendrite/appservice"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/conn"
|
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/embed"
|
2023-01-31 22:51:08 +00:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/relay"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/rooms"
|
2022-03-28 16:25:26 +01:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-pinecone/users"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/cmd/dendrite-demo-yggdrasil/signing"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi"
|
2022-11-18 00:29:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/api"
|
2023-01-23 17:55:12 +00:00
|
|
|
"github.com/matrix-org/dendrite/federationapi/producers"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/internal"
|
|
|
|
"github.com/matrix-org/dendrite/internal/httputil"
|
|
|
|
"github.com/matrix-org/dendrite/keyserver"
|
2023-01-23 17:55:12 +00:00
|
|
|
"github.com/matrix-org/dendrite/relayapi"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/roomserver"
|
|
|
|
"github.com/matrix-org/dendrite/setup"
|
2021-11-24 10:45:23 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/base"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
2023-01-23 17:55:12 +00:00
|
|
|
"github.com/matrix-org/dendrite/setup/jetstream"
|
2022-08-31 10:41:32 +01:00
|
|
|
"github.com/matrix-org/dendrite/test"
|
2021-05-06 12:00:42 +01:00
|
|
|
"github.com/matrix-org/dendrite/userapi"
|
|
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
|
|
|
2022-04-08 13:55:46 +01:00
|
|
|
pineconeConnections "github.com/matrix-org/pinecone/connections"
|
2021-05-06 12:00:42 +01:00
|
|
|
pineconeMulticast "github.com/matrix-org/pinecone/multicast"
|
|
|
|
pineconeRouter "github.com/matrix-org/pinecone/router"
|
2022-11-18 00:29:23 +00:00
|
|
|
pineconeEvents "github.com/matrix-org/pinecone/router/events"
|
2021-05-06 12:00:42 +01:00
|
|
|
pineconeSessions "github.com/matrix-org/pinecone/sessions"
|
|
|
|
|
|
|
|
"github.com/sirupsen/logrus"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2023-01-30 01:13:39 +00:00
|
|
|
instanceName = flag.String("name", "dendrite-p2p-pinecone", "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", "", "the static Pinecone peers to connect to, comma separated-list")
|
|
|
|
instanceListen = flag.String("listen", ":0", "the port Pinecone peers can connect to")
|
|
|
|
instanceDir = flag.String("dir", ".", "the directory to store the databases in (if --config not specified)")
|
|
|
|
instanceRelayingEnabled = flag.Bool("relay", false, "whether to enable store & forward relaying for other nodes")
|
2021-05-06 12:00:42 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
// nolint:gocyclo
|
|
|
|
func main() {
|
|
|
|
flag.Parse()
|
|
|
|
internal.SetupPprof()
|
|
|
|
|
|
|
|
var pk ed25519.PublicKey
|
|
|
|
var sk ed25519.PrivateKey
|
|
|
|
|
2022-08-31 10:41:32 +01:00
|
|
|
// iterate through the cli args and check if the config flag was set
|
|
|
|
configFlagSet := false
|
|
|
|
for _, arg := range os.Args {
|
|
|
|
if arg == "--config" || arg == "-config" {
|
|
|
|
configFlagSet = true
|
|
|
|
break
|
2021-05-06 12:00:42 +01:00
|
|
|
}
|
2022-08-31 10:41:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
cfg := &config.Dendrite{}
|
|
|
|
|
|
|
|
// use custom config if config flag is set
|
|
|
|
if configFlagSet {
|
|
|
|
cfg = setup.ParseFlags(true)
|
|
|
|
sk = cfg.Global.PrivateKey
|
2022-10-03 11:38:31 +01:00
|
|
|
pk = sk.Public().(ed25519.PublicKey)
|
2022-08-31 10:41:32 +01:00
|
|
|
} else {
|
2022-09-23 15:44:21 +01:00
|
|
|
keyfile := filepath.Join(*instanceDir, *instanceName) + ".pem"
|
2022-08-31 10:41:32 +01:00
|
|
|
if _, err := os.Stat(keyfile); os.IsNotExist(err) {
|
|
|
|
oldkeyfile := *instanceName + ".key"
|
|
|
|
if _, err = os.Stat(oldkeyfile); os.IsNotExist(err) {
|
|
|
|
if err = test.NewMatrixKey(keyfile); err != nil {
|
|
|
|
panic("failed to generate a new PEM key: " + err.Error())
|
|
|
|
}
|
|
|
|
if _, sk, err = config.LoadMatrixKey(keyfile, os.ReadFile); err != nil {
|
|
|
|
panic("failed to load PEM key: " + err.Error())
|
|
|
|
}
|
2022-09-12 10:19:02 +01:00
|
|
|
if len(sk) != ed25519.PrivateKeySize {
|
|
|
|
panic("the private key is not long enough")
|
|
|
|
}
|
2022-08-31 10:41:32 +01:00
|
|
|
} else {
|
|
|
|
if sk, err = os.ReadFile(oldkeyfile); err != nil {
|
|
|
|
panic("failed to read the old private key: " + err.Error())
|
|
|
|
}
|
|
|
|
if len(sk) != ed25519.PrivateKeySize {
|
|
|
|
panic("the private key is not long enough")
|
|
|
|
}
|
|
|
|
if err := test.SaveMatrixKey(keyfile, sk); err != nil {
|
|
|
|
panic("failed to convert the private key to PEM format: " + err.Error())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
var err error
|
|
|
|
if _, sk, err = config.LoadMatrixKey(keyfile, os.ReadFile); err != nil {
|
|
|
|
panic("failed to load PEM key: " + err.Error())
|
|
|
|
}
|
2022-09-12 10:19:02 +01:00
|
|
|
if len(sk) != ed25519.PrivateKeySize {
|
|
|
|
panic("the private key is not long enough")
|
|
|
|
}
|
2021-05-06 12:00:42 +01:00
|
|
|
}
|
2022-09-12 10:19:02 +01:00
|
|
|
|
|
|
|
pk = sk.Public().(ed25519.PublicKey)
|
|
|
|
|
2022-09-01 14:15:41 +01:00
|
|
|
cfg.Defaults(config.DefaultOpts{
|
|
|
|
Generate: true,
|
|
|
|
Monolithic: true,
|
|
|
|
})
|
2022-08-31 10:41:32 +01:00
|
|
|
cfg.Global.PrivateKey = sk
|
2022-09-23 15:44:21 +01:00
|
|
|
cfg.Global.JetStream.StoragePath = config.Path(fmt.Sprintf("%s/", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.UserAPI.AccountDatabase.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-account.db", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.MediaAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-mediaapi.db", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.SyncAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-syncapi.db", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.RoomServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-roomserver.db", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.KeyServer.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-keyserver.db", filepath.Join(*instanceDir, *instanceName)))
|
|
|
|
cfg.FederationAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-federationapi.db", filepath.Join(*instanceDir, *instanceName)))
|
2023-01-23 17:55:12 +00:00
|
|
|
cfg.RelayAPI.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-relayapi.db", filepath.Join(*instanceDir, *instanceName)))
|
2022-08-31 10:41:32 +01:00
|
|
|
cfg.MSCs.MSCs = []string{"msc2836", "msc2946"}
|
2022-09-23 15:44:21 +01:00
|
|
|
cfg.MSCs.Database.ConnectionString = config.DataSource(fmt.Sprintf("file:%s-mscs.db", filepath.Join(*instanceDir, *instanceName)))
|
2022-08-31 10:41:32 +01:00
|
|
|
cfg.ClientAPI.RegistrationDisabled = false
|
|
|
|
cfg.ClientAPI.OpenRegistrationWithoutVerificationEnabled = true
|
2022-10-03 13:05:58 +01:00
|
|
|
cfg.MediaAPI.BasePath = config.Path(*instanceDir)
|
|
|
|
cfg.SyncAPI.Fulltext.Enabled = true
|
|
|
|
cfg.SyncAPI.Fulltext.IndexPath = config.Path(*instanceDir)
|
2022-08-31 10:41:32 +01:00
|
|
|
if err := cfg.Derive(); err != nil {
|
2021-05-06 12:00:42 +01:00
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-31 10:41:32 +01:00
|
|
|
cfg.Global.ServerName = gomatrixserverlib.ServerName(hex.EncodeToString(pk))
|
|
|
|
cfg.Global.KeyID = gomatrixserverlib.KeyID(signing.KeyID)
|
|
|
|
|
|
|
|
base := base.NewBaseDendrite(cfg, "Monolith")
|
2022-12-01 10:45:15 +00:00
|
|
|
base.ConfigureAdminEndpoints()
|
2022-08-31 10:41:32 +01:00
|
|
|
defer base.Close() // nolint: errcheck
|
|
|
|
|
2022-11-18 00:29:23 +00:00
|
|
|
pineconeEventChannel := make(chan pineconeEvents.Event)
|
2022-09-14 14:26:24 +01:00
|
|
|
pRouter := pineconeRouter.NewRouter(logrus.WithField("pinecone", "router"), sk)
|
2022-11-18 00:29:23 +00:00
|
|
|
pRouter.EnableHopLimiting()
|
|
|
|
pRouter.EnableWakeupBroadcasts()
|
|
|
|
pRouter.Subscribe(pineconeEventChannel)
|
|
|
|
|
2022-04-08 13:55:46 +01:00
|
|
|
pQUIC := pineconeSessions.NewSessions(logrus.WithField("pinecone", "sessions"), pRouter, []string{"matrix"})
|
|
|
|
pMulticast := pineconeMulticast.NewMulticast(logrus.WithField("pinecone", "multicast"), pRouter)
|
2022-07-08 14:54:08 +01:00
|
|
|
pManager := pineconeConnections.NewConnectionManager(pRouter, nil)
|
2022-04-08 13:55:46 +01:00
|
|
|
pMulticast.Start()
|
|
|
|
if instancePeer != nil && *instancePeer != "" {
|
2022-08-31 10:41:32 +01:00
|
|
|
for _, peer := range strings.Split(*instancePeer, ",") {
|
|
|
|
pManager.AddPeer(strings.Trim(peer, " \t\r\n"))
|
|
|
|
}
|
2022-04-08 13:55:46 +01:00
|
|
|
}
|
2021-05-06 12:00:42 +01:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
listener, err := net.Listen("tcp", *instanceListen)
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Listening on", listener.Addr())
|
|
|
|
|
|
|
|
for {
|
|
|
|
conn, err := listener.Accept()
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("listener.Accept failed")
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2021-11-25 11:18:01 +00:00
|
|
|
port, err := pRouter.Connect(
|
|
|
|
conn,
|
|
|
|
pineconeRouter.ConnectionPeerType(pineconeRouter.PeerTypeRemote),
|
|
|
|
)
|
2021-05-06 12:00:42 +01:00
|
|
|
if err != nil {
|
2021-11-25 09:46:26 +00:00
|
|
|
logrus.WithError(err).Error("pSwitch.Connect failed")
|
2021-05-06 12:00:42 +01:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
fmt.Println("Inbound connection", conn.RemoteAddr(), "is connected to port", port)
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
|
|
|
|
federation := conn.CreateFederationClient(base, pQUIC)
|
|
|
|
|
|
|
|
serverKeyAPI := &signing.YggdrasilKeys{}
|
|
|
|
keyRing := serverKeyAPI.KeyRing()
|
|
|
|
|
2021-11-24 10:45:23 +00:00
|
|
|
rsComponent := roomserver.NewInternalAPI(base)
|
2021-05-06 12:00:42 +01:00
|
|
|
rsAPI := rsComponent
|
2021-11-24 10:45:23 +00:00
|
|
|
fsAPI := federationapi.NewInternalAPI(
|
2021-12-13 13:24:49 +00:00
|
|
|
base, federation, rsAPI, base.Caches, keyRing, true,
|
2021-05-06 12:00:42 +01:00
|
|
|
)
|
|
|
|
|
2022-12-12 07:20:59 +00:00
|
|
|
keyAPI := keyserver.NewInternalAPI(base, &base.Cfg.KeyServer, fsAPI, rsComponent)
|
2022-05-03 16:35:06 +01:00
|
|
|
userAPI := userapi.NewInternalAPI(base, &cfg.UserAPI, nil, keyAPI, rsAPI, base.PushGatewayHTTPClient())
|
2021-05-06 12:00:42 +01:00
|
|
|
keyAPI.SetUserAPI(userAPI)
|
|
|
|
|
|
|
|
asAPI := appservice.NewInternalAPI(base, userAPI, rsAPI)
|
|
|
|
|
2021-12-13 13:24:49 +00:00
|
|
|
rsComponent.SetFederationAPI(fsAPI, keyRing)
|
2021-05-06 12:00:42 +01:00
|
|
|
|
2022-03-28 16:25:26 +01:00
|
|
|
userProvider := users.NewPineconeUserProvider(pRouter, pQUIC, userAPI, federation)
|
|
|
|
roomProvider := rooms.NewPineconeRoomProvider(pRouter, pQUIC, fsAPI, federation)
|
|
|
|
|
2023-01-23 17:55:12 +00:00
|
|
|
js, _ := base.NATS.Prepare(base.ProcessContext, &base.Cfg.Global.JetStream)
|
|
|
|
producer := &producers.SyncAPIProducer{
|
|
|
|
JetStream: js,
|
|
|
|
TopicReceiptEvent: base.Cfg.Global.JetStream.Prefixed(jetstream.OutputReceiptEvent),
|
|
|
|
TopicSendToDeviceEvent: base.Cfg.Global.JetStream.Prefixed(jetstream.OutputSendToDeviceEvent),
|
|
|
|
TopicTypingEvent: base.Cfg.Global.JetStream.Prefixed(jetstream.OutputTypingEvent),
|
|
|
|
TopicPresenceEvent: base.Cfg.Global.JetStream.Prefixed(jetstream.OutputPresenceEvent),
|
|
|
|
TopicDeviceListUpdate: base.Cfg.Global.JetStream.Prefixed(jetstream.InputDeviceListUpdate),
|
|
|
|
TopicSigningKeyUpdate: base.Cfg.Global.JetStream.Prefixed(jetstream.InputSigningKeyUpdate),
|
|
|
|
Config: &base.Cfg.FederationAPI,
|
|
|
|
UserAPI: userAPI,
|
|
|
|
}
|
2023-01-30 01:13:39 +00:00
|
|
|
relayAPI := relayapi.NewRelayInternalAPI(base, federation, rsAPI, keyRing, producer, *instanceRelayingEnabled)
|
|
|
|
logrus.Infof("Relaying enabled: %v", relayAPI.RelayingEnabled())
|
2023-01-23 17:55:12 +00:00
|
|
|
|
2021-05-06 12:00:42 +01:00
|
|
|
monolith := setup.Monolith{
|
|
|
|
Config: base.Cfg,
|
|
|
|
Client: conn.CreateClient(base, pQUIC),
|
|
|
|
FedClient: federation,
|
|
|
|
KeyRing: keyRing,
|
|
|
|
|
2022-03-28 16:25:26 +01:00
|
|
|
AppserviceAPI: asAPI,
|
|
|
|
FederationAPI: fsAPI,
|
|
|
|
RoomserverAPI: rsAPI,
|
|
|
|
UserAPI: userAPI,
|
|
|
|
KeyAPI: keyAPI,
|
2023-01-23 17:55:12 +00:00
|
|
|
RelayAPI: relayAPI,
|
2022-03-28 16:25:26 +01:00
|
|
|
ExtPublicRoomsProvider: roomProvider,
|
|
|
|
ExtUserDirectoryProvider: userProvider,
|
2021-05-06 12:00:42 +01:00
|
|
|
}
|
2022-05-03 17:17:02 +01:00
|
|
|
monolith.AddAllPublicRoutes(base)
|
2021-05-06 12:00:42 +01:00
|
|
|
|
2021-06-22 15:39:29 +01:00
|
|
|
wsUpgrader := websocket.Upgrader{
|
|
|
|
CheckOrigin: func(_ *http.Request) bool {
|
|
|
|
return true
|
|
|
|
},
|
|
|
|
}
|
2021-05-06 12:00:42 +01:00
|
|
|
httpRouter := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
|
|
|
httpRouter.PathPrefix(httputil.InternalPathPrefix).Handler(base.InternalAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicClientPathPrefix).Handler(base.PublicClientAPIMux)
|
|
|
|
httpRouter.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
2022-12-01 10:45:15 +00:00
|
|
|
httpRouter.PathPrefix(httputil.DendriteAdminPathPrefix).Handler(base.DendriteAdminMux)
|
|
|
|
httpRouter.PathPrefix(httputil.SynapseAdminPathPrefix).Handler(base.SynapseAdminMux)
|
2021-05-06 12:00:42 +01:00
|
|
|
httpRouter.HandleFunc("/ws", func(w http.ResponseWriter, r *http.Request) {
|
|
|
|
c, err := wsUpgrader.Upgrade(w, r, nil)
|
|
|
|
if err != nil {
|
|
|
|
logrus.WithError(err).Error("Failed to upgrade WebSocket connection")
|
|
|
|
return
|
|
|
|
}
|
|
|
|
conn := conn.WrapWebSocketConn(c)
|
2021-11-25 09:46:26 +00:00
|
|
|
if _, err = pRouter.Connect(
|
|
|
|
conn,
|
|
|
|
pineconeRouter.ConnectionZone("websocket"),
|
2021-11-25 11:18:01 +00:00
|
|
|
pineconeRouter.ConnectionPeerType(pineconeRouter.PeerTypeRemote),
|
2021-11-25 09:46:26 +00:00
|
|
|
); err != nil {
|
2021-05-06 12:00:42 +01:00
|
|
|
logrus.WithError(err).Error("Failed to connect WebSocket peer to Pinecone switch")
|
|
|
|
}
|
|
|
|
})
|
2022-03-30 15:01:22 +01:00
|
|
|
httpRouter.HandleFunc("/pinecone", pRouter.ManholeHandler)
|
2021-05-06 12:00:42 +01:00
|
|
|
embed.Embed(httpRouter, *instancePort, "Pinecone Demo")
|
|
|
|
|
|
|
|
pMux := mux.NewRouter().SkipClean(true).UseEncodedPath()
|
2022-03-28 16:25:26 +01:00
|
|
|
pMux.PathPrefix(users.PublicURL).HandlerFunc(userProvider.FederatedUserProfiles)
|
2021-05-06 12:00:42 +01:00
|
|
|
pMux.PathPrefix(httputil.PublicFederationPathPrefix).Handler(base.PublicFederationAPIMux)
|
|
|
|
pMux.PathPrefix(httputil.PublicMediaPathPrefix).Handler(base.PublicMediaAPIMux)
|
|
|
|
|
2022-04-04 15:16:02 +01:00
|
|
|
pHTTP := pQUIC.Protocol("matrix").HTTP()
|
2022-03-28 16:25:26 +01:00
|
|
|
pHTTP.Mux().Handle(users.PublicURL, pMux)
|
2021-05-06 12:00:42 +01:00
|
|
|
pHTTP.Mux().Handle(httputil.PublicFederationPathPrefix, pMux)
|
|
|
|
pHTTP.Mux().Handle(httputil.PublicMediaPathPrefix, pMux)
|
|
|
|
|
|
|
|
// Build both ends of a HTTP multiplex.
|
|
|
|
httpServer := &http.Server{
|
|
|
|
Addr: ":0",
|
|
|
|
TLSNextProto: map[string]func(*http.Server, *tls.Conn, http.Handler){},
|
|
|
|
ReadTimeout: 10 * time.Second,
|
|
|
|
WriteTimeout: 10 * time.Second,
|
|
|
|
IdleTimeout: 60 * time.Second,
|
|
|
|
BaseContext: func(_ net.Listener) context.Context {
|
|
|
|
return context.Background()
|
|
|
|
},
|
|
|
|
Handler: pMux,
|
|
|
|
}
|
|
|
|
|
|
|
|
go func() {
|
|
|
|
pubkey := pRouter.PublicKey()
|
|
|
|
logrus.Info("Listening on ", hex.EncodeToString(pubkey[:]))
|
2022-04-04 15:16:02 +01:00
|
|
|
logrus.Fatal(httpServer.Serve(pQUIC.Protocol("matrix")))
|
2021-05-06 12:00:42 +01:00
|
|
|
}()
|
|
|
|
go func() {
|
|
|
|
httpBindAddr := fmt.Sprintf(":%d", *instancePort)
|
|
|
|
logrus.Info("Listening on ", httpBindAddr)
|
|
|
|
logrus.Fatal(http.ListenAndServe(httpBindAddr, httpRouter))
|
|
|
|
}()
|
|
|
|
|
2023-01-31 22:51:08 +00:00
|
|
|
stopRelayServerSync := make(chan bool)
|
|
|
|
eLog := logrus.WithField("pinecone", "events")
|
|
|
|
relayRetriever := relay.NewRelayServerRetriever(
|
|
|
|
context.Background(),
|
|
|
|
gomatrixserverlib.ServerName(pRouter.PublicKey().String()),
|
|
|
|
monolith.FederationAPI,
|
|
|
|
monolith.RelayAPI,
|
|
|
|
stopRelayServerSync,
|
|
|
|
)
|
|
|
|
relayRetriever.InitializeRelayServers(eLog)
|
2022-11-18 00:29:23 +00:00
|
|
|
|
2023-01-31 22:51:08 +00:00
|
|
|
go func(ch <-chan pineconeEvents.Event) {
|
2022-11-18 00:29:23 +00:00
|
|
|
for event := range ch {
|
|
|
|
switch e := event.(type) {
|
|
|
|
case pineconeEvents.PeerAdded:
|
2023-01-31 22:51:08 +00:00
|
|
|
relayRetriever.StartSync()
|
2022-11-18 00:29:23 +00:00
|
|
|
case pineconeEvents.PeerRemoved:
|
2023-01-31 22:51:08 +00:00
|
|
|
if relayRetriever.IsRunning() && pRouter.TotalPeerCount() == 0 {
|
2023-01-23 17:55:12 +00:00
|
|
|
stopRelayServerSync <- true
|
|
|
|
}
|
2022-11-18 00:29:23 +00:00
|
|
|
case pineconeEvents.BroadcastReceived:
|
2023-01-23 17:55:12 +00:00
|
|
|
// eLog.Info("Broadcast received from: ", e.PeerID)
|
2022-11-18 00:29:23 +00:00
|
|
|
|
|
|
|
req := &api.PerformWakeupServersRequest{
|
|
|
|
ServerNames: []gomatrixserverlib.ServerName{gomatrixserverlib.ServerName(e.PeerID)},
|
|
|
|
}
|
|
|
|
res := &api.PerformWakeupServersResponse{}
|
2023-01-31 22:51:08 +00:00
|
|
|
if err := monolith.FederationAPI.PerformWakeupServers(base.Context(), req, res); err != nil {
|
2023-01-23 17:55:12 +00:00
|
|
|
eLog.WithError(err).Error("Failed to wakeup destination", e.PeerID)
|
2022-11-18 00:29:23 +00:00
|
|
|
}
|
|
|
|
default:
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}(pineconeEventChannel)
|
|
|
|
|
2021-05-06 12:00:42 +01:00
|
|
|
base.WaitForShutdown()
|
|
|
|
}
|