mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
e5e3350ce1
* Syncapi presence * Clientapi http presence handler * Why is this here? * Missing files * FederationAPI presence implementation * Add new presence stream * Pinecone update * Pinecone update * Add passing tests * Make linter happy * Add presence producer * Add presence config option * Set user to unavailable after x minutes * Only set currently_active if online Avoid unneeded presence updates when syncing * Tweaks * Query devices for last_active_ts Fixes & tweaks * Export SharedUsers/SharedUsers * Presence stream in MemoryStorage * Remove status_msg_nil * Fix sytest crashes * Make presence types const and use stringer for it * Change options to allow inbound/outbound presence * Fix option & typo * Update configs Co-authored-by: Neil Alexander <neilalexander@users.noreply.github.com>
107 lines
2.8 KiB
Go
107 lines
2.8 KiB
Go
package main
|
|
|
|
import (
|
|
"flag"
|
|
"fmt"
|
|
|
|
"github.com/matrix-org/dendrite/setup/config"
|
|
"github.com/matrix-org/gomatrixserverlib"
|
|
"golang.org/x/crypto/bcrypt"
|
|
"gopkg.in/yaml.v2"
|
|
)
|
|
|
|
func main() {
|
|
defaultsForCI := flag.Bool("ci", false, "sane defaults for CI testing")
|
|
serverName := flag.String("server", "", "The domain name of the server if not 'localhost'")
|
|
dbURI := flag.String("db", "", "The DB URI to use for all components if not SQLite files")
|
|
flag.Parse()
|
|
|
|
cfg := &config.Dendrite{
|
|
Version: config.Version,
|
|
}
|
|
cfg.Defaults(true)
|
|
if *serverName != "" {
|
|
cfg.Global.ServerName = gomatrixserverlib.ServerName(*serverName)
|
|
}
|
|
if *dbURI != "" {
|
|
cfg.AppServiceAPI.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.FederationAPI.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.KeyServer.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.MSCs.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.MediaAPI.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.RoomServer.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.SyncAPI.Database.ConnectionString = config.DataSource(*dbURI)
|
|
cfg.UserAPI.AccountDatabase.ConnectionString = config.DataSource(*dbURI)
|
|
}
|
|
cfg.Global.TrustedIDServers = []string{
|
|
"matrix.org",
|
|
"vector.im",
|
|
}
|
|
cfg.Logging = []config.LogrusHook{
|
|
{
|
|
Type: "file",
|
|
Level: "info",
|
|
Params: map[string]interface{}{
|
|
"path": "/var/log/dendrite",
|
|
},
|
|
},
|
|
}
|
|
cfg.FederationAPI.KeyPerspectives = config.KeyPerspectives{
|
|
{
|
|
ServerName: "matrix.org",
|
|
Keys: []config.KeyPerspectiveTrustKey{
|
|
{
|
|
KeyID: "ed25519:auto",
|
|
PublicKey: "Noi6WqcDj0QmPxCNQqgezwTlBKrfqehY1u2FyWP9uYw",
|
|
},
|
|
{
|
|
KeyID: "ed25519:a_RXGa",
|
|
PublicKey: "l8Hft5qXKn1vfHrg3p4+W8gELQVo8N13JkluMfmn2sQ",
|
|
},
|
|
},
|
|
},
|
|
}
|
|
cfg.MediaAPI.ThumbnailSizes = []config.ThumbnailSize{
|
|
{
|
|
Width: 32,
|
|
Height: 32,
|
|
ResizeMethod: "crop",
|
|
},
|
|
{
|
|
Width: 96,
|
|
Height: 96,
|
|
ResizeMethod: "crop",
|
|
},
|
|
{
|
|
Width: 640,
|
|
Height: 480,
|
|
ResizeMethod: "scale",
|
|
},
|
|
}
|
|
|
|
if *defaultsForCI {
|
|
cfg.AppServiceAPI.DisableTLSValidation = true
|
|
cfg.ClientAPI.RateLimiting.Enabled = false
|
|
cfg.FederationAPI.DisableTLSValidation = false
|
|
// don't hit matrix.org when running tests!!!
|
|
cfg.FederationAPI.KeyPerspectives = config.KeyPerspectives{}
|
|
cfg.MSCs.MSCs = []string{"msc2836", "msc2946", "msc2444", "msc2753"}
|
|
cfg.Logging[0].Level = "trace"
|
|
cfg.Logging[0].Type = "std"
|
|
cfg.UserAPI.BCryptCost = bcrypt.MinCost
|
|
cfg.Global.JetStream.InMemory = true
|
|
cfg.ClientAPI.RegistrationSharedSecret = "complement"
|
|
cfg.Global.Presence = config.PresenceOptions{
|
|
EnableInbound: true,
|
|
EnableOutbound: true,
|
|
}
|
|
}
|
|
|
|
j, err := yaml.Marshal(cfg)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
fmt.Println(string(j))
|
|
}
|