2023-07-20 09:15:18 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-07-20 14:01:51 +00:00
|
|
|
#include <thread>
|
2024-01-19 12:44:49 +00:00
|
|
|
#include <string_view>
|
2023-07-20 14:01:51 +00:00
|
|
|
|
2023-07-20 09:15:18 +00:00
|
|
|
#include "Common/Net/HTTPRequest.h"
|
2023-07-20 14:01:51 +00:00
|
|
|
|
|
|
|
#ifndef HTTPS_NOT_AVAILABLE
|
|
|
|
|
2023-07-20 09:25:27 +00:00
|
|
|
#include "ext/naett/naett.h"
|
|
|
|
|
|
|
|
namespace http {
|
|
|
|
|
|
|
|
// Really an asynchronous request.
|
2023-07-21 20:04:05 +00:00
|
|
|
class HTTPSRequest : public Request {
|
2023-07-20 09:25:27 +00:00
|
|
|
public:
|
2024-01-19 12:44:49 +00:00
|
|
|
HTTPSRequest(RequestMethod method, const std::string &url, const std::string &postData, const std::string &postMime, const Path &outfile, ProgressBarMode progressBarMode = ProgressBarMode::DELAYED, std::string_view name = "");
|
2023-07-21 20:04:05 +00:00
|
|
|
~HTTPSRequest();
|
2023-07-20 09:25:27 +00:00
|
|
|
|
|
|
|
void Start() override;
|
|
|
|
void Join() override;
|
|
|
|
|
|
|
|
// Also acts as a Poll.
|
|
|
|
bool Done() override;
|
|
|
|
bool Failed() const override { return failed_; }
|
|
|
|
|
|
|
|
// NOTE! The value of ResultCode is INVALID until Done() returns true.
|
|
|
|
int ResultCode() const override { return resultCode_; }
|
|
|
|
|
|
|
|
const Path &outfile() const override { return outfile_; }
|
|
|
|
|
|
|
|
// If not downloading to a file, access this to get the result.
|
|
|
|
Buffer &buffer() override { return buffer_; }
|
|
|
|
const Buffer &buffer() const override { return buffer_; }
|
|
|
|
|
|
|
|
void Cancel() override {
|
|
|
|
cancelled_ = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsCancelled() const override {
|
|
|
|
return cancelled_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
RequestMethod method_;
|
|
|
|
std::string postData_;
|
|
|
|
Buffer buffer_;
|
|
|
|
std::vector<std::string> responseHeaders_;
|
|
|
|
Path outfile_;
|
|
|
|
std::string postMime_;
|
|
|
|
int resultCode_ = 0;
|
|
|
|
bool completed_ = false;
|
|
|
|
bool failed_ = false;
|
|
|
|
bool cancelled_ = false;
|
|
|
|
bool joined_ = false;
|
|
|
|
|
|
|
|
// Naett state
|
|
|
|
naettReq *req_ = nullptr;
|
|
|
|
naettRes *res_ = nullptr;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace http
|
2023-07-20 14:01:51 +00:00
|
|
|
|
|
|
|
#endif // HTTPS_NOT_AVAILABLE
|