2020-08-10 14:18:04 +01:00
|
|
|
package config
|
|
|
|
|
2021-03-08 13:19:02 +00:00
|
|
|
import "golang.org/x/crypto/bcrypt"
|
|
|
|
|
2020-08-10 14:18:04 +01:00
|
|
|
type UserAPI struct {
|
|
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
|
2021-03-08 13:19:02 +00:00
|
|
|
// The cost when hashing passwords.
|
|
|
|
BCryptCost int `yaml:"bcrypt_cost"`
|
|
|
|
|
2021-04-07 13:26:20 +01:00
|
|
|
// The length of time an OpenID token is condidered valid in milliseconds
|
|
|
|
OpenIDTokenLifetimeMS int64 `yaml:"openid_token_lifetime_ms"`
|
|
|
|
|
2022-03-03 11:40:53 +00:00
|
|
|
// Disable TLS validation on HTTPS calls to push gatways. NOT RECOMMENDED!
|
|
|
|
PushGatewayDisableTLSValidation bool `yaml:"push_gateway_disable_tls_validation"`
|
|
|
|
|
2020-08-10 14:18:04 +01:00
|
|
|
// The Account database stores the login details and account information
|
|
|
|
// for local users. It is accessed by the UserAPI.
|
2022-09-01 14:15:41 +01:00
|
|
|
AccountDatabase DatabaseOptions `yaml:"account_database,omitempty"`
|
2022-10-26 10:04:53 +01:00
|
|
|
|
|
|
|
// Users who register on this homeserver will automatically
|
|
|
|
// be joined to the rooms listed under this option.
|
|
|
|
AutoJoinRooms []string `yaml:"auto_join_rooms"`
|
2023-10-31 15:39:45 +00:00
|
|
|
|
|
|
|
// The number of workers to start for the DeviceListUpdater. Defaults to 8.
|
|
|
|
// This only needs updating if the "InputDeviceListUpdate" stream keeps growing indefinitely.
|
|
|
|
WorkerCount int `yaml:"worker_count"`
|
2020-08-10 14:18:04 +01:00
|
|
|
}
|
|
|
|
|
2021-04-07 13:26:20 +01:00
|
|
|
const DefaultOpenIDTokenLifetimeMS = 3600000 // 60 minutes
|
|
|
|
|
2022-09-01 14:15:41 +01:00
|
|
|
func (c *UserAPI) Defaults(opts DefaultOpts) {
|
2022-05-13 08:33:55 +01:00
|
|
|
c.BCryptCost = bcrypt.DefaultCost
|
|
|
|
c.OpenIDTokenLifetimeMS = DefaultOpenIDTokenLifetimeMS
|
2023-10-31 15:39:45 +00:00
|
|
|
c.WorkerCount = 8
|
2022-09-01 14:15:41 +01:00
|
|
|
if opts.Generate {
|
2023-02-14 11:47:47 +00:00
|
|
|
if !opts.SingleDatabase {
|
2022-09-01 14:15:41 +01:00
|
|
|
c.AccountDatabase.ConnectionString = "file:userapi_accounts.db"
|
|
|
|
}
|
2021-11-24 11:57:39 +00:00
|
|
|
}
|
2020-08-10 14:18:04 +01:00
|
|
|
}
|
|
|
|
|
2023-02-14 11:47:47 +00:00
|
|
|
func (c *UserAPI) Verify(configErrs *ConfigErrors) {
|
2022-05-13 08:33:55 +01:00
|
|
|
checkPositive(configErrs, "user_api.openid_token_lifetime_ms", c.OpenIDTokenLifetimeMS)
|
2022-09-01 14:15:41 +01:00
|
|
|
if c.Matrix.DatabaseOptions.ConnectionString == "" {
|
|
|
|
checkNotEmpty(configErrs, "user_api.account_database.connection_string", string(c.AccountDatabase.ConnectionString))
|
|
|
|
}
|
2020-08-10 14:18:04 +01:00
|
|
|
}
|