103 lines
2.6 KiB
Go
103 lines
2.6 KiB
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/authelia/authelia/v4/internal/configuration/schema"
|
|
)
|
|
|
|
// ValidateNotifier validates and update notifier configuration.
|
|
func ValidateNotifier(config *schema.NotifierConfiguration, validator *schema.StructValidator) {
|
|
if config.SMTP == nil && config.FileSystem == nil {
|
|
validator.Push(fmt.Errorf(errFmtNotifierNotConfigured))
|
|
|
|
return
|
|
} else if config.SMTP != nil && config.FileSystem != nil {
|
|
validator.Push(fmt.Errorf(errFmtNotifierMultipleConfigured))
|
|
|
|
return
|
|
}
|
|
|
|
if config.FileSystem != nil {
|
|
if config.FileSystem.Filename == "" {
|
|
validator.Push(fmt.Errorf(errFmtNotifierFileSystemFileNameNotConfigured))
|
|
}
|
|
|
|
return
|
|
}
|
|
|
|
validateSMTPNotifier(config.SMTP, validator)
|
|
|
|
validateNotifierTemplates(config, validator)
|
|
}
|
|
|
|
func validateNotifierTemplates(config *schema.NotifierConfiguration, validator *schema.StructValidator) {
|
|
if config.TemplatePath == "" {
|
|
return
|
|
}
|
|
|
|
var (
|
|
err error
|
|
)
|
|
|
|
_, err = os.Stat(config.TemplatePath)
|
|
|
|
switch {
|
|
case os.IsNotExist(err):
|
|
validator.Push(fmt.Errorf(errFmtNotifierTemplatePathNotExist, config.TemplatePath))
|
|
return
|
|
case err != nil:
|
|
validator.Push(fmt.Errorf(errFmtNotifierTemplatePathUnknownError, config.TemplatePath, err))
|
|
return
|
|
}
|
|
}
|
|
|
|
func validateSMTPNotifier(config *schema.SMTPNotifierConfiguration, validator *schema.StructValidator) {
|
|
if config.StartupCheckAddress.Address == "" {
|
|
config.StartupCheckAddress = schema.DefaultSMTPNotifierConfiguration.StartupCheckAddress
|
|
}
|
|
|
|
if config.Host == "" {
|
|
validator.Push(fmt.Errorf(errFmtNotifierSMTPNotConfigured, "host"))
|
|
}
|
|
|
|
if config.Port == 0 {
|
|
validator.Push(fmt.Errorf(errFmtNotifierSMTPNotConfigured, "port"))
|
|
}
|
|
|
|
if config.Timeout == 0 {
|
|
config.Timeout = schema.DefaultSMTPNotifierConfiguration.Timeout
|
|
}
|
|
|
|
if config.Sender.Address == "" {
|
|
validator.Push(fmt.Errorf(errFmtNotifierSMTPNotConfigured, "sender"))
|
|
}
|
|
|
|
if config.Subject == "" {
|
|
config.Subject = schema.DefaultSMTPNotifierConfiguration.Subject
|
|
}
|
|
|
|
if config.Identifier == "" {
|
|
config.Identifier = schema.DefaultSMTPNotifierConfiguration.Identifier
|
|
}
|
|
|
|
if config.TLS == nil {
|
|
config.TLS = &schema.TLSConfig{}
|
|
}
|
|
|
|
configDefaultTLS := &schema.TLSConfig{
|
|
ServerName: config.Host,
|
|
MinimumVersion: schema.DefaultSMTPNotifierConfiguration.TLS.MinimumVersion,
|
|
MaximumVersion: schema.DefaultSMTPNotifierConfiguration.TLS.MaximumVersion,
|
|
}
|
|
|
|
if err := ValidateTLSConfig(config.TLS, configDefaultTLS); err != nil {
|
|
validator.Push(fmt.Errorf(errFmtNotifierSMTPTLSConfigInvalid, err))
|
|
}
|
|
|
|
if config.DisableStartTLS {
|
|
validator.PushWarning(fmt.Errorf(errFmtNotifierStartTlsDisabled))
|
|
}
|
|
}
|