aboutsummaryrefslogtreecommitdiff
path: root/setup/config/config_keyserver.go
blob: 9e2d54cdc56aa8de43154082f1b5f0f4e3d9ddff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
package config

type KeyServer struct {
	Matrix *Global `yaml:"-"`

	InternalAPI InternalAPIOptions `yaml:"internal_api"`

	Database DatabaseOptions `yaml:"database"`
}

func (c *KeyServer) Defaults(generate bool) {
	c.InternalAPI.Listen = "http://localhost:7779"
	c.InternalAPI.Connect = "http://localhost:7779"
	c.Database.Defaults(10)
	if generate {
		c.Database.ConnectionString = "file:keyserver.db"
	}
}

func (c *KeyServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
	checkURL(configErrs, "key_server.internal_api.listen", string(c.InternalAPI.Listen))
	checkURL(configErrs, "key_server.internal_api.bind", string(c.InternalAPI.Connect))
	if c.Matrix.DatabaseOptions.ConnectionString == "" {
		checkNotEmpty(configErrs, "key_server.database.connection_string", string(c.Database.ConnectionString))
	}
}