1
0
Fork 0
mirror of https://github.com/HamletDuFromage/aio-switch-updater.git synced 2024-09-19 21:45:04 +01:00
AIO-switch-updater/include/download.hpp

18 lines
878 B
C++
Raw Normal View History

2020-09-20 01:21:28 +01:00
#pragma once
2021-09-11 14:48:13 +01:00
constexpr int ON = 1;
constexpr int OFF = 0;
2020-09-20 01:21:28 +01:00
2021-03-16 02:43:48 +00:00
#include <json.hpp>
2020-09-20 01:21:28 +01:00
namespace download {
2021-09-11 14:48:13 +01:00
long downloadFile(const std::string& url, std::vector<std::uint8_t>& res, const char* output = "", int api = OFF);
long downloadFile(const std::string& url, const char* output = "", int api = OFF);
std::vector<std::pair<std::string, std::string>> getLinks(const std::string& url);
std::vector<std::pair<std::string, std::string>> getLinksFromJson(const nlohmann::ordered_json& json_object);
std::string fetchTitle(const std::string& url);
long downloadPage(const std::string& url, std::string& res, const std::vector<std::string>& headers = {}, const std::string& body = "");
long getRequest(const std::string& url, nlohmann::ordered_json& res, const std::vector<std::string>& headers = {}, const std::string& body = "");
2021-09-11 14:48:13 +01:00
} // namespace download