mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
9298065cef
CPR has features disabled and PCRE is fully disabled until updated to new code.
45 lines
2.0 KiB
C++
45 lines
2.0 KiB
C++
#include "cpr/response.h"
|
|
|
|
namespace cpr {
|
|
|
|
Response::Response(std::shared_ptr<CurlHolder> curl, std::string&& p_text, std::string&& p_header_string, Cookies&& p_cookies = Cookies{}, Error&& p_error = Error{}) : curl_(std::move(curl)), text(std::move(p_text)), cookies(std::move(p_cookies)), error(std::move(p_error)), raw_header(std::move(p_header_string)) {
|
|
header = cpr::util::parseHeader(raw_header, &status_line, &reason);
|
|
assert(curl_);
|
|
assert(curl_->handle);
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_RESPONSE_CODE, &status_code);
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_TOTAL_TIME, &elapsed);
|
|
char* url_string{nullptr};
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_EFFECTIVE_URL, &url_string);
|
|
url = Url(url_string);
|
|
#if LIBCURL_VERSION_NUM >= 0x073700 // 7.55.0
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_SIZE_DOWNLOAD_T, &downloaded_bytes);
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_SIZE_UPLOAD_T, &uploaded_bytes);
|
|
#else
|
|
double downloaded_bytes_double, uploaded_bytes_double;
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_SIZE_DOWNLOAD, &downloaded_bytes_double);
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_SIZE_UPLOAD, &uploaded_bytes_double);
|
|
downloaded_bytes = downloaded_bytes_double;
|
|
uploaded_bytes = uploaded_bytes_double;
|
|
#endif
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_REDIRECT_COUNT, &redirect_count);
|
|
}
|
|
|
|
std::vector<CertInfo> Response::GetCertInfos() {
|
|
assert(curl_);
|
|
assert(curl_->handle);
|
|
curl_certinfo* ci{nullptr};
|
|
curl_easy_getinfo(curl_->handle, CURLINFO_CERTINFO, &ci);
|
|
|
|
std::vector<CertInfo> cert_infos;
|
|
for (int i = 0; i < ci->num_of_certs; i++) {
|
|
CertInfo cert_info;
|
|
// NOLINTNEXTLINE (cppcoreguidelines-pro-bounds-pointer-arithmetic)
|
|
for (curl_slist* slist = ci->certinfo[i]; slist; slist = slist->next) {
|
|
cert_info.emplace_back(std::string{slist->data});
|
|
}
|
|
cert_infos.emplace_back(cert_info);
|
|
}
|
|
return cert_infos;
|
|
}
|
|
} // namespace cpr
|