fix: nix cannot read date/time TOML values from default config
Alan Pearce alan@alanpearce.eu
Mon, 20 May 2024 18:25:25 +0200
3 files changed, 27 insertions(+), 4 deletions(-)
M defaults.toml → defaults.toml
@@ -47,7 +47,7 @@ x-content-type-options = 'nosniff' [Importer] Timeout = '30m0s' -UpdateAt = 04:00:00 +UpdateAt = '04:00:00' [Importer.Sources] [Importer.Sources.darwin]
M internal/config/config.go → internal/config/config.go
@@ -62,7 +62,30 @@ return u } -func mustLocalTime(in string) (time toml.LocalTime) { +// this type is necessary as nix's `fromTOML` doesn't support TOML date/time formats +type LocalTime struct { + toml.LocalTime +} + +func (t *LocalTime) MarshalText() ([]byte, error) { + b, err := t.LocalTime.MarshalText() + if err != nil { + return nil, errors.WithMessage(err, "could not marshal time value") + } + + return b, nil +} + +func (t *LocalTime) UnmarshalText(in []byte) (err error) { + err = t.LocalTime.UnmarshalText(in) + if err != nil { + return errors.WithMessage(err, "could not parse time value") + } + + return nil +} + +func mustLocalTime(in string) (time LocalTime) { err := time.UnmarshalText([]byte(in)) if err != nil { panic(errors.Errorf("Could not parse time: %s", in)) @@ -85,7 +108,7 @@ type Importer struct { Sources map[string]*Source Timeout Duration - UpdateAt toml.LocalTime + UpdateAt LocalTime } type Config struct {
M searchix.go → searchix.go
@@ -184,7 +184,7 @@ CheckInMargin: 5, Timezone: time.Local.String(), } - nextRun := nextOccurrenceOfLocalTime(cfg.Importer.UpdateAt) + nextRun := nextOccurrenceOfLocalTime(cfg.Importer.UpdateAt.LocalTime) for { slog.Debug("scheduling next run", "next-run", nextRun) <-time.After(time.Until(nextRun))