mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
9e9dee43ac
* implement SMTP notifier startup check * check dial, starttls, auth, mail from, rcpt to, reset, and quit * log the error on failure * implement mock * misc optimizations, adjustments, and refactoring * implement validate_skip config option * fix comments to end with period * fix suites that used smtp notifier without a smtp container * add docs * add file notifier startup check * move file mode into const.go * disable gosec linting on insecureskipverify since it's intended, warned, and discouraged * minor PR commentary adjustment * apply suggestions from code review Co-Authored-By: Amir Zarrinkafsh <nightah@me.com>
50 lines
1.4 KiB
Go
50 lines
1.4 KiB
Go
package validator
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
)
|
|
|
|
// ValidateNotifier validates and update notifier configuration.
|
|
func ValidateNotifier(configuration *schema.NotifierConfiguration, validator *schema.StructValidator) {
|
|
if configuration.SMTP == nil && configuration.FileSystem == nil {
|
|
validator.Push(fmt.Errorf("Notifier should be either `smtp` or `filesystem`"))
|
|
return
|
|
}
|
|
|
|
if configuration.SMTP != nil && configuration.FileSystem != nil {
|
|
validator.Push(fmt.Errorf("Notifier should be either `smtp` or `filesystem`"))
|
|
return
|
|
}
|
|
|
|
if configuration.FileSystem != nil {
|
|
if configuration.FileSystem.Filename == "" {
|
|
validator.Push(fmt.Errorf("Filename of filesystem notifier must not be empty"))
|
|
}
|
|
return
|
|
}
|
|
|
|
if configuration.SMTP != nil {
|
|
if configuration.SMTP.StartupCheckAddress == "" {
|
|
configuration.SMTP.StartupCheckAddress = "test@authelia.com"
|
|
}
|
|
if configuration.SMTP.Host == "" {
|
|
validator.Push(fmt.Errorf("Host of SMTP notifier must be provided"))
|
|
}
|
|
|
|
if configuration.SMTP.Port == 0 {
|
|
validator.Push(fmt.Errorf("Port of SMTP notifier must be provided"))
|
|
}
|
|
|
|
if configuration.SMTP.Sender == "" {
|
|
validator.Push(fmt.Errorf("Sender of SMTP notifier must be provided"))
|
|
}
|
|
|
|
if configuration.SMTP.Subject == "" {
|
|
configuration.SMTP.Subject = schema.DefaultSMTPNotifierConfiguration.Subject
|
|
}
|
|
return
|
|
}
|
|
}
|