collapses config into one library

This commit is contained in:
Hyatt 2022-10-11 08:11:29 -05:00
parent 7468a6dcb4
commit cd14bc11fa
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA
4 changed files with 20 additions and 25 deletions

View File

@ -6,7 +6,7 @@ import (
"os/signal" "os/signal"
"syscall" "syscall"
"mutating-webhook/internal/initialize" "mutating-webhook/internal/config"
) )
func forever() { func forever() {
@ -23,7 +23,7 @@ func main() {
}() }()
// initialize application configuration // initialize application configuration
cfg := initialize.Init() cfg := config.Init()
go httpServer(cfg) go httpServer(cfg)

View File

@ -3,7 +3,6 @@ package config
import ( import (
"fmt" "fmt"
"log" "log"
"mutating-webhook/internal/envconfig"
"os" "os"
"reflect" "reflect"
"strconv" "strconv"
@ -31,6 +30,7 @@ type Config struct {
WebServerIdleTimeout int `env:"WEBSERVER_IDLE_TIMEOUT" default:"2"` WebServerIdleTimeout int `env:"WEBSERVER_IDLE_TIMEOUT" default:"2"`
} }
// DefaultConfig initializes the config variable for use with a prepared set of defaults.
func DefaultConfig() *Config { func DefaultConfig() *Config {
return &Config{ return &Config{
Log: &logutils.LevelFilter{ Log: &logutils.LevelFilter{
@ -40,7 +40,7 @@ func DefaultConfig() *Config {
} }
} }
func (cfg *Config) Validate() error { func (cfg *Config) validate() error {
checks := []struct { checks := []struct {
bad bool bad bool
errMsg string errMsg string
@ -63,7 +63,7 @@ func (cfg *Config) Validate() error {
return nil return nil
} }
func (cfg *Config) SetLogLevel() { func (cfg *Config) setLogLevel() {
switch { switch {
case cfg.LogLevel <= 20: case cfg.LogLevel <= 20:
cfg.Log.SetMinLevel(logutils.LogLevel("ERROR")) cfg.Log.SetMinLevel(logutils.LogLevel("ERROR"))
@ -79,7 +79,7 @@ func (cfg *Config) SetLogLevel() {
log.SetOutput(cfg.Log) log.SetOutput(cfg.Log)
} }
func (cfg *Config) PrintRunningConfig(cfgInfo []envconfig.StructInfo) { func (cfg *Config) printRunningConfig(cfgInfo []StructInfo) {
log.Printf("[DEBUG] Current Running Configuration Values:") log.Printf("[DEBUG] Current Running Configuration Values:")
for _, info := range cfgInfo { for _, info := range cfgInfo {
switch info.Type.String() { switch info.Type.String() {

View File

@ -1,4 +1,4 @@
package envconfig package config
import ( import (
"fmt" "fmt"
@ -7,12 +7,6 @@ import (
"strings" "strings"
) )
/*
ignored:"true"
env:"ENVIRONMENT_VARIABLE"
default:"default value"
*/
type StructInfo struct { type StructInfo struct {
Name string Name string
Alt string Alt string
@ -23,7 +17,7 @@ type StructInfo struct {
DefaultValue interface{} DefaultValue interface{}
} }
func GetStructInfo(spec interface{}) ([]StructInfo, error) { func getStructInfo(spec interface{}) ([]StructInfo, error) {
s := reflect.ValueOf(spec) s := reflect.ValueOf(spec)
if s.Kind() != reflect.Pointer { if s.Kind() != reflect.Pointer {

View File

@ -1,4 +1,4 @@
package initialize package config
import ( import (
"flag" "flag"
@ -7,9 +7,6 @@ import (
"reflect" "reflect"
"strconv" "strconv"
"time" "time"
"mutating-webhook/internal/config"
"mutating-webhook/internal/envconfig"
) )
// getEnvString returns string from environment variable // getEnvString returns string from environment variable
@ -59,10 +56,13 @@ func getEnvBool(env string, def bool) bool {
return retVal return retVal
} }
func Init() *config.Config { // Init initializes the application configuration by reading default values from the struct's tags
cfg := config.DefaultConfig() // and environment variables. Tags processed by this process are as follows:
// `ignored:"true" env:"ENVIRONMENT_VARIABLE" default:"default value"`
func Init() *Config {
cfg := DefaultConfig()
cfgInfo, err := envconfig.GetStructInfo(cfg) cfgInfo, err := getStructInfo(cfg)
if err != nil { if err != nil {
log.Fatalf("[FATAL] %v", err) log.Fatalf("[FATAL] %v", err)
} }
@ -98,10 +98,11 @@ func Init() *config.Config {
flag.Parse() flag.Parse()
// set logging level // set logging level
cfg.SetLogLevel() cfg.setLogLevel()
// // validate some required values are defined.
if err = cfg.Validate(); err != nil { // need to break this out to a required:"true" struct tag
if err = cfg.validate(); err != nil {
log.Fatalf("[FATAL] %v", err) log.Fatalf("[FATAL] %v", err)
} }
@ -117,7 +118,7 @@ func Init() *config.Config {
time.Now().Format(cfg.TimeFormat) time.Now().Format(cfg.TimeFormat)
// print running config // print running config
cfg.PrintRunningConfig(cfgInfo) cfg.printRunningConfig(cfgInfo)
log.Println("[INFO] initialization complete") log.Println("[INFO] initialization complete")
return cfg return cfg