This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
2017-03-25 16:09:17 +01:00
|
|
|
package models
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
|
|
|
|
2017-04-04 19:28:46 +02:00
|
|
|
"github.com/BurntSushi/toml"
|
2017-03-30 16:09:44 +02:00
|
|
|
|
|
|
|
"github.com/genofire/hs_master-kss-monolith/lib/database"
|
2017-03-30 17:02:20 +02:00
|
|
|
"github.com/genofire/hs_master-kss-monolith/lib/log"
|
2017-03-25 16:09:17 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
//Config the config File of this daemon
|
|
|
|
type Config struct {
|
2017-04-05 19:03:44 +02:00
|
|
|
WebserverBind string `toml:"webserver_bind"`
|
|
|
|
Database database.Config `toml:"database"`
|
|
|
|
GoodAvailablityTemplate string `toml:"good_availablity_template"`
|
|
|
|
GoodRelease GoodReleaseConfig `toml:"good_release"`
|
|
|
|
CacheClean CacheWorkerConfig `toml:"cache_clean"`
|
2017-03-25 16:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// ReadConfigFile reads a config model from path of a yml file
|
|
|
|
func ReadConfigFile(path string) *Config {
|
|
|
|
config := &Config{}
|
|
|
|
file, err := ioutil.ReadFile(path)
|
|
|
|
if err != nil {
|
2017-03-30 16:09:44 +02:00
|
|
|
log.Log.Panic(err)
|
2017-03-25 16:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if err := toml.Unmarshal(file, config); err != nil {
|
2017-03-30 16:09:44 +02:00
|
|
|
log.Log.Panic(err)
|
2017-03-25 16:09:17 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return config
|
|
|
|
}
|