2023-10-20 20:50:21 +03:00
|
|
|
#include "tarball.hh"
|
2020-03-30 17:04:18 +03:00
|
|
|
#include "fetchers.hh"
|
|
|
|
#include "cache.hh"
|
2020-04-08 15:12:22 +03:00
|
|
|
#include "filetransfer.hh"
|
2020-03-30 17:04:18 +03:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
#include "archive.hh"
|
|
|
|
#include "tarfile.hh"
|
2020-06-17 22:08:59 +03:00
|
|
|
#include "types.hh"
|
2020-10-16 02:35:24 +03:00
|
|
|
#include "split.hh"
|
2023-11-04 22:25:41 +02:00
|
|
|
#include "posix-source-accessor.hh"
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
namespace nix::fetchers {
|
|
|
|
|
|
|
|
DownloadFileResult downloadFile(
|
|
|
|
ref<Store> store,
|
|
|
|
const std::string & url,
|
|
|
|
const std::string & name,
|
2022-02-24 19:09:00 +02:00
|
|
|
bool locked,
|
2020-09-29 14:05:19 +03:00
|
|
|
const Headers & headers)
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
|
|
|
// FIXME: check store
|
|
|
|
|
|
|
|
Attrs inAttrs({
|
|
|
|
{"type", "file"},
|
|
|
|
{"url", url},
|
|
|
|
{"name", name},
|
|
|
|
});
|
|
|
|
|
2023-11-04 22:25:41 +02:00
|
|
|
auto cached = getCache()->lookupExpired(*store, inAttrs);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
auto useCached = [&]() -> DownloadFileResult
|
|
|
|
{
|
|
|
|
return {
|
|
|
|
.storePath = std::move(cached->storePath),
|
|
|
|
.etag = getStrAttr(cached->infoAttrs, "etag"),
|
2023-06-07 15:26:30 +03:00
|
|
|
.effectiveUrl = getStrAttr(cached->infoAttrs, "url"),
|
|
|
|
.immutableUrl = maybeGetStrAttr(cached->infoAttrs, "immutableUrl"),
|
2020-03-30 17:04:18 +03:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
if (cached && !cached->expired)
|
|
|
|
return useCached();
|
|
|
|
|
2020-09-29 14:05:19 +03:00
|
|
|
FileTransferRequest request(url);
|
|
|
|
request.headers = headers;
|
2020-03-30 17:04:18 +03:00
|
|
|
if (cached)
|
|
|
|
request.expectedETag = getStrAttr(cached->infoAttrs, "etag");
|
2020-04-08 15:12:22 +03:00
|
|
|
FileTransferResult res;
|
2020-03-30 17:04:18 +03:00
|
|
|
try {
|
2020-04-08 15:12:22 +03:00
|
|
|
res = getFileTransfer()->download(request);
|
|
|
|
} catch (FileTransferError & e) {
|
2020-03-30 17:04:18 +03:00
|
|
|
if (cached) {
|
|
|
|
warn("%s; using cached version", e.msg());
|
|
|
|
return useCached();
|
|
|
|
} else
|
|
|
|
throw;
|
|
|
|
}
|
|
|
|
|
|
|
|
// FIXME: write to temporary file.
|
|
|
|
Attrs infoAttrs({
|
|
|
|
{"etag", res.etag},
|
|
|
|
{"url", res.effectiveUri},
|
|
|
|
});
|
|
|
|
|
2023-06-07 15:26:30 +03:00
|
|
|
if (res.immutableUrl)
|
|
|
|
infoAttrs.emplace("immutableUrl", *res.immutableUrl);
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
std::optional<StorePath> storePath;
|
|
|
|
|
|
|
|
if (res.cached) {
|
|
|
|
assert(cached);
|
|
|
|
storePath = std::move(cached->storePath);
|
|
|
|
} else {
|
|
|
|
StringSink sink;
|
2022-01-17 23:20:05 +02:00
|
|
|
dumpString(res.data, sink);
|
2023-11-28 15:20:27 +02:00
|
|
|
auto hash = hashString(HashAlgorithm::SHA256, res.data);
|
2020-08-06 21:31:48 +03:00
|
|
|
ValidPathInfo info {
|
2020-10-07 16:52:20 +03:00
|
|
|
*store,
|
2023-01-23 19:58:11 +02:00
|
|
|
name,
|
|
|
|
FixedOutputInfo {
|
2023-07-06 01:53:44 +03:00
|
|
|
.method = FileIngestionMethod::Flat,
|
|
|
|
.hash = hash,
|
2023-02-28 18:57:20 +02:00
|
|
|
.references = {},
|
2020-10-07 16:52:20 +03:00
|
|
|
},
|
2023-11-28 15:20:27 +02:00
|
|
|
hashString(HashAlgorithm::SHA256, sink.s),
|
2020-08-06 21:31:48 +03:00
|
|
|
};
|
2022-01-17 23:20:05 +02:00
|
|
|
info.narSize = sink.s.size();
|
2022-03-10 17:48:14 +02:00
|
|
|
auto source = StringSource { sink.s };
|
2020-05-29 23:19:48 +03:00
|
|
|
store->addToStore(info, source, NoRepair, NoCheckSigs);
|
2020-03-30 17:04:18 +03:00
|
|
|
storePath = std::move(info.path);
|
|
|
|
}
|
|
|
|
|
|
|
|
getCache()->add(
|
2023-11-04 22:25:41 +02:00
|
|
|
*store,
|
2020-03-30 17:04:18 +03:00
|
|
|
inAttrs,
|
|
|
|
infoAttrs,
|
|
|
|
*storePath,
|
2022-02-24 19:09:00 +02:00
|
|
|
locked);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
if (url != res.effectiveUri)
|
|
|
|
getCache()->add(
|
2023-11-04 22:25:41 +02:00
|
|
|
*store,
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
|
|
|
{"type", "file"},
|
|
|
|
{"url", res.effectiveUri},
|
|
|
|
{"name", name},
|
|
|
|
},
|
|
|
|
infoAttrs,
|
|
|
|
*storePath,
|
2022-02-24 19:09:00 +02:00
|
|
|
locked);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
return {
|
|
|
|
.storePath = std::move(*storePath),
|
|
|
|
.etag = res.etag,
|
|
|
|
.effectiveUrl = res.effectiveUri,
|
2023-06-07 15:26:30 +03:00
|
|
|
.immutableUrl = res.immutableUrl,
|
2020-03-30 17:04:18 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2023-06-07 15:26:30 +03:00
|
|
|
DownloadTarballResult downloadTarball(
|
2020-03-30 17:04:18 +03:00
|
|
|
ref<Store> store,
|
|
|
|
const std::string & url,
|
|
|
|
const std::string & name,
|
2022-02-24 19:09:00 +02:00
|
|
|
bool locked,
|
2020-09-29 14:05:19 +03:00
|
|
|
const Headers & headers)
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
|
|
|
Attrs inAttrs({
|
|
|
|
{"type", "tarball"},
|
|
|
|
{"url", url},
|
|
|
|
{"name", name},
|
|
|
|
});
|
|
|
|
|
2023-11-04 22:25:41 +02:00
|
|
|
auto cached = getCache()->lookupExpired(*store, inAttrs);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
if (cached && !cached->expired)
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
return {
|
2023-10-20 20:50:21 +03:00
|
|
|
.storePath = std::move(cached->storePath),
|
2023-06-07 15:26:30 +03:00
|
|
|
.lastModified = (time_t) getIntAttr(cached->infoAttrs, "lastModified"),
|
|
|
|
.immutableUrl = maybeGetStrAttr(cached->infoAttrs, "immutableUrl"),
|
2020-03-30 17:04:18 +03:00
|
|
|
};
|
|
|
|
|
2022-02-24 19:09:00 +02:00
|
|
|
auto res = downloadFile(store, url, name, locked, headers);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
std::optional<StorePath> unpackedStorePath;
|
|
|
|
time_t lastModified;
|
|
|
|
|
|
|
|
if (cached && res.etag != "" && getStrAttr(cached->infoAttrs, "etag") == res.etag) {
|
|
|
|
unpackedStorePath = std::move(cached->storePath);
|
|
|
|
lastModified = getIntAttr(cached->infoAttrs, "lastModified");
|
|
|
|
} else {
|
|
|
|
Path tmpDir = createTempDir();
|
|
|
|
AutoDelete autoDelete(tmpDir, true);
|
|
|
|
unpackTarfile(store->toRealPath(res.storePath), tmpDir);
|
|
|
|
auto members = readDirectory(tmpDir);
|
|
|
|
if (members.size() != 1)
|
|
|
|
throw nix::Error("tarball '%s' contains an unexpected number of top-level files", url);
|
|
|
|
auto topDir = tmpDir + "/" + members.begin()->name;
|
|
|
|
lastModified = lstat(topDir).st_mtime;
|
2023-11-04 22:25:41 +02:00
|
|
|
PosixSourceAccessor accessor;
|
|
|
|
unpackedStorePath = store->addToStore(name, accessor, CanonPath { topDir }, FileIngestionMethod::Recursive, HashAlgorithm::SHA256, {}, defaultPathFilter, NoRepair);
|
2020-03-30 17:04:18 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
Attrs infoAttrs({
|
2020-12-08 22:16:06 +02:00
|
|
|
{"lastModified", uint64_t(lastModified)},
|
2020-03-30 17:04:18 +03:00
|
|
|
{"etag", res.etag},
|
|
|
|
});
|
|
|
|
|
2023-06-07 15:26:30 +03:00
|
|
|
if (res.immutableUrl)
|
|
|
|
infoAttrs.emplace("immutableUrl", *res.immutableUrl);
|
|
|
|
|
2020-03-30 17:04:18 +03:00
|
|
|
getCache()->add(
|
2023-11-04 22:25:41 +02:00
|
|
|
*store,
|
2020-03-30 17:04:18 +03:00
|
|
|
inAttrs,
|
|
|
|
infoAttrs,
|
|
|
|
*unpackedStorePath,
|
2022-02-24 19:09:00 +02:00
|
|
|
locked);
|
2020-03-30 17:04:18 +03:00
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
return {
|
2023-10-20 20:50:21 +03:00
|
|
|
.storePath = std::move(*unpackedStorePath),
|
2023-06-07 15:26:30 +03:00
|
|
|
.lastModified = lastModified,
|
|
|
|
.immutableUrl = res.immutableUrl,
|
2020-03-30 17:04:18 +03:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-05-25 16:29:27 +03:00
|
|
|
// An input scheme corresponding to a curl-downloadable resource.
|
2020-10-16 02:35:24 +03:00
|
|
|
struct CurlInputScheme : InputScheme
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
2020-10-16 02:35:24 +03:00
|
|
|
const std::set<std::string> transportUrlSchemes = {"file", "http", "https"};
|
|
|
|
|
|
|
|
const bool hasTarballExtension(std::string_view path) const
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
2020-10-16 02:35:24 +03:00
|
|
|
return hasSuffix(path, ".zip") || hasSuffix(path, ".tar")
|
|
|
|
|| hasSuffix(path, ".tgz") || hasSuffix(path, ".tar.gz")
|
|
|
|
|| hasSuffix(path, ".tar.xz") || hasSuffix(path, ".tar.bz2")
|
|
|
|
|| hasSuffix(path, ".tar.zst");
|
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
|
2023-08-01 17:07:20 +03:00
|
|
|
virtual bool isValidURL(const ParsedURL & url, bool requireTree) const = 0;
|
2020-10-16 02:35:24 +03:00
|
|
|
|
2023-08-01 17:07:20 +03:00
|
|
|
std::optional<Input> inputFromURL(const ParsedURL & _url, bool requireTree) const override
|
2020-10-16 02:35:24 +03:00
|
|
|
{
|
2023-08-01 17:07:20 +03:00
|
|
|
if (!isValidURL(_url, requireTree))
|
2020-10-16 02:35:24 +03:00
|
|
|
return std::nullopt;
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
|
|
|
Input input;
|
2020-10-16 02:35:24 +03:00
|
|
|
|
2023-06-07 15:26:30 +03:00
|
|
|
auto url = _url;
|
|
|
|
|
|
|
|
url.scheme = parseUrlScheme(url.scheme).transport;
|
2020-10-16 02:35:24 +03:00
|
|
|
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
auto narHash = url.query.find("narHash");
|
|
|
|
if (narHash != url.query.end())
|
|
|
|
input.attrs.insert_or_assign("narHash", narHash->second);
|
2023-06-07 15:26:30 +03:00
|
|
|
|
|
|
|
if (auto i = get(url.query, "rev"))
|
|
|
|
input.attrs.insert_or_assign("rev", *i);
|
|
|
|
|
|
|
|
if (auto i = get(url.query, "revCount"))
|
|
|
|
if (auto n = string2Int<uint64_t>(*i))
|
|
|
|
input.attrs.insert_or_assign("revCount", *n);
|
|
|
|
|
|
|
|
url.query.erase("rev");
|
|
|
|
url.query.erase("revCount");
|
|
|
|
|
2023-10-30 16:14:27 +02:00
|
|
|
input.attrs.insert_or_assign("type", std::string { schemeName() });
|
2023-06-07 15:26:30 +03:00
|
|
|
input.attrs.insert_or_assign("url", url.to_string());
|
2020-03-30 17:04:18 +03:00
|
|
|
return input;
|
|
|
|
}
|
|
|
|
|
2023-10-30 16:14:27 +02:00
|
|
|
StringSet allowedAttrs() const override
|
2020-03-30 17:04:18 +03:00
|
|
|
{
|
2023-10-30 16:14:27 +02:00
|
|
|
return {
|
|
|
|
"type",
|
|
|
|
"url",
|
|
|
|
"narHash",
|
|
|
|
"name",
|
|
|
|
"unpack",
|
|
|
|
"rev",
|
|
|
|
"revCount",
|
|
|
|
"lastModified",
|
|
|
|
};
|
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
|
2023-10-30 16:14:27 +02:00
|
|
|
std::optional<Input> inputFromAttrs(const Attrs & attrs) const override
|
|
|
|
{
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
Input input;
|
|
|
|
input.attrs = attrs;
|
2020-10-16 02:35:24 +03:00
|
|
|
|
2022-02-24 19:09:00 +02:00
|
|
|
//input.locked = (bool) maybeGetStrAttr(input.attrs, "hash");
|
2020-03-30 17:04:18 +03:00
|
|
|
return input;
|
|
|
|
}
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
|
2022-12-07 13:58:58 +02:00
|
|
|
ParsedURL toURL(const Input & input) const override
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
{
|
|
|
|
auto url = parseURL(getStrAttr(input.attrs, "url"));
|
2022-12-07 13:58:58 +02:00
|
|
|
// NAR hashes are preferred over file hashes since tar/zip
|
|
|
|
// files don't have a canonical representation.
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
if (auto narHash = input.getNarHash())
|
2023-10-13 04:48:15 +03:00
|
|
|
url.query.insert_or_assign("narHash", narHash->to_string(HashFormat::SRI, true));
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
return url;
|
|
|
|
}
|
2020-10-16 02:35:24 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
struct FileInputScheme : CurlInputScheme
|
|
|
|
{
|
2023-10-30 16:14:27 +02:00
|
|
|
std::string_view schemeName() const override { return "file"; }
|
2020-10-16 02:35:24 +03:00
|
|
|
|
2023-08-01 17:07:20 +03:00
|
|
|
bool isValidURL(const ParsedURL & url, bool requireTree) const override
|
2020-10-16 02:35:24 +03:00
|
|
|
{
|
|
|
|
auto parsedUrlScheme = parseUrlScheme(url.scheme);
|
|
|
|
return transportUrlSchemes.count(std::string(parsedUrlScheme.transport))
|
|
|
|
&& (parsedUrlScheme.application
|
2023-10-30 16:14:27 +02:00
|
|
|
? parsedUrlScheme.application.value() == schemeName()
|
2023-08-01 17:07:20 +03:00
|
|
|
: (!requireTree && !hasTarballExtension(url.path)));
|
2020-10-16 02:35:24 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<StorePath, Input> fetch(ref<Store> store, const Input & input) override
|
|
|
|
{
|
|
|
|
auto file = downloadFile(store, getStrAttr(input.attrs, "url"), input.getName(), false);
|
|
|
|
return {std::move(file.storePath), input};
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct TarballInputScheme : CurlInputScheme
|
|
|
|
{
|
2023-10-30 16:14:27 +02:00
|
|
|
std::string_view schemeName() const override { return "tarball"; }
|
2020-10-16 02:35:24 +03:00
|
|
|
|
2023-08-01 17:07:20 +03:00
|
|
|
bool isValidURL(const ParsedURL & url, bool requireTree) const override
|
2020-10-16 02:35:24 +03:00
|
|
|
{
|
|
|
|
auto parsedUrlScheme = parseUrlScheme(url.scheme);
|
|
|
|
|
|
|
|
return transportUrlSchemes.count(std::string(parsedUrlScheme.transport))
|
|
|
|
&& (parsedUrlScheme.application
|
2023-10-30 16:14:27 +02:00
|
|
|
? parsedUrlScheme.application.value() == schemeName()
|
2023-08-01 17:07:20 +03:00
|
|
|
: (requireTree || hasTarballExtension(url.path)));
|
2020-10-16 02:35:24 +03:00
|
|
|
}
|
|
|
|
|
2023-06-07 15:26:30 +03:00
|
|
|
std::pair<StorePath, Input> fetch(ref<Store> store, const Input & _input) override
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
{
|
2023-06-07 15:26:30 +03:00
|
|
|
Input input(_input);
|
|
|
|
auto url = getStrAttr(input.attrs, "url");
|
|
|
|
auto result = downloadTarball(store, url, input.getName(), false);
|
|
|
|
|
|
|
|
if (result.immutableUrl) {
|
|
|
|
auto immutableInput = Input::fromURL(*result.immutableUrl);
|
|
|
|
// FIXME: would be nice to support arbitrary flakerefs
|
|
|
|
// here, e.g. git flakes.
|
|
|
|
if (immutableInput.getType() != "tarball")
|
|
|
|
throw Error("tarball 'Link' headers that redirect to non-tarball URLs are not supported");
|
|
|
|
input = immutableInput;
|
|
|
|
}
|
|
|
|
|
2023-08-22 20:29:25 +03:00
|
|
|
if (result.lastModified && !input.attrs.contains("lastModified"))
|
|
|
|
input.attrs.insert_or_assign("lastModified", uint64_t(result.lastModified));
|
|
|
|
|
2023-10-20 20:50:21 +03:00
|
|
|
return {result.storePath, std::move(input)};
|
Remove TreeInfo
The attributes previously stored in TreeInfo (narHash, revCount,
lastModified) are now stored in Input. This makes it less arbitrary
what attributes are stored where.
As a result, the lock file format has changed. An entry like
"info": {
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github"
},
is now stored as
"locked": {
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "b88ff468e9850410070d4e0ccd68c7011f15b2be",
"type": "github",
"lastModified": 1585405475,
"narHash": "sha256-bESW0n4KgPmZ0luxvwJ+UyATrC6iIltVCsGdLiphVeE="
},
The 'Input' class is now a dumb set of attributes. All the fetcher
implementations subclass InputScheme, not Input. This simplifies the
API.
Also, fix substitution of flake inputs. This was broken since lazy
flake fetching started using fetchTree internally.
2020-05-30 01:44:11 +03:00
|
|
|
}
|
2020-03-30 17:04:18 +03:00
|
|
|
};
|
|
|
|
|
2020-10-06 14:36:55 +03:00
|
|
|
static auto rTarballInputScheme = OnStartup([] { registerInputScheme(std::make_unique<TarballInputScheme>()); });
|
2020-10-16 02:35:24 +03:00
|
|
|
static auto rFileInputScheme = OnStartup([] { registerInputScheme(std::make_unique<FileInputScheme>()); });
|
2020-03-30 17:04:18 +03:00
|
|
|
|
|
|
|
}
|