all repos — searchix @ 202317df1dba891654bf749c3720fbd602df04ff

Search engine for NixOS, nix-darwin, home-manager and NUR users

fix: nix cannot read date/time TOML values from default config
Alan Pearce alan@alanpearce.eu
Mon, 20 May 2024 18:25:25 +0200
commit

202317df1dba891654bf749c3720fbd602df04ff

parent

0f5508013d776f8806a87957f80e74c7f74c72eb

3 files changed, 27 insertions(+), 4 deletions(-)

jump to
M defaults.tomldefaults.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.gointernal/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.gosearchix.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))