2020-08-10 08:18:04 -05:00
|
|
|
package config
|
|
|
|
|
|
|
|
type KeyServer struct {
|
|
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
|
2020-08-13 06:16:37 -05:00
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
2020-08-10 08:18:04 -05:00
|
|
|
|
|
|
|
Database DatabaseOptions `yaml:"database"`
|
|
|
|
}
|
|
|
|
|
2021-11-24 05:57:39 -06:00
|
|
|
func (c *KeyServer) Defaults(generate bool) {
|
2020-08-13 06:16:37 -05:00
|
|
|
c.InternalAPI.Listen = "http://localhost:7779"
|
|
|
|
c.InternalAPI.Connect = "http://localhost:7779"
|
2021-03-08 07:18:29 -06:00
|
|
|
c.Database.Defaults(10)
|
2021-11-24 05:57:39 -06:00
|
|
|
if generate {
|
|
|
|
c.Database.ConnectionString = "file:keyserver.db"
|
|
|
|
}
|
2020-08-10 08:18:04 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *KeyServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
2022-05-03 10:35:06 -05:00
|
|
|
if c.Matrix.DatabaseOptions.ConnectionString == "" {
|
|
|
|
checkNotEmpty(configErrs, "key_server.database.connection_string", string(c.Database.ConnectionString))
|
|
|
|
}
|
2022-05-13 02:33:55 -05:00
|
|
|
if isMonolith { // polylith required configs below
|
|
|
|
return
|
|
|
|
}
|
|
|
|
checkURL(configErrs, "key_server.internal_api.listen", string(c.InternalAPI.Listen))
|
|
|
|
checkURL(configErrs, "key_server.internal_api.connect", string(c.InternalAPI.Connect))
|
2020-08-10 08:18:04 -05:00
|
|
|
}
|