Code re-organization
Some checks failed
Go Tests / build (1.22.x) (push) Failing after 1m27s

This commit is contained in:
2025-01-26 18:20:45 -05:00
parent b93d1c29b8
commit 85938a2def
21 changed files with 685 additions and 348 deletions

54
config/config.go Normal file
View File

@@ -0,0 +1,54 @@
package config
import (
"github.com/bigkevmcd/go-configparser"
"sync"
)
type Config struct {
initializeOnce sync.Once
Generator *generatorConfig
Aws *awsConfig
Redis *redisConfig
}
var c *Config
func GetConfig() *Config {
if c == nil {
return nil
}
return c
}
// NewConfig returns a new Config struct
func NewConfig(path string) (*Config, error) {
if path == "" {
path = "imgproxy.cfg"
}
p, err := configparser.NewConfigParserFromFile(path)
if err != nil {
return nil, err
}
c = &Config{}
gc, err := getGeneratorConfig(p)
if err != nil {
return nil, err
}
c.Generator = gc
if p.HasSection("aws") {
c.Aws = getAwsConfig(p)
}
if p.HasSection("redis") {
c.Redis = getRedisConfig(p)
}
return c, nil
}