* refactor(report): LocalFileWriter * refactor -format-json * refacotr: -format-one-email * refactor: -format-csv * refactor: -gzip * refactor: -format-full-text * refactor: -format-one-line-text * refactor: -format-list * refacotr: remove -to-* from config * refactor: IgnoreGitHubDismissed * refactor: GitHub * refactor: IgnoreUnsocred * refactor: diff * refacotr: lang * refacotr: cacheDBPath * refactor: Remove config references * refactor: ScanResults * refacotr: constant pkg * chore: comment * refactor: scanner * refactor: scanner * refactor: serverapi.go * refactor: serverapi * refactor: change pkg structure * refactor: serverapi.go * chore: remove emtpy file * fix(scan): remove -ssh-native-insecure option * fix(scan): remove the deprecated option `keypassword`
66 lines
1.7 KiB
Go
66 lines
1.7 KiB
Go
package config
|
|
|
|
import (
|
|
"github.com/asaskevich/govalidator"
|
|
"golang.org/x/xerrors"
|
|
)
|
|
|
|
// SMTPConf is smtp config
|
|
type SMTPConf struct {
|
|
SMTPAddr string `toml:"smtpAddr,omitempty" json:"-"`
|
|
SMTPPort string `toml:"smtpPort,omitempty" valid:"port" json:"-"`
|
|
User string `toml:"user,omitempty" json:"-"`
|
|
Password string `toml:"password,omitempty" json:"-"`
|
|
From string `toml:"from,omitempty" json:"-"`
|
|
To []string `toml:"to,omitempty" json:"-"`
|
|
Cc []string `toml:"cc,omitempty" json:"-"`
|
|
SubjectPrefix string `toml:"subjectPrefix,omitempty" json:"-"`
|
|
Enabled bool `toml:"-" json:"-"`
|
|
}
|
|
|
|
func checkEmails(emails []string) (errs []error) {
|
|
for _, addr := range emails {
|
|
if len(addr) == 0 {
|
|
return
|
|
}
|
|
if ok := govalidator.IsEmail(addr); !ok {
|
|
errs = append(errs, xerrors.Errorf("Invalid email address. email: %s", addr))
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
// Validate SMTP configuration
|
|
func (c *SMTPConf) Validate() (errs []error) {
|
|
if !c.Enabled {
|
|
return
|
|
}
|
|
emails := []string{}
|
|
emails = append(emails, c.From)
|
|
emails = append(emails, c.To...)
|
|
emails = append(emails, c.Cc...)
|
|
|
|
if emailErrs := checkEmails(emails); 0 < len(emailErrs) {
|
|
errs = append(errs, emailErrs...)
|
|
}
|
|
|
|
if c.SMTPAddr == "" {
|
|
errs = append(errs, xerrors.New("email.smtpAddr must not be empty"))
|
|
}
|
|
if c.SMTPPort == "" {
|
|
errs = append(errs, xerrors.New("email.smtpPort must not be empty"))
|
|
}
|
|
if len(c.To) == 0 {
|
|
errs = append(errs, xerrors.New("email.To required at least one address"))
|
|
}
|
|
if len(c.From) == 0 {
|
|
errs = append(errs, xerrors.New("email.From required at least one address"))
|
|
}
|
|
|
|
_, err := govalidator.ValidateStruct(c)
|
|
if err != nil {
|
|
errs = append(errs, err)
|
|
}
|
|
return
|
|
}
|