authelia/internal/configuration/reader.go
James Elliott 8aade7f40e
[MISC] Update durations to notation format and housekeeping (#824)
* added regulation validator
* made regulations find_time and ban_time values duration notation strings
* added DefaultRegulationConfiguration for the validator
* made session expiration and inactivity values duration notation strings
* TOTP period does not need to be converted because adjustment should be discouraged
* moved TOTP defaults to DefaultTOTPConfiguration and removed the consts
* arranged the root config validator in configuration file order
* adjusted tests for the changes
* moved duration notation docs to root of configuration
* added references to duration notation where applicable
* project wide gofmt and goimports:
* run gofmt
* run goimports -local github.com/authelia/authelia -w on all files
* Make jwt_secret error uniform and add tests
* now at 100% coverage for internal/configuration/validator/configuration.go
2020-04-05 22:37:21 +10:00

55 lines
1.3 KiB
Go

package configuration
import (
"fmt"
"strings"
"github.com/spf13/viper"
"github.com/authelia/authelia/internal/configuration/schema"
"github.com/authelia/authelia/internal/configuration/validator"
)
func check(e error) {
if e != nil {
panic(e)
}
}
// Read a YAML configuration and create a Configuration object out of it.
func Read(configPath string) (*schema.Configuration, []error) {
viper.SetEnvPrefix("AUTHELIA")
viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_"))
// we need to bind all env variables as long as https://github.com/spf13/viper/issues/761
// is not resolved.
viper.BindEnv("jwt_secret")
viper.BindEnv("duo_api.secret_key")
viper.BindEnv("session.secret")
viper.BindEnv("authentication_backend.ldap.password")
viper.BindEnv("notifier.smtp.password")
viper.BindEnv("session.redis.password")
viper.BindEnv("storage.mysql.password")
viper.BindEnv("storage.postgres.password")
viper.SetConfigFile(configPath)
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); ok {
return nil, []error{fmt.Errorf("unable to find config file %s", configPath)}
}
}
var configuration schema.Configuration
viper.Unmarshal(&configuration)
val := schema.NewStructValidator()
validator.Validate(&configuration, val)
if val.HasErrors() {
return nil, val.Errors()
}
return &configuration, nil
}