mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-10 06:53:00 +00:00
51d229b025
This makes the following changes: * The various `Defaults` functions are now responsible for setting sane defaults if `generate` is specified, rather than hiding them in `generate-config` * Some configuration options have been marked as `omitempty` so that they don't appear in generated configs unnecessarily (monolith-specific vs. polylith-specific options) * A new option `-polylith` has been added to `generate-config` to create a config that makes sense for polylith deployments (i.e. including the internal/external API listeners and per-component database sections) * A new option `-normalise` has been added to `generate-config` to take an existing file and add any missing options and/or defaults
45 lines
1.2 KiB
Go
45 lines
1.2 KiB
Go
package config
|
|
|
|
type MSCs struct {
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
// The MSCs to enable. Supported MSCs include:
|
|
// 'msc2444': Peeking over federation - https://github.com/matrix-org/matrix-doc/pull/2444
|
|
// 'msc2753': Peeking via /sync - https://github.com/matrix-org/matrix-doc/pull/2753
|
|
// 'msc2836': Threading - https://github.com/matrix-org/matrix-doc/pull/2836
|
|
// 'msc2946': Spaces Summary - https://github.com/matrix-org/matrix-doc/pull/2946
|
|
MSCs []string `yaml:"mscs"`
|
|
|
|
Database DatabaseOptions `yaml:"database,omitempty"`
|
|
}
|
|
|
|
func (c *MSCs) Defaults(opts DefaultOpts) {
|
|
if !opts.Monolithic {
|
|
c.Database.Defaults(5)
|
|
}
|
|
if opts.Generate {
|
|
if !opts.Monolithic {
|
|
c.Database.ConnectionString = "file:mscs.db"
|
|
}
|
|
}
|
|
}
|
|
|
|
// Enabled returns true if the given msc is enabled. Should in the form 'msc12345'.
|
|
func (c *MSCs) Enabled(msc string) bool {
|
|
for _, m := range c.MSCs {
|
|
if m == msc {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (c *MSCs) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
|
if isMonolith { // polylith required configs below
|
|
return
|
|
}
|
|
if c.Matrix.DatabaseOptions.ConnectionString == "" {
|
|
checkNotEmpty(configErrs, "mscs.database.connection_string", string(c.Database.ConnectionString))
|
|
}
|
|
}
|