about summary refs log tree commit diff stats
path: root/internal/fetcher/download.go
diff options
context:
space:
mode:
authorAlan Pearce2024-05-20 23:55:40 +0200
committerAlan Pearce2024-05-20 23:55:40 +0200
commitb77a24f9f75378ffe97be83cf4dfd7f1683b9a7e (patch)
tree5e5efa81a76b8e3349c522729b98bb0d106f3bce /internal/fetcher/download.go
parentc821da1cf55864852bcd8f337dd7acd0cc02f0b9 (diff)
downloadsearchix-b77a24f9f75378ffe97be83cf4dfd7f1683b9a7e.tar.lz
searchix-b77a24f9f75378ffe97be83cf4dfd7f1683b9a7e.tar.zst
searchix-b77a24f9f75378ffe97be83cf4dfd7f1683b9a7e.zip
fix: make fetcher check on creation that it supports Source.Importer
Diffstat (limited to 'internal/fetcher/download.go')
-rw-r--r--internal/fetcher/download.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/internal/fetcher/download.go b/internal/fetcher/download.go
index 4165886..2c7b8fd 100644
--- a/internal/fetcher/download.go
+++ b/internal/fetcher/download.go
@@ -2,6 +2,7 @@ package fetcher
 
 import (
 	"context"
+	"fmt"
 	"log/slog"
 	"net/url"
 	"path"
@@ -18,6 +19,23 @@ type DownloadFetcher struct {
 	Logger     *slog.Logger
 }
 
+func NewDownloadFetcher(
+	source *config.Source,
+	dataPath string,
+	logger *slog.Logger,
+) (*DownloadFetcher, error) {
+	switch source.Importer {
+	case config.Options:
+		return &DownloadFetcher{
+			DataPath: dataPath,
+			Source:   source,
+			Logger:   logger,
+		}, nil
+	default:
+		return nil, fmt.Errorf("unsupported importer type %s", source.Importer)
+	}
+}
+
 var files = map[string]string{
 	"revision": "revision",
 	"options":  "options.json",