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"
|
2019-12-04 22:44:35 +01:00
|
|
|
"log"
|
2019-11-16 21:01:40 +01:00
|
|
|
"os"
|
2019-09-09 03:07:08 +02:00
|
|
|
"time"
|
2019-09-06 06:01:48 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type Config struct {
|
2019-11-16 21:46:52 +01:00
|
|
|
Metrics bool `yaml:"metrics"`
|
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 (
|
2019-12-04 22:44:35 +01:00
|
|
|
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
|
|
|
|
|
|
|
func Get() *Config {
|
|
|
|
if config == nil {
|
2019-12-04 22:44:35 +01:00
|
|
|
panic(ErrConfigNotLoaded)
|
2019-09-06 06:01:48 +02:00
|
|
|
}
|
|
|
|
return config
|
|
|
|
}
|
|
|
|
|
2019-12-04 22:44:35 +01:00
|
|
|
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 {
|
|
|
|
err := Load("config.yaml")
|
|
|
|
if err != nil {
|
|
|
|
if err == ErrConfigFileNotFound {
|
|
|
|
return Load("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) {
|
2019-12-04 23:27:27 +01:00
|
|
|
// 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 {
|
|
|
|
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
|
|
|
}
|