2019-04-24 21:52:08 +00:00
|
|
|
package validator
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
|
2019-12-24 02:14:52 +00:00
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
2019-04-24 21:52:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var defaultPort = 8080
|
|
|
|
var defaultLogsLevel = "info"
|
|
|
|
|
|
|
|
// Validate and adapt the configuration read from file.
|
|
|
|
func Validate(configuration *schema.Configuration, validator *schema.StructValidator) {
|
2019-12-06 20:45:59 +00:00
|
|
|
if configuration.Host == "" {
|
|
|
|
configuration.Host = "0.0.0.0"
|
|
|
|
}
|
|
|
|
|
2019-04-24 21:52:08 +00:00
|
|
|
if configuration.Port == 0 {
|
|
|
|
configuration.Port = defaultPort
|
|
|
|
}
|
|
|
|
|
|
|
|
if configuration.LogsLevel == "" {
|
|
|
|
configuration.LogsLevel = defaultLogsLevel
|
|
|
|
}
|
|
|
|
|
|
|
|
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)
|
|
|
|
}
|
2019-11-16 19:50:58 +00:00
|
|
|
|
2020-01-21 20:15:40 +00:00
|
|
|
if configuration.Notifier == nil {
|
|
|
|
validator.Push(fmt.Errorf("A notifier configuration must be provided"))
|
|
|
|
} else {
|
|
|
|
ValidateNotifier(configuration.Notifier, validator)
|
|
|
|
}
|
|
|
|
|
2019-11-16 19:50:58 +00:00
|
|
|
ValidateSQLStorage(configuration.Storage, validator)
|
2019-04-24 21:52:08 +00:00
|
|
|
}
|