You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
973 B
C++
35 lines
973 B
C++
#include "webcc/rest_client.h"
|
|
#include "webcc/utility.h"
|
|
|
|
namespace webcc {
|
|
|
|
RestClient::RestClient(const std::string& host, const std::string& port,
|
|
std::size_t buffer_size)
|
|
: host_(host), port_(port), http_client_(buffer_size) {
|
|
AdjustHostPort(host_, port_);
|
|
}
|
|
|
|
bool RestClient::Request(const std::string& method, const std::string& url,
|
|
std::string&& content, std::size_t buffer_size) {
|
|
HttpRequest http_request(method, url, host_, port_);
|
|
|
|
http_request.SetHeader(http::headers::kAccept,
|
|
http::media_types::kApplicationJson);
|
|
|
|
if (!content.empty()) {
|
|
http_request.SetContent(std::move(content), true);
|
|
http_request.SetContentType(http::media_types::kApplicationJson,
|
|
http::charsets::kUtf8);
|
|
}
|
|
|
|
http_request.Prepare();
|
|
|
|
if (!http_client_.Request(http_request, buffer_size)) {
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
} // namespace webcc
|