2024-07-18 06:32:27 +03:00
|
|
|
#include "binary-cache-store.hh"
|
|
|
|
|
|
|
|
namespace nix {
|
|
|
|
|
|
|
|
struct HttpBinaryCacheStoreConfig : virtual BinaryCacheStoreConfig
|
|
|
|
{
|
|
|
|
using BinaryCacheStoreConfig::BinaryCacheStoreConfig;
|
|
|
|
|
|
|
|
HttpBinaryCacheStoreConfig(std::string_view scheme, std::string_view _cacheUri, const Params & params);
|
|
|
|
|
|
|
|
Path cacheUri;
|
|
|
|
|
|
|
|
const std::string name() override
|
|
|
|
{
|
|
|
|
return "HTTP Binary Cache Store";
|
|
|
|
}
|
|
|
|
|
2024-07-16 06:26:39 +03:00
|
|
|
static std::set<std::string> uriSchemes()
|
|
|
|
{
|
|
|
|
static bool forceHttp = getEnv("_NIX_FORCE_HTTP") == "1";
|
|
|
|
auto ret = std::set<std::string>({"http", "https"});
|
|
|
|
if (forceHttp)
|
|
|
|
ret.insert("file");
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2024-07-18 06:32:27 +03:00
|
|
|
std::string doc() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|