6#include <unordered_map>
23using std::nouppercase;
24using std::ostringstream;
27using std::stringstream;
29using std::unordered_map;
47const string HTTPClient::HTTP_METHOD_GET =
"GET";
48const string HTTPClient::HTTP_METHOD_HEAD =
"HEAD";
49const string HTTPClient::HTTP_METHOD_POST =
"POST";
50const string HTTPClient::HTTP_METHOD_PUT =
"PUT";
51const string HTTPClient::HTTP_METHOD_DELETE =
"DELETE";
53string HTTPClient::urlEncode(
const string &value) {
55 ostringstream escaped;
59 for (string::const_iterator i = value.begin(), n = value.end(); i != n; ++i) {
60 string::value_type c = (*i);
63 if (Character::isAlphaNumeric(c) ==
true || c ==
'-' || c ==
'_' || c ==
'.' || c ==
'~') {
70 escaped <<
'%' << setw(2) << int((
unsigned char) c);
71 escaped << nouppercase;
78string HTTPClient::createHTTPRequestHeaders(
const string& hostName,
const string& method,
const string& relativeUrl,
const unordered_map<string, string>& getParameters,
const unordered_map<string, string>& postParameters,
const string& body) {
81 if (query.size() == 0) query+=
"?";
else query+=
"&";
85 string(
method +
" " + relativeUrl + query +
" HTTP/1.1\r\n") +
86 string(
"User-Agent: tdme2-httpclient\r\n") +
87 string(
"Host: " + hostName +
"\r\n") +
88 string(
"Connection: close\r\n");
92 request+=
"Authorization: Basic " + base64Pass +
"\r\n";
102 if (_body.size() >= 0) _body+=
"&";
108 request+=
"Content-Length: " + to_string(_body.size()) +
"\r\n\r\n";
122 if (lastChar ==
'\r' && currentChar ==
'\n') {
123 if (line.size() != 0) {
126 if (line.size() == 0)
break;
129 if (currentChar !=
'\r' && currentChar !=
'\n') {
132 lastChar = currentChar;
163 auto relativeUrl = StringTools::substring(
url,
string(
"http://").size());
165 auto slashIdx = relativeUrl.find(
'/');
166 auto hostName = relativeUrl;
167 if (slashIdx != -1) hostName = StringTools::substring(relativeUrl, 0, slashIdx);
168 relativeUrl = StringTools::substring(relativeUrl, hostName.size());
170 Console::println(
"HTTPClient::execute(): Hostname: " + hostName);
171 Console::println(
"HTTPClient::execute(): RelativeUrl: " + relativeUrl);
173 Console::print(
"HTTPClient::execute(): Resolving name to IP: " + hostName +
": ");
174 auto ip = Network::getIpByHostName(hostName);
175 if (ip.size() == 0) {
176 Console::println(
"HTTPClient::execute(): Failed");
179 Console::println(ip);
181 TCPSocket::create(socket, TCPSocket::determineIpVersion(ip));
184 socket.
write((
void*)request.data(), request.length());
186 char rawResponseBuf[16384];
187 auto rawResponseBytesRead = 0;
190 auto rawResponseBytesRead = socket.
read(rawResponseBuf,
sizeof(rawResponseBuf));
191 rawResponse.write(rawResponseBuf, rawResponseBytesRead);
199 Console::println(
"HTTPClient::execute(): performed HTTP request: HTTP status code: " + to_string(
httpStatusCode));
204 Console::println(
string(
"HTTPClient::execute(): performed HTTP request: FAILED: ") + exception.what());
void execute()
Execute HTTP request.
static const string HTTP_METHOD_POST
static const string HTTP_METHOD_PUT
unordered_map< string, string > getParameters
void parseHTTPResponseHeaders(stringstream &rawResponse, int16_t &httpStatusCode, vector< string > &httpHeader)
Parse HTTP response headers.
string createHTTPRequestHeaders(const string &hostName, const string &method, const string &relativeUrl, const unordered_map< string, string > &getParameters, const unordered_map< string, string > &postParameters, const string &body)
Create HTTP request headers.
unordered_map< string, string > postParameters
static string urlEncode(const string &value)
Returns a URL encoded representation of value.
vector< string > httpHeader
void reset()
Reset this HTTP client.
Network socket closed exception.
void shutdown()
shuts socket down for reading and writing
Class representing a TCP socket.
size_t read(void *buf, const size_t bytes)
Reads up to "bytes" bytes from socket.
size_t write(void *buf, const size_t bytes)
Writes up to "bytes" bytes to socket.
void connect(const string &ip, const unsigned int port)
Connects a socket to given IP and port.
Base64 encoding/decoding class.
const string & nextToken()
void tokenize(const string &str, const string &delimiters)
Tokenize.
std::exception Exception
Exception base class.