2016-03-03 18:03:34 +01:00
|
|
|
|
#include "binary-cache-store.hh"
|
|
|
|
|
#include "download.hh"
|
2016-03-04 17:23:42 +01:00
|
|
|
|
#include "globals.hh"
|
2016-03-03 18:03:34 +01:00
|
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
|
|
class HttpBinaryCacheStore : public BinaryCacheStore
|
|
|
|
|
{
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
|
|
Path cacheUri;
|
|
|
|
|
|
2016-03-24 11:10:05 +01:00
|
|
|
|
Pool<Downloader> downloaders;
|
2016-03-03 18:03:34 +01:00
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
|
|
HttpBinaryCacheStore(std::shared_ptr<Store> localStore,
|
2016-03-04 17:08:30 +01:00
|
|
|
|
const Path & secretKeyFile, const Path & _cacheUri)
|
|
|
|
|
: BinaryCacheStore(localStore, secretKeyFile)
|
2016-03-03 18:03:34 +01:00
|
|
|
|
, cacheUri(_cacheUri)
|
2016-03-24 11:10:05 +01:00
|
|
|
|
, downloaders(
|
|
|
|
|
std::numeric_limits<size_t>::max(),
|
|
|
|
|
[]() { return makeDownloader(); })
|
2016-03-03 18:03:34 +01:00
|
|
|
|
{
|
|
|
|
|
if (cacheUri.back() == '/')
|
|
|
|
|
cacheUri.pop_back();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void init() override
|
|
|
|
|
{
|
|
|
|
|
// FIXME: do this lazily?
|
|
|
|
|
if (!fileExists("nix-cache-info"))
|
|
|
|
|
throw Error(format("‘%s’ does not appear to be a binary cache") % cacheUri);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool fileExists(const std::string & path) override
|
|
|
|
|
{
|
|
|
|
|
try {
|
2016-03-24 11:10:05 +01:00
|
|
|
|
auto downloader(downloaders.get());
|
2016-03-03 18:03:34 +01:00
|
|
|
|
DownloadOptions options;
|
|
|
|
|
options.showProgress = DownloadOptions::no;
|
|
|
|
|
options.head = true;
|
|
|
|
|
downloader->download(cacheUri + "/" + path, options);
|
|
|
|
|
return true;
|
|
|
|
|
} catch (DownloadError & e) {
|
2016-03-30 11:17:51 +02:00
|
|
|
|
/* S3 buckets return 403 if a file doesn't exist and the
|
|
|
|
|
bucket is unlistable, so treat 403 as 404. */
|
|
|
|
|
if (e.error == Downloader::NotFound || e.error == Downloader::Forbidden)
|
2016-03-03 18:03:34 +01:00
|
|
|
|
return false;
|
|
|
|
|
throw;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-03-15 12:11:27 +01:00
|
|
|
|
void upsertFile(const std::string & path, const std::string & data) override
|
2016-03-03 18:03:34 +01:00
|
|
|
|
{
|
|
|
|
|
throw Error("uploading to an HTTP binary cache is not supported");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::string getFile(const std::string & path) override
|
|
|
|
|
{
|
2016-03-24 11:10:05 +01:00
|
|
|
|
auto downloader(downloaders.get());
|
2016-03-03 18:03:34 +01:00
|
|
|
|
DownloadOptions options;
|
|
|
|
|
options.showProgress = DownloadOptions::no;
|
|
|
|
|
return downloader->download(cacheUri + "/" + path, options).data;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static RegisterStoreImplementation regStore([](const std::string & uri) -> std::shared_ptr<Store> {
|
|
|
|
|
if (std::string(uri, 0, 7) != "http://" &&
|
|
|
|
|
std::string(uri, 0, 8) != "https://") return 0;
|
|
|
|
|
auto store = std::make_shared<HttpBinaryCacheStore>(std::shared_ptr<Store>(0),
|
2016-03-04 17:23:42 +01:00
|
|
|
|
settings.get("binary-cache-secret-key-file", string("")),
|
2016-03-03 18:03:34 +01:00
|
|
|
|
uri);
|
|
|
|
|
store->init();
|
|
|
|
|
return store;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|