-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfig.go
42 lines (35 loc) · 1.24 KB
/
config.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
package notifications
import (
"github.com/pkg/errors"
"net/url"
"regexp"
)
type Config struct {
// If URL is the empty string, notifications are disabled.
Url string `yaml:"url" env:"URL"`
Username string `yaml:"username" env:"USERNAME"`
Password string `yaml:"password" env:"PASSWORD"`
KubernetesWebUrl string `yaml:"kubernetes_web_url" env:"KUBERNETES_WEB_URL" default:"http://localhost/icingaweb2/kubernetes"`
}
// Validate checks constraints in the supplied configuration and returns an error if they are violated.
func (c *Config) Validate() error {
if c.Url != "" || c.Username != "" || c.Password != "" {
if c.Url == "" || c.Username == "" || c.Password == "" {
return errors.New("if one of 'url', 'username', or 'password' is set, all must be set")
}
usernameValid, err := regexp.MatchString(`^source-\d+$`, c.Username)
if err != nil {
return errors.WithStack(err)
}
if !usernameValid {
return errors.New("'username' must be of the form 'source-<source_id>'")
}
if _, err := url.Parse(c.Url); err != nil {
return errors.Wrap(err, "'url' invalid")
}
}
if _, err := url.Parse(c.KubernetesWebUrl); err != nil {
return errors.Wrap(err, "'kubernetes_web_url' invalid")
}
return nil
}