gatus/config/config.go

86 lines
1.9 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"
"log"
"os"
2019-09-06 06:01:48 +02:00
)
2020-06-26 03:31:34 +02:00
const (
DefaultConfigurationFilePath = "config/config.yaml"
)
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")
ErrConfigFileNotFound = errors.New("configuration file not found")
ErrConfigNotLoaded = errors.New("configuration is nil")
config *Config
2019-10-20 04:03:55 +02:00
)
2019-09-06 06:01:48 +02:00
2020-06-26 03:31:34 +02:00
type Config struct {
Metrics bool `yaml:"metrics"`
2020-08-20 01:41:01 +02:00
Alerting *core.Alerting `yaml:"alerting"`
2020-06-26 03:31:34 +02:00
Services []*core.Service `yaml:"services"`
}
2019-09-06 06:01:48 +02:00
func Get() *Config {
if config == nil {
panic(ErrConfigNotLoaded)
2019-09-06 06:01:48 +02:00
}
return config
}
func Load(configFile string) error {
log.Printf("[config][Load] Attempting to load config from configFile=%s", configFile)
cfg, err := readConfigurationFile(configFile)
if err != nil {
if os.IsNotExist(err) {
return ErrConfigFileNotFound
} else {
return err
}
}
config = cfg
return nil
}
func LoadDefaultConfiguration() error {
2020-06-26 03:31:34 +02:00
err := Load(DefaultConfigurationFilePath)
if err != nil {
if err == ErrConfigFileNotFound {
return Load("config/config.yml")
}
return err
}
return nil
}
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) {
// Expand environment variables
yamlBytes = []byte(os.ExpandEnv(string(yamlBytes)))
// Parse configuration file
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 {
service.Validate()
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
}