2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// LDAPAuthenticationBackendConfiguration represents the configuration related to LDAP server.
|
2019-04-24 21:52:08 +00:00
|
|
|
type LDAPAuthenticationBackendConfiguration struct {
|
2021-01-04 10:28:55 +00:00
|
|
|
Implementation string `mapstructure:"implementation"`
|
|
|
|
URL string `mapstructure:"url"`
|
|
|
|
BaseDN string `mapstructure:"base_dn"`
|
|
|
|
AdditionalUsersDN string `mapstructure:"additional_users_dn"`
|
|
|
|
UsersFilter string `mapstructure:"users_filter"`
|
|
|
|
AdditionalGroupsDN string `mapstructure:"additional_groups_dn"`
|
|
|
|
GroupsFilter string `mapstructure:"groups_filter"`
|
|
|
|
GroupNameAttribute string `mapstructure:"group_name_attribute"`
|
|
|
|
UsernameAttribute string `mapstructure:"username_attribute"`
|
|
|
|
MailAttribute string `mapstructure:"mail_attribute"`
|
|
|
|
DisplayNameAttribute string `mapstructure:"display_name_attribute"`
|
|
|
|
User string `mapstructure:"user"`
|
|
|
|
Password string `mapstructure:"password"`
|
|
|
|
StartTLS bool `mapstructure:"start_tls"`
|
|
|
|
TLS *TLSConfig `mapstructure:"tls"`
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// FileAuthenticationBackendConfiguration represents the configuration related to file-based backend.
|
2019-04-24 21:52:08 +00:00
|
|
|
type FileAuthenticationBackendConfiguration struct {
|
2020-04-11 03:54:18 +00:00
|
|
|
Path string `mapstructure:"path"`
|
|
|
|
Password *PasswordConfiguration `mapstructure:"password"`
|
2020-03-06 01:38:02 +00:00
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// PasswordConfiguration represents the configuration related to password hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
type PasswordConfiguration struct {
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations int `mapstructure:"iterations"`
|
|
|
|
KeyLength int `mapstructure:"key_length"`
|
|
|
|
SaltLength int `mapstructure:"salt_length"`
|
|
|
|
Algorithm string `mapstrucutre:"algorithm"`
|
|
|
|
Memory int `mapstructure:"memory"`
|
|
|
|
Parallelism int `mapstructure:"parallelism"`
|
|
|
|
}
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// AuthenticationBackendConfiguration represents the configuration related to the authentication backend.
|
|
|
|
type AuthenticationBackendConfiguration struct {
|
|
|
|
DisableResetPassword bool `mapstructure:"disable_reset_password"`
|
|
|
|
RefreshInterval string `mapstructure:"refresh_interval"`
|
2021-04-16 01:44:37 +00:00
|
|
|
LDAP *LDAPAuthenticationBackendConfiguration `mapstructure:"ldap"`
|
2020-05-04 19:39:25 +00:00
|
|
|
File *FileAuthenticationBackendConfiguration `mapstructure:"file"`
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultPasswordConfiguration represents the default configuration related to Argon2id hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultPasswordConfiguration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 1,
|
|
|
|
KeyLength: 32,
|
|
|
|
SaltLength: 16,
|
2020-05-06 00:52:06 +00:00
|
|
|
Algorithm: argon2id,
|
2021-03-03 09:19:28 +00:00
|
|
|
Memory: 64,
|
2020-03-06 01:38:02 +00:00
|
|
|
Parallelism: 8,
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultCIPasswordConfiguration represents the default configuration related to Argon2id hashing for CI.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultCIPasswordConfiguration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 1,
|
|
|
|
KeyLength: 32,
|
|
|
|
SaltLength: 16,
|
2020-05-06 00:52:06 +00:00
|
|
|
Algorithm: argon2id,
|
2021-03-03 09:19:28 +00:00
|
|
|
Memory: 64,
|
2020-03-06 01:38:02 +00:00
|
|
|
Parallelism: 8,
|
|
|
|
}
|
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// DefaultPasswordSHA512Configuration represents the default configuration related to SHA512 hashing.
|
2020-04-11 03:54:18 +00:00
|
|
|
var DefaultPasswordSHA512Configuration = PasswordConfiguration{
|
2020-03-06 01:38:02 +00:00
|
|
|
Iterations: 50000,
|
|
|
|
SaltLength: 16,
|
|
|
|
Algorithm: "sha512",
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// DefaultLDAPAuthenticationBackendConfiguration represents the default LDAP config.
|
|
|
|
var DefaultLDAPAuthenticationBackendConfiguration = LDAPAuthenticationBackendConfiguration{
|
2020-11-27 09:59:22 +00:00
|
|
|
Implementation: LDAPImplementationCustom,
|
|
|
|
UsernameAttribute: "uid",
|
2020-06-19 10:50:21 +00:00
|
|
|
MailAttribute: "mail",
|
|
|
|
DisplayNameAttribute: "displayname",
|
|
|
|
GroupNameAttribute: "cn",
|
2021-01-04 10:28:55 +00:00
|
|
|
TLS: &TLSConfig{
|
|
|
|
MinimumVersion: "TLS1.2",
|
|
|
|
},
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|
2020-11-27 09:59:22 +00:00
|
|
|
|
|
|
|
// DefaultLDAPAuthenticationBackendImplementationActiveDirectoryConfiguration represents the default LDAP config for the MSAD Implementation.
|
|
|
|
var DefaultLDAPAuthenticationBackendImplementationActiveDirectoryConfiguration = LDAPAuthenticationBackendConfiguration{
|
2021-07-14 10:30:25 +00:00
|
|
|
UsersFilter: "(&(|({username_attribute}={input})({mail_attribute}={input}))(sAMAccountType=805306368)(!(userAccountControl:1.2.840.113556.1.4.803:=2))(!(pwdLastSet=0)))",
|
2020-11-27 09:59:22 +00:00
|
|
|
UsernameAttribute: "sAMAccountName",
|
|
|
|
MailAttribute: "mail",
|
|
|
|
DisplayNameAttribute: "displayName",
|
|
|
|
GroupsFilter: "(&(member={dn})(objectClass=group))",
|
|
|
|
GroupNameAttribute: "cn",
|
|
|
|
}
|