Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/server/internal/preflight/config.go

49 lines
976 B
Go
Raw Normal View History

2020-01-13 21:05:38 +13:00
package preflight
import (
"runtime"
"github.com/rs/zerolog/log"
"github.com/spf13/viper"
)
func Config(name string) {
2020-01-14 12:12:55 +13:00
config := viper.GetString("config")
2020-01-13 21:05:38 +13:00
if config != "" {
viper.SetConfigFile(config) // Use config file from the flag.
} else {
if runtime.GOOS == "linux" {
viper.AddConfigPath("/etc/neko/")
}
viper.AddConfigPath(".")
viper.SetConfigName(name)
}
viper.SetEnvPrefix("NEKO")
viper.AutomaticEnv() // read in environment variables that match
if err := viper.ReadInConfig(); err != nil {
if _, ok := err.(viper.ConfigFileNotFoundError); !ok {
log.Error().Err(err)
}
if config != "" {
log.Error().Err(err)
}
}
file := viper.ConfigFileUsed()
logger := log.With().
2020-01-14 12:12:55 +13:00
Bool("debug", viper.GetBool("debug")).
Str("logging", viper.GetString("logs")).
2020-01-13 21:05:38 +13:00
Str("config", file).
Logger()
if file == "" {
2020-01-19 12:30:09 +13:00
logger.Warn().Msg("preflight complete without config file")
2020-01-13 21:05:38 +13:00
} else {
2020-01-19 12:30:09 +13:00
logger.Info().Msg("preflight complete")
2020-01-13 21:05:38 +13:00
}
}