From b77a24f9f75378ffe97be83cf4dfd7f1683b9a7e Mon Sep 17 00:00:00 2001 From: Alan Pearce Date: Mon, 20 May 2024 23:55:40 +0200 Subject: fix: make fetcher check on creation that it supports Source.Importer --- internal/fetcher/nixpkgs-channel.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'internal/fetcher/nixpkgs-channel.go') diff --git a/internal/fetcher/nixpkgs-channel.go b/internal/fetcher/nixpkgs-channel.go index 32aaac3..033b577 100644 --- a/internal/fetcher/nixpkgs-channel.go +++ b/internal/fetcher/nixpkgs-channel.go @@ -2,6 +2,7 @@ package fetcher import ( "context" + "fmt" "log/slog" "net/url" "path" @@ -23,6 +24,23 @@ func makeChannelURL(channel string, subPath string) (string, error) { return url, errors.WithMessagef(err, "error creating URL") } +func NewNixpkgsChannelFetcher( + source *config.Source, + dataPath string, + logger *slog.Logger, +) (*NixpkgsChannelFetcher, error) { + switch source.Importer { + case config.Options, config.Packages: + return &NixpkgsChannelFetcher{ + DataPath: dataPath, + Source: source, + Logger: logger, + }, nil + default: + return nil, fmt.Errorf("unsupported importer type %s", source.Importer) + } +} + const ( revisionFilename = "git-revision" optionsFilename = "options.json.br" -- cgit 1.4.1