mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
ea9b408b70
* Remove unused mongo docker-compose file. * Default redirection URL was not taken into account. * Fix possible storage options in config template. * Remove useless checks in u2f registration endpoints. * Add default redirection url in config of duo suite. * Fix log line in response handler of 2FA methods. * Fix integration tests. Co-authored-by: Amir Zarrinkafsh <nightah@me.com>
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
"net/url"
|
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
)
|
|
|
|
var defaultPort = 8080
|
|
var defaultLogsLevel = "info"
|
|
|
|
// Validate and adapt the configuration read from file.
|
|
func Validate(configuration *schema.Configuration, validator *schema.StructValidator) {
|
|
if configuration.Host == "" {
|
|
configuration.Host = "0.0.0.0"
|
|
}
|
|
|
|
if configuration.Port == 0 {
|
|
configuration.Port = defaultPort
|
|
}
|
|
|
|
if configuration.LogsLevel == "" {
|
|
configuration.LogsLevel = defaultLogsLevel
|
|
}
|
|
|
|
if configuration.DefaultRedirectionURL != "" {
|
|
_, err := url.ParseRequestURI(configuration.DefaultRedirectionURL)
|
|
if err != nil {
|
|
validator.Push(fmt.Errorf("Unable to parse default redirection url"))
|
|
}
|
|
}
|
|
|
|
if configuration.JWTSecret == "" {
|
|
validator.Push(fmt.Errorf("Provide a JWT secret using `jwt_secret` key"))
|
|
}
|
|
|
|
ValidateAuthenticationBackend(&configuration.AuthenticationBackend, validator)
|
|
ValidateSession(&configuration.Session, validator)
|
|
|
|
if configuration.TOTP == nil {
|
|
configuration.TOTP = &schema.TOTPConfiguration{}
|
|
ValidateTOTP(configuration.TOTP, validator)
|
|
}
|
|
|
|
if configuration.Notifier == nil {
|
|
validator.Push(fmt.Errorf("A notifier configuration must be provided"))
|
|
} else {
|
|
ValidateNotifier(configuration.Notifier, validator)
|
|
}
|
|
|
|
ValidateSQLStorage(configuration.Storage, validator)
|
|
}
|