2019-04-24 21:52:08 +00:00
|
|
|
package schema
|
|
|
|
|
2021-08-05 04:30:00 +00:00
|
|
|
import "time"
|
|
|
|
|
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-08-05 04:30:00 +00:00
|
|
|
Implementation string `koanf:"implementation"`
|
|
|
|
URL string `koanf:"url"`
|
|
|
|
Timeout time.Duration `koanf:"timeout"`
|
|
|
|
StartTLS bool `koanf:"start_tls"`
|
|
|
|
TLS *TLSConfig `koanf:"tls"`
|
|
|
|
|
|
|
|
BaseDN string `koanf:"base_dn"`
|
|
|
|
|
|
|
|
AdditionalUsersDN string `koanf:"additional_users_dn"`
|
|
|
|
UsersFilter string `koanf:"users_filter"`
|
|
|
|
|
|
|
|
AdditionalGroupsDN string `koanf:"additional_groups_dn"`
|
|
|
|
GroupsFilter string `koanf:"groups_filter"`
|
|
|
|
|
|
|
|
GroupNameAttribute string `koanf:"group_name_attribute"`
|
|
|
|
UsernameAttribute string `koanf:"username_attribute"`
|
|
|
|
MailAttribute string `koanf:"mail_attribute"`
|
|
|
|
DisplayNameAttribute string `koanf:"display_name_attribute"`
|
|
|
|
|
|
|
|
User string `koanf:"user"`
|
|
|
|
Password string `koanf:"password"`
|
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 {
|
2021-08-03 09:55:21 +00:00
|
|
|
Path string `koanf:"path"`
|
|
|
|
Password *PasswordConfiguration `koanf:"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 {
|
2021-08-03 09:55:21 +00:00
|
|
|
Iterations int `koanf:"iterations"`
|
|
|
|
KeyLength int `koanf:"key_length"`
|
|
|
|
SaltLength int `koanf:"salt_length"`
|
2022-03-17 12:20:49 +00:00
|
|
|
Algorithm string `koanf:"algorithm"`
|
2021-08-03 09:55:21 +00:00
|
|
|
Memory int `koanf:"memory"`
|
|
|
|
Parallelism int `koanf:"parallelism"`
|
2020-03-06 01:38:02 +00:00
|
|
|
}
|
|
|
|
|
2020-05-04 19:39:25 +00:00
|
|
|
// AuthenticationBackendConfiguration represents the configuration related to the authentication backend.
|
|
|
|
type AuthenticationBackendConfiguration struct {
|
2021-08-03 09:55:21 +00:00
|
|
|
DisableResetPassword bool `koanf:"disable_reset_password"`
|
|
|
|
RefreshInterval string `koanf:"refresh_interval"`
|
|
|
|
LDAP *LDAPAuthenticationBackendConfiguration `koanf:"ldap"`
|
|
|
|
File *FileAuthenticationBackendConfiguration `koanf:"file"`
|
2020-05-04 19:39:25 +00:00
|
|
|
}
|
|
|
|
|
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",
|
2021-08-05 04:17:07 +00:00
|
|
|
DisplayNameAttribute: "displayName",
|
2020-06-19 10:50:21 +00:00
|
|
|
GroupNameAttribute: "cn",
|
2021-08-05 04:30:00 +00:00
|
|
|
Timeout: time.Second * 5,
|
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",
|
|
|
|
}
|