1
0
mirror of synced 2024-11-15 03:27:40 +01:00
ImHex/lib/libimhex/source/helpers/http_requests_emscripten.cpp

59 lines
1.6 KiB
C++
Raw Normal View History

#if defined(OS_WEB)
#include <hex/helpers/http_requests.hpp>
namespace hex {
HttpRequest::HttpRequest(std::string method, std::string url) : m_method(std::move(method)), m_url(std::move(url)) {
2023-12-19 13:10:25 +01:00
emscripten_fetch_attr_init(&m_attr);
}
HttpRequest::HttpRequest(HttpRequest &&other) noexcept {
2023-12-19 13:10:25 +01:00
m_attr = other.m_attr;
2023-12-19 13:10:25 +01:00
m_method = std::move(other.m_method);
m_url = std::move(other.m_url);
m_headers = std::move(other.m_headers);
m_body = std::move(other.m_body);
}
HttpRequest& HttpRequest::operator=(HttpRequest &&other) noexcept {
2023-12-19 13:10:25 +01:00
m_attr = other.m_attr;
2023-12-19 13:10:25 +01:00
m_method = std::move(other.m_method);
m_url = std::move(other.m_url);
m_headers = std::move(other.m_headers);
m_body = std::move(other.m_body);
return *this;
}
HttpRequest::~HttpRequest() { }
void HttpRequest::setDefaultConfig() { }
std::future<HttpRequest::Result<std::vector<u8>>> HttpRequest::downloadFile() {
return std::async(std::launch::async, [this] {
std::vector<u8> response;
return this->executeImpl<std::vector<u8>>(response);
});
}
void HttpRequest::setProxyUrl(std::string proxy) {
hex::unused(proxy);
}
void HttpRequest::setProxyState(bool state) {
hex::unused(state);
}
void HttpRequest::checkProxyErrors() { }
int HttpRequest::progressCallback(void *contents, curl_off_t dlTotal, curl_off_t dlNow, curl_off_t ulTotal, curl_off_t ulNow) {
hex::unused(contents, dlTotal, dlNow, ulTotal, ulNow);
return -1;
}
}
#endif