34 lines
829 B
Go
34 lines
829 B
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/clems4ever/authelia/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.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)
|
|
}
|
|
}
|