#include "STDInclude.hpp" namespace Utils { const char* Cache::Urls[] = { "https://iw4xcachep26muba.onion.to", "https://iw4xcachep26muba.onion.link", /*"https://iw4xcachejnetuln.onion.to", "https://iw4xcachedjodc4y.onion.to", */ }; std::string Cache::ValidUrl; std::mutex Cache::CacheMutex; std::string Cache::GetStaticUrl(std::string path) { return Cache::Urls[0] + path; } std::string Cache::GetUrl(std::string url, std::string path) { return url + path; } std::string Cache::GetFile(std::string path, int timeout, std::string useragent) { std::lock_guard _(Cache::CacheMutex); if (Cache::ValidUrl.empty()) { for (int i = 0; i < ARRAY_SIZE(Cache::Urls); i++) { std::string result = Utils::WebIO(useragent, Cache::GetUrl(Cache::Urls[i], path)).setTimeout(timeout)->get(); if (!result.empty()) { Cache::ValidUrl = Cache::Urls[i]; return result; } } return ""; } else { return Utils::WebIO(useragent, Cache::GetUrl(Cache::ValidUrl, path)).setTimeout(timeout)->get(); } } void Cache::Uninitialize() { std::lock_guard _(Cache::CacheMutex); Cache::ValidUrl.clear(); } }