2020-01-21 20:15:40 +00:00
|
|
|
package validator
|
|
|
|
|
2020-04-05 12:37:21 +00:00
|
|
|
import (
|
|
|
|
"fmt"
|
2020-01-21 20:15:40 +00:00
|
|
|
|
2020-04-05 12:37:21 +00:00
|
|
|
"github.com/authelia/authelia/internal/configuration/schema"
|
|
|
|
)
|
2020-01-21 20:15:40 +00:00
|
|
|
|
2020-04-20 21:03:38 +00:00
|
|
|
// ValidateNotifier validates and update notifier configuration.
|
2020-01-21 20:15:40 +00:00
|
|
|
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"))
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-01-21 20:15:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if configuration.SMTP != nil {
|
[FEATURE] Notifier Startup Checks (#889)
* 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>
2020-04-21 04:59:38 +00:00
|
|
|
if configuration.SMTP.StartupCheckAddress == "" {
|
|
|
|
configuration.SMTP.StartupCheckAddress = "test@authelia.com"
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-01-21 20:15:40 +00:00
|
|
|
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"))
|
|
|
|
}
|
2020-04-09 00:21:28 +00:00
|
|
|
|
|
|
|
if configuration.SMTP.Subject == "" {
|
|
|
|
configuration.SMTP.Subject = schema.DefaultSMTPNotifierConfiguration.Subject
|
|
|
|
}
|
2020-05-05 19:35:32 +00:00
|
|
|
|
2020-01-21 20:15:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|