From 2886564f260fbc540cf8f13149958d12a796f5c6 Mon Sep 17 00:00:00 2001 From: Emile Date: Sun, 15 Mar 2020 18:45:14 +0100 Subject: initial setup --- src/main.go | 67 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 67 insertions(+) create mode 100644 src/main.go (limited to 'src/main.go') diff --git a/src/main.go b/src/main.go new file mode 100644 index 0000000..6a1a118 --- /dev/null +++ b/src/main.go @@ -0,0 +1,67 @@ +package main + +import ( + "fmt" + "log" + "net/http" + "strings" + + "git.darknebu.la/emile/corona-metrics/src/structs" + "github.com/sirupsen/logrus" + "github.com/spf13/viper" +) + +func main() { + initConfig() + initLogging() + + go ExitHandler() + + http.Serve() +} + +// initialize the config (config.yml) +func initConfig() { + // parse the config + viper.SetConfigName("config") + viper.AddConfigPath(".") + viper.AutomaticEnv() + + // Fix nested keys don't work with . + viper.SetEnvKeyReplacer(strings.NewReplacer(".", "_")) + + // read the config + err := viper.ReadInConfig() + if err != nil { + panic(fmt.Errorf("Fatal error config file: %s", err)) + } + + // unmarshal the config + var conf structs.Configuration + err = viper.Unmarshal(&conf) + if err != nil { + log.Fatalf("unable to decode into struct, %v", err) + } +} + +// Initialize the loglevel using the value given in the config +func initLogging() { + + switch viper.GetString("verbose.level") { + case "1": + logrus.SetLevel(logrus.PanicLevel) + case "2": + logrus.SetLevel(logrus.FatalLevel) + case "3": + logrus.SetLevel(logrus.ErrorLevel) + case "4": + logrus.SetLevel(logrus.WarnLevel) + case "5": + logrus.SetLevel(logrus.InfoLevel) + case "6": + logrus.SetLevel(logrus.DebugLevel) + case "7": + logrus.SetLevel(logrus.TraceLevel) + } + +} -- cgit 1.4.1