mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-30 08:06:52 +02:00
added validations for settings screen
This commit is contained in:
parent
68ff4aa2d1
commit
1348f8f5fc
@ -8,6 +8,8 @@ import (
|
||||
|
||||
var (
|
||||
ErrInvalidGitHubTrailingSlash = errors.New("GitHub URL should not have a trailing slash")
|
||||
ErrInvalidSmtpAddress = errors.New("SMTP From Address must be provided")
|
||||
ErrInvalidSmtpPort = errors.New("SMTP Port must be provided")
|
||||
)
|
||||
|
||||
type Settings struct {
|
||||
@ -50,6 +52,10 @@ func (s *Settings) Validate() error {
|
||||
switch {
|
||||
case strings.HasSuffix(s.GitHubApiUrl, "/"):
|
||||
return ErrInvalidGitHubTrailingSlash
|
||||
case len(s.SmtpServer) != 0 && len(s.SmtpPort) == 0:
|
||||
return ErrInvalidSmtpPort
|
||||
case len(s.SmtpServer) != 0 && len(s.SmtpAddress) == 0:
|
||||
return ErrInvalidSmtpAddress
|
||||
default:
|
||||
return nil
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user