feat: enable setting config file path via command line
Alan Pearce alan@alanpearce.eu
Thu, 09 May 2024 18:24:25 +0200
3 files changed, 28 insertions(+), 10 deletions(-)
M import/main.go → import/main.go
@@ -13,15 +13,31 @@ "searchix/internal/importer" "searchix/internal/search" "strings" "time" + + "github.com/ardanlabs/conf/v3" ) const timeout = 30 * time.Minute +type Config struct { + ConfigFile string `conf:"short:c"` +} + func main() { if _, found := os.LookupEnv("DEBUG"); found { slog.SetLogLoggerLevel(slog.LevelDebug) } - cfg, err := config.GetConfig() + var runtimeConfig Config + help, err := conf.Parse("", &runtimeConfig) + if err != nil { + if errors.Is(err, conf.ErrHelpWanted) { + log.Println(help) + os.Exit(1) + } + log.Panicf("parsing runtime configuration: %v", err) + } + + cfg, err := config.GetConfig(runtimeConfig.ConfigFile) if err != nil { log.Fatal(err) }
M internal/config/config.go → internal/config/config.go
@@ -5,7 +5,6 @@ "log/slog" "maps" "net/url" "os" - "searchix/internal/file" "searchix/internal/importer" "time" @@ -93,15 +92,16 @@ }, }, } -func GetConfig() (*Config, error) { +func GetConfig(filename string) (*Config, error) { config := defaultConfig - slog.Debug("reading config.toml") - f, err := os.Open("config.toml") - if err := file.NeedNotExist(err); err != nil { - return nil, errors.Wrap(err, "reading config.toml failed") - } - if f != nil { + if filename != "" { + slog.Debug("reading config", "filename", filename) + f, err := os.Open(filename) + if err != nil { + return nil, errors.Wrap(err, "reading config failed") + } defer f.Close() + dec := toml.NewDecoder(f) err = dec.Decode(&config) if err != nil { @@ -113,6 +113,7 @@ return nil, errors.Wrap(err, "config error") } } + maps.DeleteFunc(config.Sources, func(_ string, v importer.Source) bool { return !v.Enable })
M internal/server/server.go → internal/server/server.go
@@ -43,6 +43,7 @@ Root string `conf:"default:website"` ListenAddress string `conf:"default:localhost"` Port string `conf:"default:3000,short:p"` BaseURL cfg.URL `conf:"default:http://localhost:3000,short:b"` + ConfigFile string `conf:"short:c"` } type HTTPError struct { @@ -81,7 +82,7 @@ } func New(runtimeConfig *Config) (*Server, error) { var err error - config, err = cfg.GetConfig() + config, err = cfg.GetConfig(runtimeConfig.ConfigFile) if err != nil { return nil, errors.WithMessage(err, "error parsing configuration file") }