internal/fetcher/download.go (view raw)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 | package fetcher
import (
"context"
"net/url"
"github.com/Southclaws/fault"
"github.com/Southclaws/fault/fmsg"
"alin.ovh/searchix/internal/config"
"alin.ovh/searchix/internal/fetcher/http"
"alin.ovh/searchix/internal/index/meta"
)
type DownloadFetcher struct {
Source config.Source
fetcher *http.Fetcher
*Options
}
func NewDownloadFetcher(
source config.Source,
options *Options,
) (*DownloadFetcher, error) {
switch source.Importer {
case config.Options, config.Packages:
return &DownloadFetcher{
Source: source,
Options: options,
fetcher: http.NewFetcher(&http.Options{
Logger: options.Logger.Named("http"),
Root: options.Root,
}),
}, nil
default:
return nil, fault.Newf("unsupported importer type %s", source.Importer)
}
}
const revisionFileName = "revision"
var files = map[config.ImporterType]string{
config.Options: "options.json",
config.Packages: "packages.json",
}
func (i *DownloadFetcher) FetchIfNeeded(
ctx context.Context,
sourceMeta *meta.SourceMeta,
) (*FetchedFiles, error) {
f := &FetchedFiles{}
filesToFetch := []string{
revisionFileName,
files[i.Source.Importer],
}
for _, basename := range filesToFetch {
target := i.Source.JoinFilePath(basename)
fetchURL, baseErr := url.JoinPath(i.Source.URL, basename)
if baseErr != nil {
return nil, fault.Wrap(
baseErr,
fmsg.Withf(
"could not build URL with elements %s and %s",
i.Source.URL,
basename,
),
)
}
body, err := i.fetcher.FetchFileIfNeeded(ctx, target, fetchURL)
if err != nil {
i.Logger.Warn("failed to fetch file", "url", fetchURL, "error", err)
return nil, fault.Wrap(err, fmsg.Withf("could not fetch file %s", basename))
}
stat, err := i.Root.Stat(target)
if err != nil {
return nil, fault.Wrap(err, fmsg.Withf("could not stat file %s", target))
}
sourceMeta.UpdatedAt = stat.ModTime()
switch basename {
case revisionFileName:
f.Revision = body
case files[config.Options]:
f.Options = body
case files[config.Packages]:
f.Packages = body
default:
return f, fault.Newf("unknown filename %s", basename)
}
}
return f, nil
}
|