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
|
|
|
|
|
|
|
// ValidateSession validates and update session 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.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-01-21 20:15:40 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|