gatus/config/config.go

55 lines
1.2 KiB
Go
Raw Normal View History

2019-09-06 06:01:48 +02:00
package config
import (
2019-10-20 04:03:55 +02:00
"errors"
2019-09-07 02:25:31 +02:00
"github.com/TwinProduction/gatus/core"
2019-09-06 06:01:48 +02:00
"gopkg.in/yaml.v2"
"io/ioutil"
"time"
2019-09-06 06:01:48 +02:00
)
type Config struct {
2019-09-07 02:25:31 +02:00
Services []*core.Service `yaml:"services"`
2019-09-06 06:01:48 +02:00
}
2019-10-20 04:03:55 +02:00
var (
ErrNoServiceInConfig = errors.New("configuration file should contain at least 1 service")
config *Config
)
2019-09-06 06:01:48 +02:00
func Get() *Config {
if config == nil {
2019-10-20 03:39:31 +02:00
cfg, err := readConfigurationFile("config.yaml")
if err != nil {
panic(err)
}
config = cfg
2019-09-06 06:01:48 +02:00
}
return config
}
2019-10-20 04:03:55 +02:00
func readConfigurationFile(fileName string) (config *Config, err error) {
var bytes []byte
if bytes, err = ioutil.ReadFile(fileName); err == nil {
2019-10-20 03:39:31 +02:00
// file exists, so we'll parse it and return it
2019-10-20 04:03:55 +02:00
return parseAndValidateConfigBytes(bytes)
2019-09-06 06:01:48 +02:00
}
2019-10-20 04:03:55 +02:00
return
2019-09-06 06:01:48 +02:00
}
2019-10-20 04:03:55 +02:00
func parseAndValidateConfigBytes(yamlBytes []byte) (config *Config, err error) {
2019-10-20 03:42:03 +02:00
err = yaml.Unmarshal(yamlBytes, &config)
2019-10-20 04:03:55 +02:00
// Check if the configuration file at least has services.
if config == nil || len(config.Services) == 0 {
err = ErrNoServiceInConfig
} else {
// Set the default values if they aren't set
for _, service := range config.Services {
if service.Interval == 0 {
service.Interval = 10 * time.Second
}
2019-09-07 02:25:31 +02:00
}
}
2019-10-20 03:42:03 +02:00
return
2019-09-06 06:01:48 +02:00
}