2020-04-08 15:12:22 +03:00
|
|
|
#include "filetransfer.hh"
|
2020-03-30 15:03:28 +03:00
|
|
|
#include "cache.hh"
|
|
|
|
#include "fetchers.hh"
|
2020-01-21 17:27:53 +02:00
|
|
|
#include "globals.hh"
|
|
|
|
#include "store-api.hh"
|
|
|
|
|
|
|
|
#include <nlohmann/json.hpp>
|
|
|
|
|
|
|
|
namespace nix::fetchers {
|
|
|
|
|
|
|
|
std::regex ownerRegex("[a-zA-Z][a-zA-Z0-9_-]*", std::regex::ECMAScript);
|
|
|
|
std::regex repoRegex("[a-zA-Z][a-zA-Z0-9_-]*", std::regex::ECMAScript);
|
|
|
|
|
|
|
|
struct GitHubInput : Input
|
|
|
|
{
|
|
|
|
std::string owner;
|
|
|
|
std::string repo;
|
|
|
|
std::optional<std::string> ref;
|
|
|
|
std::optional<Hash> rev;
|
|
|
|
|
2020-01-31 20:16:40 +02:00
|
|
|
std::string type() const override { return "github"; }
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
bool operator ==(const Input & other) const override
|
|
|
|
{
|
|
|
|
auto other2 = dynamic_cast<const GitHubInput *>(&other);
|
|
|
|
return
|
|
|
|
other2
|
|
|
|
&& owner == other2->owner
|
|
|
|
&& repo == other2->repo
|
|
|
|
&& rev == other2->rev
|
|
|
|
&& ref == other2->ref;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isImmutable() const override
|
|
|
|
{
|
2020-04-02 20:04:33 +03:00
|
|
|
return (bool) rev || narHash;
|
2020-01-21 17:27:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::optional<std::string> getRef() const override { return ref; }
|
|
|
|
|
|
|
|
std::optional<Hash> getRev() const override { return rev; }
|
|
|
|
|
2020-03-28 19:05:50 +02:00
|
|
|
ParsedURL toURL() const override
|
2020-01-21 17:27:53 +02:00
|
|
|
{
|
2020-03-28 19:05:50 +02:00
|
|
|
auto path = owner + "/" + repo;
|
2020-01-21 17:27:53 +02:00
|
|
|
assert(!(ref && rev));
|
2020-03-28 19:05:50 +02:00
|
|
|
if (ref) path += "/" + *ref;
|
|
|
|
if (rev) path += "/" + rev->to_string(Base16, false);
|
|
|
|
return ParsedURL {
|
|
|
|
.scheme = "github",
|
|
|
|
.path = path,
|
|
|
|
};
|
2020-01-21 17:27:53 +02:00
|
|
|
}
|
|
|
|
|
2020-01-31 20:16:40 +02:00
|
|
|
Attrs toAttrsInternal() const override
|
|
|
|
{
|
|
|
|
Attrs attrs;
|
|
|
|
attrs.emplace("owner", owner);
|
|
|
|
attrs.emplace("repo", repo);
|
|
|
|
if (ref)
|
|
|
|
attrs.emplace("ref", *ref);
|
|
|
|
if (rev)
|
|
|
|
attrs.emplace("rev", rev->gitRev());
|
|
|
|
return attrs;
|
|
|
|
}
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
void clone(const Path & destDir) const override
|
|
|
|
{
|
|
|
|
std::shared_ptr<const Input> input = inputFromURL(fmt("git+ssh://git@github.com/%s/%s.git", owner, repo));
|
|
|
|
input = input->applyOverrides(ref.value_or("master"), rev);
|
|
|
|
input->clone(destDir);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::pair<Tree, std::shared_ptr<const Input>> fetchTreeInternal(nix::ref<Store> store) const override
|
|
|
|
{
|
|
|
|
auto rev = this->rev;
|
2020-03-17 21:54:36 +02:00
|
|
|
auto ref = this->ref.value_or("master");
|
2020-01-21 17:27:53 +02:00
|
|
|
|
|
|
|
if (!rev) {
|
|
|
|
auto url = fmt("https://api.github.com/repos/%s/%s/commits/%s",
|
2020-03-17 21:54:36 +02:00
|
|
|
owner, repo, ref);
|
2020-03-18 15:08:25 +02:00
|
|
|
auto json = nlohmann::json::parse(
|
|
|
|
readFile(
|
|
|
|
store->toRealPath(
|
2020-03-18 16:14:23 +02:00
|
|
|
downloadFile(store, url, "source", false).storePath)));
|
2020-01-21 17:27:53 +02:00
|
|
|
rev = Hash(json["sha"], htSHA1);
|
|
|
|
debug("HEAD revision for '%s' is %s", url, rev->gitRev());
|
|
|
|
}
|
|
|
|
|
2020-03-17 21:54:36 +02:00
|
|
|
auto input = std::make_shared<GitHubInput>(*this);
|
|
|
|
input->ref = {};
|
|
|
|
input->rev = *rev;
|
|
|
|
|
|
|
|
Attrs immutableAttrs({
|
|
|
|
{"type", "git-tarball"},
|
|
|
|
{"rev", rev->gitRev()},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (auto res = getCache()->lookup(store, immutableAttrs)) {
|
|
|
|
return {
|
|
|
|
Tree{
|
|
|
|
.actualPath = store->toRealPath(res->second),
|
|
|
|
.storePath = std::move(res->second),
|
|
|
|
.info = TreeInfo {
|
|
|
|
.lastModified = getIntAttr(res->first, "lastModified"),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
input
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2020-01-21 17:27:53 +02:00
|
|
|
// FIXME: use regular /archive URLs instead? api.github.com
|
|
|
|
// might have stricter rate limits.
|
|
|
|
|
|
|
|
auto url = fmt("https://api.github.com/repos/%s/%s/tarball/%s",
|
|
|
|
owner, repo, rev->to_string(Base16, false));
|
|
|
|
|
|
|
|
std::string accessToken = settings.githubAccessToken.get();
|
|
|
|
if (accessToken != "")
|
|
|
|
url += "?access_token=" + accessToken;
|
|
|
|
|
2020-03-18 15:08:25 +02:00
|
|
|
auto tree = downloadTarball(store, url, "source", true);
|
2020-03-17 21:54:36 +02:00
|
|
|
|
|
|
|
getCache()->add(
|
|
|
|
store,
|
|
|
|
immutableAttrs,
|
2020-03-18 15:08:25 +02:00
|
|
|
{
|
|
|
|
{"rev", rev->gitRev()},
|
|
|
|
{"lastModified", *tree.info.lastModified}
|
|
|
|
},
|
|
|
|
tree.storePath,
|
2020-03-17 21:54:36 +02:00
|
|
|
true);
|
2020-01-21 17:27:53 +02:00
|
|
|
|
2020-03-18 15:08:25 +02:00
|
|
|
return {std::move(tree), input};
|
2020-01-21 17:27:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
std::shared_ptr<const Input> applyOverrides(
|
|
|
|
std::optional<std::string> ref,
|
|
|
|
std::optional<Hash> rev) const override
|
|
|
|
{
|
|
|
|
if (!ref && !rev) return shared_from_this();
|
|
|
|
|
|
|
|
auto res = std::make_shared<GitHubInput>(*this);
|
|
|
|
|
|
|
|
if (ref) res->ref = ref;
|
|
|
|
if (rev) res->rev = rev;
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
struct GitHubInputScheme : InputScheme
|
|
|
|
{
|
|
|
|
std::unique_ptr<Input> inputFromURL(const ParsedURL & url) override
|
|
|
|
{
|
|
|
|
if (url.scheme != "github") return nullptr;
|
|
|
|
|
|
|
|
auto path = tokenizeString<std::vector<std::string>>(url.path, "/");
|
|
|
|
auto input = std::make_unique<GitHubInput>();
|
|
|
|
|
|
|
|
if (path.size() == 2) {
|
|
|
|
} else if (path.size() == 3) {
|
|
|
|
if (std::regex_match(path[2], revRegex))
|
|
|
|
input->rev = Hash(path[2], htSHA1);
|
|
|
|
else if (std::regex_match(path[2], refRegex))
|
|
|
|
input->ref = path[2];
|
|
|
|
else
|
|
|
|
throw BadURL("in GitHub URL '%s', '%s' is not a commit hash or branch/tag name", url.url, path[2]);
|
|
|
|
} else
|
|
|
|
throw BadURL("GitHub URL '%s' is invalid", url.url);
|
|
|
|
|
|
|
|
for (auto &[name, value] : url.query) {
|
|
|
|
if (name == "rev") {
|
|
|
|
if (input->rev)
|
|
|
|
throw BadURL("GitHub URL '%s' contains multiple commit hashes", url.url);
|
|
|
|
input->rev = Hash(value, htSHA1);
|
|
|
|
}
|
|
|
|
else if (name == "ref") {
|
|
|
|
if (!std::regex_match(value, refRegex))
|
|
|
|
throw BadURL("GitHub URL '%s' contains an invalid branch/tag name", url.url);
|
|
|
|
if (input->ref)
|
|
|
|
throw BadURL("GitHub URL '%s' contains multiple branch/tag names", url.url);
|
|
|
|
input->ref = value;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (input->ref && input->rev)
|
|
|
|
throw BadURL("GitHub URL '%s' contains both a commit hash and a branch/tag name", url.url);
|
|
|
|
|
|
|
|
input->owner = path[0];
|
|
|
|
input->repo = path[1];
|
|
|
|
|
|
|
|
return input;
|
|
|
|
}
|
2020-01-31 20:16:40 +02:00
|
|
|
|
2020-03-17 21:54:36 +02:00
|
|
|
std::unique_ptr<Input> inputFromAttrs(const Attrs & attrs) override
|
2020-01-31 20:16:40 +02:00
|
|
|
{
|
|
|
|
if (maybeGetStrAttr(attrs, "type") != "github") return {};
|
2020-01-31 20:35:28 +02:00
|
|
|
|
|
|
|
for (auto & [name, value] : attrs)
|
|
|
|
if (name != "type" && name != "owner" && name != "repo" && name != "ref" && name != "rev")
|
|
|
|
throw Error("unsupported GitHub input attribute '%s'", name);
|
|
|
|
|
2020-01-31 20:16:40 +02:00
|
|
|
auto input = std::make_unique<GitHubInput>();
|
|
|
|
input->owner = getStrAttr(attrs, "owner");
|
|
|
|
input->repo = getStrAttr(attrs, "repo");
|
|
|
|
input->ref = maybeGetStrAttr(attrs, "ref");
|
|
|
|
if (auto rev = maybeGetStrAttr(attrs, "rev"))
|
|
|
|
input->rev = Hash(*rev, htSHA1);
|
|
|
|
return input;
|
|
|
|
}
|
2020-01-21 17:27:53 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
static auto r1 = OnStartup([] { registerInputScheme(std::make_unique<GitHubInputScheme>()); });
|
|
|
|
|
|
|
|
}
|