2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
|
|
|
/* http_client.cpp */
|
|
|
|
/*************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
2017-08-27 12:16:55 +00:00
|
|
|
/* https://godotengine.org */
|
2014-02-10 01:10:30 +00:00
|
|
|
/*************************************************************************/
|
2018-01-01 13:40:08 +00:00
|
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
2014-02-10 01:10:30 +00:00
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/*************************************************************************/
|
2018-01-04 23:50:27 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
#include "http_client.h"
|
2014-04-29 00:56:43 +00:00
|
|
|
#include "io/stream_peer_ssl.h"
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
const char *HTTPClient::_methods[METHOD_MAX] = {
|
|
|
|
"GET",
|
|
|
|
"HEAD",
|
|
|
|
"POST",
|
|
|
|
"PUT",
|
|
|
|
"DELETE",
|
|
|
|
"OPTIONS",
|
|
|
|
"TRACE",
|
|
|
|
"CONNECT",
|
|
|
|
"PATCH"
|
|
|
|
};
|
|
|
|
|
2017-10-26 01:39:41 +00:00
|
|
|
#ifndef JAVASCRIPT_ENABLED
|
2017-03-05 15:44:50 +00:00
|
|
|
Error HTTPClient::connect_to_host(const String &p_host, int p_port, bool p_ssl, bool p_verify_host) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
close();
|
2017-12-12 19:02:25 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
conn_port = p_port;
|
|
|
|
conn_host = p_host;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
ssl = p_ssl;
|
|
|
|
ssl_verify_host = p_verify_host;
|
|
|
|
|
|
|
|
String host_lower = conn_host.to_lower();
|
|
|
|
if (host_lower.begins_with("http://")) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-15 14:32:44 +00:00
|
|
|
conn_host = conn_host.substr(7, conn_host.length() - 7);
|
2017-12-12 19:02:25 +00:00
|
|
|
} else if (host_lower.begins_with("https://")) {
|
|
|
|
|
|
|
|
ssl = true;
|
2017-12-15 14:32:44 +00:00
|
|
|
conn_host = conn_host.substr(8, conn_host.length() - 8);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
ERR_FAIL_COND_V(conn_host.length() < HOST_MIN_LEN, ERR_INVALID_PARAMETER);
|
|
|
|
|
|
|
|
if (conn_port < 0) {
|
|
|
|
if (ssl) {
|
|
|
|
conn_port = PORT_HTTPS;
|
|
|
|
} else {
|
|
|
|
conn_port = PORT_HTTP;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
connection = tcp_connection;
|
2014-04-29 00:56:43 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
if (conn_host.is_valid_ip_address()) {
|
2017-12-12 19:02:25 +00:00
|
|
|
// Host contains valid IP
|
2017-03-05 15:44:50 +00:00
|
|
|
Error err = tcp_connection->connect_to_host(IP_Address(conn_host), p_port);
|
2014-02-10 01:10:30 +00:00
|
|
|
if (err) {
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CANT_CONNECT;
|
2014-02-10 01:10:30 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTING;
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-12-12 19:02:25 +00:00
|
|
|
// Host contains hostname and needs to be resolved to IP
|
2017-03-05 15:44:50 +00:00
|
|
|
resolving = IP::get_singleton()->resolve_hostname_queue_item(conn_host);
|
|
|
|
status = STATUS_RESOLVING;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void HTTPClient::set_connection(const Ref<StreamPeer> &p_connection) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
connection = p_connection;
|
|
|
|
status = STATUS_CONNECTED;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-04-17 04:23:34 +00:00
|
|
|
Ref<StreamPeer> HTTPClient::get_connection() const {
|
|
|
|
|
|
|
|
return connection;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error HTTPClient::request_raw(Method p_method, const String &p_url, const Vector<String> &p_headers, const PoolVector<uint8_t> &p_body) {
|
2016-05-04 17:49:01 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX_V(p_method, METHOD_MAX, ERR_INVALID_PARAMETER);
|
2017-12-12 19:02:25 +00:00
|
|
|
ERR_FAIL_COND_V(!p_url.begins_with("/"), ERR_INVALID_PARAMETER);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(status != STATUS_CONNECTED, ERR_INVALID_PARAMETER);
|
|
|
|
ERR_FAIL_COND_V(connection.is_null(), ERR_INVALID_DATA);
|
2016-05-04 17:49:01 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String request = String(_methods[p_method]) + " " + p_url + " HTTP/1.1\r\n";
|
2017-12-12 19:02:25 +00:00
|
|
|
if ((ssl && conn_port == PORT_HTTPS) || (!ssl && conn_port == PORT_HTTP)) {
|
|
|
|
// Don't append the standard ports
|
2017-06-13 20:58:23 +00:00
|
|
|
request += "Host: " + conn_host + "\r\n";
|
|
|
|
} else {
|
|
|
|
request += "Host: " + conn_host + ":" + itos(conn_port) + "\r\n";
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
bool add_clen = p_body.size() > 0;
|
|
|
|
for (int i = 0; i < p_headers.size(); i++) {
|
|
|
|
request += p_headers[i] + "\r\n";
|
|
|
|
if (add_clen && p_headers[i].find("Content-Length:") == 0) {
|
|
|
|
add_clen = false;
|
2016-05-04 17:49:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (add_clen) {
|
2017-03-05 15:44:50 +00:00
|
|
|
request += "Content-Length: " + itos(p_body.size()) + "\r\n";
|
2017-12-12 19:02:25 +00:00
|
|
|
// Should it add utf8 encoding?
|
2016-05-04 17:49:01 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
request += "\r\n";
|
|
|
|
CharString cs = request.utf8();
|
2016-05-21 13:29:25 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<uint8_t> data;
|
2017-12-12 19:02:25 +00:00
|
|
|
data.resize(cs.length());
|
|
|
|
{
|
|
|
|
PoolVector<uint8_t>::Write data_write = data.write();
|
|
|
|
for (int i = 0; i < cs.length(); i++) {
|
|
|
|
data_write[i] = cs[i];
|
|
|
|
}
|
2016-05-04 17:49:01 +00:00
|
|
|
}
|
2017-12-12 19:02:25 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
data.append_array(p_body);
|
2016-05-04 17:49:01 +00:00
|
|
|
|
2017-01-07 21:25:37 +00:00
|
|
|
PoolVector<uint8_t>::Read r = data.read();
|
2016-05-04 17:49:01 +00:00
|
|
|
Error err = connection->put_data(&r[0], data.size());
|
|
|
|
|
|
|
|
if (err) {
|
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2016-05-04 17:49:01 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_REQUESTING;
|
2016-05-04 17:49:01 +00:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
2016-04-17 04:23:34 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error HTTPClient::request(Method p_method, const String &p_url, const Vector<String> &p_headers, const String &p_body) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_INDEX_V(p_method, METHOD_MAX, ERR_INVALID_PARAMETER);
|
2017-12-12 19:02:25 +00:00
|
|
|
ERR_FAIL_COND_V(!p_url.begins_with("/"), ERR_INVALID_PARAMETER);
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(status != STATUS_CONNECTED, ERR_INVALID_PARAMETER);
|
|
|
|
ERR_FAIL_COND_V(connection.is_null(), ERR_INVALID_DATA);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String request = String(_methods[p_method]) + " " + p_url + " HTTP/1.1\r\n";
|
2017-12-12 19:02:25 +00:00
|
|
|
if ((ssl && conn_port == PORT_HTTPS) || (!ssl && conn_port == PORT_HTTP)) {
|
|
|
|
// Don't append the standard ports
|
2017-06-13 20:58:23 +00:00
|
|
|
request += "Host: " + conn_host + "\r\n";
|
|
|
|
} else {
|
|
|
|
request += "Host: " + conn_host + ":" + itos(conn_port) + "\r\n";
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
bool add_clen = p_body.length() > 0;
|
|
|
|
for (int i = 0; i < p_headers.size(); i++) {
|
|
|
|
request += p_headers[i] + "\r\n";
|
|
|
|
if (add_clen && p_headers[i].find("Content-Length:") == 0) {
|
|
|
|
add_clen = false;
|
2014-04-05 21:50:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (add_clen) {
|
2017-03-05 15:44:50 +00:00
|
|
|
request += "Content-Length: " + itos(p_body.utf8().length()) + "\r\n";
|
2017-12-12 19:02:25 +00:00
|
|
|
// Should it add utf8 encoding?
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
request += "\r\n";
|
|
|
|
request += p_body;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
CharString cs = request.utf8();
|
|
|
|
Error err = connection->put_data((const uint8_t *)cs.ptr(), cs.length());
|
2014-02-10 01:10:30 +00:00
|
|
|
if (err) {
|
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2014-02-10 01:10:30 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_REQUESTING;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool HTTPClient::has_response() const {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
return response_headers.size() != 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool HTTPClient::is_response_chunked() const {
|
|
|
|
|
|
|
|
return chunked;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HTTPClient::get_response_code() const {
|
|
|
|
|
|
|
|
return response_num;
|
|
|
|
}
|
2016-05-04 17:49:01 +00:00
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
Error HTTPClient::get_response_headers(List<String> *r_response) {
|
|
|
|
|
|
|
|
if (!response_headers.size())
|
|
|
|
return ERR_INVALID_PARAMETER;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < response_headers.size(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
r_response->push_back(response_headers[i]);
|
|
|
|
}
|
|
|
|
|
|
|
|
response_headers.clear();
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
void HTTPClient::close() {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (tcp_connection->get_status() != StreamPeerTCP::STATUS_NONE)
|
2017-01-14 14:07:57 +00:00
|
|
|
tcp_connection->disconnect_from_host();
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
connection.unref();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_DISCONNECTED;
|
|
|
|
if (resolving != IP::RESOLVER_INVALID_ID) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
IP::get_singleton()->erase_resolve_item(resolving);
|
2017-03-05 15:44:50 +00:00
|
|
|
resolving = IP::RESOLVER_INVALID_ID;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
response_headers.clear();
|
|
|
|
response_str.clear();
|
2017-03-05 15:44:50 +00:00
|
|
|
body_size = 0;
|
|
|
|
body_left = 0;
|
|
|
|
chunk_left = 0;
|
|
|
|
response_num = 0;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error HTTPClient::poll() {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
switch (status) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
case STATUS_RESOLVING: {
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(resolving == IP::RESOLVER_INVALID_ID, ERR_BUG);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
IP::ResolverStatus rstatus = IP::get_singleton()->get_resolve_item_status(resolving);
|
2017-03-05 15:44:50 +00:00
|
|
|
switch (rstatus) {
|
|
|
|
case IP::RESOLVER_STATUS_WAITING:
|
2017-12-12 19:02:25 +00:00
|
|
|
return OK; // Still resolving
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
case IP::RESOLVER_STATUS_DONE: {
|
|
|
|
|
|
|
|
IP_Address host = IP::get_singleton()->get_resolve_item_address(resolving);
|
2017-03-05 15:44:50 +00:00
|
|
|
Error err = tcp_connection->connect_to_host(host, conn_port);
|
2014-02-10 01:10:30 +00:00
|
|
|
IP::get_singleton()->erase_resolve_item(resolving);
|
2017-03-05 15:44:50 +00:00
|
|
|
resolving = IP::RESOLVER_INVALID_ID;
|
2014-02-10 01:10:30 +00:00
|
|
|
if (err) {
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CANT_CONNECT;
|
2014-02-10 01:10:30 +00:00
|
|
|
return err;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTING;
|
2014-02-10 01:10:30 +00:00
|
|
|
} break;
|
|
|
|
case IP::RESOLVER_STATUS_NONE:
|
|
|
|
case IP::RESOLVER_STATUS_ERROR: {
|
|
|
|
|
|
|
|
IP::get_singleton()->erase_resolve_item(resolving);
|
2017-03-05 15:44:50 +00:00
|
|
|
resolving = IP::RESOLVER_INVALID_ID;
|
2014-02-10 01:10:30 +00:00
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CANT_RESOLVE;
|
2014-02-10 01:10:30 +00:00
|
|
|
return ERR_CANT_RESOLVE;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case STATUS_CONNECTING: {
|
|
|
|
|
|
|
|
StreamPeerTCP::Status s = tcp_connection->get_status();
|
2017-03-05 15:44:50 +00:00
|
|
|
switch (s) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
case StreamPeerTCP::STATUS_CONNECTING: {
|
2017-12-12 19:02:25 +00:00
|
|
|
return OK;
|
2014-02-10 01:10:30 +00:00
|
|
|
} break;
|
|
|
|
case StreamPeerTCP::STATUS_CONNECTED: {
|
2014-04-29 00:56:43 +00:00
|
|
|
if (ssl) {
|
|
|
|
Ref<StreamPeerSSL> ssl = StreamPeerSSL::create();
|
2018-03-04 00:22:59 +00:00
|
|
|
Error err = ssl->connect_to_stream(tcp_connection, ssl_verify_host, conn_host);
|
2017-03-05 15:44:50 +00:00
|
|
|
if (err != OK) {
|
2014-04-29 00:56:43 +00:00
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_SSL_HANDSHAKE_ERROR;
|
2014-04-29 00:56:43 +00:00
|
|
|
return ERR_CANT_CONNECT;
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
connection = ssl;
|
2014-04-29 00:56:43 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTED;
|
2014-02-10 01:10:30 +00:00
|
|
|
return OK;
|
|
|
|
} break;
|
|
|
|
case StreamPeerTCP::STATUS_ERROR:
|
|
|
|
case StreamPeerTCP::STATUS_NONE: {
|
|
|
|
|
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CANT_CONNECT;
|
2014-02-10 01:10:30 +00:00
|
|
|
return ERR_CANT_CONNECT;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
} break;
|
|
|
|
case STATUS_CONNECTED: {
|
2017-12-12 19:02:25 +00:00
|
|
|
// Connection established, requests can now be made
|
2014-02-10 01:10:30 +00:00
|
|
|
return OK;
|
|
|
|
} break;
|
|
|
|
case STATUS_REQUESTING: {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (true) {
|
2014-02-10 01:10:30 +00:00
|
|
|
uint8_t byte;
|
2017-03-05 15:44:50 +00:00
|
|
|
int rec = 0;
|
|
|
|
Error err = _get_http_data(&byte, 1, rec);
|
|
|
|
if (err != OK) {
|
2014-02-10 01:10:30 +00:00
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2014-02-10 01:10:30 +00:00
|
|
|
return ERR_CONNECTION_ERROR;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (rec == 0)
|
2017-12-12 19:02:25 +00:00
|
|
|
return OK; // Still requesting, keep trying!
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
response_str.push_back(byte);
|
|
|
|
int rs = response_str.size();
|
|
|
|
if (
|
2017-03-05 15:44:50 +00:00
|
|
|
(rs >= 2 && response_str[rs - 2] == '\n' && response_str[rs - 1] == '\n') ||
|
|
|
|
(rs >= 4 && response_str[rs - 4] == '\r' && response_str[rs - 3] == '\n' && response_str[rs - 2] == '\r' && response_str[rs - 1] == '\n')) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
// End of response, parse.
|
2014-02-10 01:10:30 +00:00
|
|
|
response_str.push_back(0);
|
|
|
|
String response;
|
2017-03-05 15:44:50 +00:00
|
|
|
response.parse_utf8((const char *)response_str.ptr());
|
2014-02-10 01:10:30 +00:00
|
|
|
Vector<String> responses = response.split("\n");
|
2017-03-05 15:44:50 +00:00
|
|
|
body_size = 0;
|
|
|
|
chunked = false;
|
|
|
|
body_left = 0;
|
|
|
|
chunk_left = 0;
|
2016-04-27 19:07:49 +00:00
|
|
|
response_str.clear();
|
2014-02-10 01:10:30 +00:00
|
|
|
response_headers.clear();
|
|
|
|
response_num = RESPONSE_OK;
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
for (int i = 0; i < responses.size(); i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2016-02-19 20:12:16 +00:00
|
|
|
String header = responses[i].strip_edges();
|
|
|
|
String s = header.to_lower();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (s.length() == 0)
|
2016-03-08 23:00:52 +00:00
|
|
|
continue;
|
2016-01-11 10:47:42 +00:00
|
|
|
if (s.begins_with("content-length:")) {
|
2017-03-05 15:44:50 +00:00
|
|
|
body_size = s.substr(s.find(":") + 1, s.length()).strip_edges().to_int();
|
|
|
|
body_left = body_size;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2016-01-11 10:47:42 +00:00
|
|
|
if (s.begins_with("transfer-encoding:")) {
|
2017-03-05 15:44:50 +00:00
|
|
|
String encoding = header.substr(header.find(":") + 1, header.length()).strip_edges();
|
|
|
|
if (encoding == "chunked") {
|
|
|
|
chunked = true;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (i == 0 && responses[i].begins_with("HTTP")) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
String num = responses[i].get_slicec(' ', 1);
|
|
|
|
response_num = num.to_int();
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
2016-02-19 20:12:16 +00:00
|
|
|
response_headers.push_back(header);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (body_size == 0 && !chunked) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
status = STATUS_CONNECTED; // Ready for new requests
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_BODY;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
}
|
2017-12-12 19:02:25 +00:00
|
|
|
// Wait for response
|
2014-02-10 01:10:30 +00:00
|
|
|
return OK;
|
|
|
|
} break;
|
|
|
|
case STATUS_DISCONNECTED: {
|
|
|
|
return ERR_UNCONFIGURED;
|
|
|
|
} break;
|
|
|
|
case STATUS_CONNECTION_ERROR: {
|
|
|
|
return ERR_CONNECTION_ERROR;
|
|
|
|
} break;
|
|
|
|
case STATUS_CANT_CONNECT: {
|
|
|
|
return ERR_CANT_CONNECT;
|
|
|
|
} break;
|
|
|
|
case STATUS_CANT_RESOLVE: {
|
|
|
|
return ERR_CANT_RESOLVE;
|
|
|
|
} break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
int HTTPClient::get_response_body_length() const {
|
|
|
|
|
|
|
|
return body_size;
|
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
PoolByteArray HTTPClient::read_response_body_chunk() {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
ERR_FAIL_COND_V(status != STATUS_BODY, PoolByteArray());
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error err = OK;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
if (chunked) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
while (true) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (chunk_left == 0) {
|
2017-12-12 19:02:25 +00:00
|
|
|
// Reading length
|
2014-02-10 01:10:30 +00:00
|
|
|
uint8_t b;
|
2017-03-05 15:44:50 +00:00
|
|
|
int rec = 0;
|
|
|
|
err = _get_http_data(&b, 1, rec);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (rec == 0)
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
chunk.push_back(b);
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (chunk.size() > 32) {
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_PRINT("HTTP Invalid chunk hex len");
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (chunk.size() > 2 && chunk[chunk.size() - 2] == '\r' && chunk[chunk.size() - 1] == '\n') {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int len = 0;
|
|
|
|
for (int i = 0; i < chunk.size() - 2; i++) {
|
2014-02-10 01:10:30 +00:00
|
|
|
char c = chunk[i];
|
2017-03-05 15:44:50 +00:00
|
|
|
int v = 0;
|
|
|
|
if (c >= '0' && c <= '9')
|
|
|
|
v = c - '0';
|
|
|
|
else if (c >= 'a' && c <= 'f')
|
|
|
|
v = c - 'a' + 10;
|
|
|
|
else if (c >= 'A' && c <= 'F')
|
|
|
|
v = c - 'A' + 10;
|
2014-02-10 01:10:30 +00:00
|
|
|
else {
|
|
|
|
ERR_PRINT("HTTP Chunk len not in hex!!");
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
len <<= 4;
|
|
|
|
len |= v;
|
|
|
|
if (len > (1 << 24)) {
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_PRINT("HTTP Chunk too big!! >16mb");
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (len == 0) {
|
2017-12-12 19:02:25 +00:00
|
|
|
// End reached!
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTED;
|
2014-02-10 01:10:30 +00:00
|
|
|
chunk.clear();
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
chunk_left = len + 2;
|
2014-02-10 01:10:30 +00:00
|
|
|
chunk.resize(chunk_left);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int rec = 0;
|
|
|
|
err = _get_http_data(&chunk[chunk.size() - chunk_left], chunk_left, rec);
|
|
|
|
if (rec == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
chunk_left -= rec;
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (chunk_left == 0) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (chunk[chunk.size() - 2] != '\r' || chunk[chunk.size() - 1] != '\n') {
|
2014-02-10 01:10:30 +00:00
|
|
|
ERR_PRINT("HTTP Invalid chunk terminator (not \\r\\n)");
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
PoolByteArray ret;
|
2017-03-05 15:44:50 +00:00
|
|
|
ret.resize(chunk.size() - 2);
|
2014-02-10 01:10:30 +00:00
|
|
|
{
|
2017-01-11 03:52:51 +00:00
|
|
|
PoolByteArray::Write w = ret.write();
|
2017-03-05 15:44:50 +00:00
|
|
|
copymem(w.ptr(), chunk.ptr(), chunk.size() - 2);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
chunk.clear();
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
2015-02-11 10:57:39 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
int to_read = MIN(body_left, read_chunk_size);
|
2017-01-11 03:52:51 +00:00
|
|
|
PoolByteArray ret;
|
2015-02-11 10:57:39 +00:00
|
|
|
ret.resize(to_read);
|
2014-08-21 15:08:53 +00:00
|
|
|
int _offset = 0;
|
2015-02-11 10:57:39 +00:00
|
|
|
while (to_read > 0) {
|
2017-03-05 15:44:50 +00:00
|
|
|
int rec = 0;
|
2017-02-07 09:21:17 +00:00
|
|
|
{
|
|
|
|
PoolByteArray::Write w = ret.write();
|
2017-03-05 15:44:50 +00:00
|
|
|
err = _get_http_data(w.ptr() + _offset, to_read, rec);
|
2017-02-07 09:21:17 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
if (rec > 0) {
|
|
|
|
body_left -= rec;
|
|
|
|
to_read -= rec;
|
2014-08-21 15:08:53 +00:00
|
|
|
_offset += rec;
|
2015-02-11 10:57:39 +00:00
|
|
|
} else {
|
2017-12-12 19:02:25 +00:00
|
|
|
if (to_read > 0) // Ended up reading less
|
2015-02-11 10:57:39 +00:00
|
|
|
ret.resize(_offset);
|
|
|
|
break;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
if (body_left == 0) {
|
|
|
|
status = STATUS_CONNECTED;
|
2014-08-21 15:08:53 +00:00
|
|
|
}
|
|
|
|
return ret;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
if (err != OK) {
|
2014-02-10 01:10:30 +00:00
|
|
|
close();
|
2017-03-05 15:44:50 +00:00
|
|
|
if (err == ERR_FILE_EOF) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
status = STATUS_DISCONNECTED; // Server disconnected
|
2014-02-10 01:10:30 +00:00
|
|
|
} else {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTION_ERROR;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
2017-03-05 15:44:50 +00:00
|
|
|
} else if (body_left == 0 && !chunked) {
|
2014-02-10 01:10:30 +00:00
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
status = STATUS_CONNECTED;
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
2017-01-11 03:52:51 +00:00
|
|
|
return PoolByteArray();
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
HTTPClient::Status HTTPClient::get_status() const {
|
|
|
|
|
|
|
|
return status;
|
|
|
|
}
|
|
|
|
|
2014-04-29 00:56:43 +00:00
|
|
|
void HTTPClient::set_blocking_mode(bool p_enable) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
blocking = p_enable;
|
2014-04-29 00:56:43 +00:00
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
bool HTTPClient::is_blocking_mode_enabled() const {
|
2014-04-29 00:56:43 +00:00
|
|
|
|
|
|
|
return blocking;
|
|
|
|
}
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error HTTPClient::_get_http_data(uint8_t *p_buffer, int p_bytes, int &r_received) {
|
2015-02-11 10:57:39 +00:00
|
|
|
|
|
|
|
if (blocking) {
|
|
|
|
|
2017-03-05 15:44:50 +00:00
|
|
|
Error err = connection->get_data(p_buffer, p_bytes);
|
|
|
|
if (err == OK)
|
|
|
|
r_received = p_bytes;
|
2015-02-11 10:57:39 +00:00
|
|
|
else
|
2017-03-05 15:44:50 +00:00
|
|
|
r_received = 0;
|
2015-02-11 10:57:39 +00:00
|
|
|
return err;
|
|
|
|
} else {
|
2017-03-05 15:44:50 +00:00
|
|
|
return connection->get_partial_data(p_buffer, p_bytes, r_received);
|
2015-02-11 10:57:39 +00:00
|
|
|
}
|
|
|
|
}
|
2014-04-29 00:56:43 +00:00
|
|
|
|
2017-10-26 01:39:41 +00:00
|
|
|
void HTTPClient::set_read_chunk_size(int p_size) {
|
|
|
|
ERR_FAIL_COND(p_size < 256 || p_size > (1 << 24));
|
|
|
|
read_chunk_size = p_size;
|
|
|
|
}
|
|
|
|
|
|
|
|
HTTPClient::HTTPClient() {
|
|
|
|
|
|
|
|
tcp_connection = StreamPeerTCP::create_ref();
|
|
|
|
resolving = IP::RESOLVER_INVALID_ID;
|
|
|
|
status = STATUS_DISCONNECTED;
|
2017-12-12 19:02:25 +00:00
|
|
|
conn_port = -1;
|
2017-10-26 01:39:41 +00:00
|
|
|
body_size = 0;
|
|
|
|
chunked = false;
|
|
|
|
body_left = 0;
|
|
|
|
chunk_left = 0;
|
|
|
|
response_num = 0;
|
|
|
|
ssl = false;
|
|
|
|
blocking = false;
|
|
|
|
read_chunk_size = 4096;
|
|
|
|
}
|
|
|
|
|
|
|
|
HTTPClient::~HTTPClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // #ifndef JAVASCRIPT_ENABLED
|
|
|
|
|
|
|
|
String HTTPClient::query_string_from_dict(const Dictionary &p_dict) {
|
|
|
|
String query = "";
|
|
|
|
Array keys = p_dict.keys();
|
|
|
|
for (int i = 0; i < keys.size(); ++i) {
|
|
|
|
query += "&" + String(keys[i]).http_escape() + "=" + String(p_dict[keys[i]]).http_escape();
|
|
|
|
}
|
|
|
|
query.erase(0, 1);
|
|
|
|
return query;
|
|
|
|
}
|
|
|
|
|
|
|
|
Dictionary HTTPClient::_get_response_headers_as_dictionary() {
|
|
|
|
|
|
|
|
List<String> rh;
|
|
|
|
get_response_headers(&rh);
|
|
|
|
Dictionary ret;
|
|
|
|
for (const List<String>::Element *E = rh.front(); E; E = E->next()) {
|
|
|
|
String s = E->get();
|
|
|
|
int sp = s.find(":");
|
|
|
|
if (sp == -1)
|
|
|
|
continue;
|
|
|
|
String key = s.substr(0, sp).strip_edges();
|
|
|
|
String value = s.substr(sp + 1, s.length()).strip_edges();
|
|
|
|
ret[key] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
PoolStringArray HTTPClient::_get_response_headers() {
|
|
|
|
|
|
|
|
List<String> rh;
|
|
|
|
get_response_headers(&rh);
|
|
|
|
PoolStringArray ret;
|
|
|
|
ret.resize(rh.size());
|
|
|
|
int idx = 0;
|
|
|
|
for (const List<String>::Element *E = rh.front(); E; E = E->next()) {
|
|
|
|
ret.set(idx++, E->get());
|
|
|
|
}
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2014-02-10 01:10:30 +00:00
|
|
|
void HTTPClient::_bind_methods() {
|
|
|
|
|
2017-12-12 19:02:25 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("connect_to_host", "host", "port", "use_ssl", "verify_host"), &HTTPClient::connect_to_host, DEFVAL(-1), DEFVAL(false), DEFVAL(true));
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("set_connection", "connection"), &HTTPClient::set_connection);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_connection"), &HTTPClient::get_connection);
|
2017-03-05 15:44:50 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("request_raw", "method", "url", "headers", "body"), &HTTPClient::request_raw);
|
|
|
|
ClassDB::bind_method(D_METHOD("request", "method", "url", "headers", "body"), &HTTPClient::request, DEFVAL(String()));
|
|
|
|
ClassDB::bind_method(D_METHOD("close"), &HTTPClient::close);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("has_response"), &HTTPClient::has_response);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_response_chunked"), &HTTPClient::is_response_chunked);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_response_code"), &HTTPClient::get_response_code);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_response_headers"), &HTTPClient::_get_response_headers);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_response_headers_as_dictionary"), &HTTPClient::_get_response_headers_as_dictionary);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_response_body_length"), &HTTPClient::get_response_body_length);
|
|
|
|
ClassDB::bind_method(D_METHOD("read_response_body_chunk"), &HTTPClient::read_response_body_chunk);
|
|
|
|
ClassDB::bind_method(D_METHOD("set_read_chunk_size", "bytes"), &HTTPClient::set_read_chunk_size);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("set_blocking_mode", "enabled"), &HTTPClient::set_blocking_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("is_blocking_mode_enabled"), &HTTPClient::is_blocking_mode_enabled);
|
|
|
|
|
|
|
|
ClassDB::bind_method(D_METHOD("get_status"), &HTTPClient::get_status);
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("poll"), &HTTPClient::poll);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2017-08-09 11:19:41 +00:00
|
|
|
ClassDB::bind_method(D_METHOD("query_string_from_dict", "fields"), &HTTPClient::query_string_from_dict);
|
2017-03-05 15:44:50 +00:00
|
|
|
|
2018-01-11 22:35:12 +00:00
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "blocking_mode_enabled"), "set_blocking_mode", "is_blocking_mode_enabled");
|
|
|
|
ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "connection", PROPERTY_HINT_RESOURCE_TYPE, "StreamPeer", 0), "set_connection", "get_connection");
|
|
|
|
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(METHOD_GET);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_HEAD);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_POST);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_PUT);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_DELETE);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_OPTIONS);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_TRACE);
|
|
|
|
BIND_ENUM_CONSTANT(METHOD_CONNECT);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(METHOD_PATCH);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(METHOD_MAX);
|
|
|
|
|
|
|
|
BIND_ENUM_CONSTANT(STATUS_DISCONNECTED);
|
2017-12-12 19:02:25 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_RESOLVING); // Resolving hostname (if hostname was passed in)
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_CANT_RESOLVE);
|
2017-12-12 19:02:25 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_CONNECTING); // Connecting to IP
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_CANT_CONNECT);
|
2017-12-12 19:02:25 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_CONNECTED); // Connected, now accepting requests
|
|
|
|
BIND_ENUM_CONSTANT(STATUS_REQUESTING); // Request in progress
|
|
|
|
BIND_ENUM_CONSTANT(STATUS_BODY); // Request resulted in body which must be read
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(STATUS_CONNECTION_ERROR);
|
|
|
|
BIND_ENUM_CONSTANT(STATUS_SSL_HANDSHAKE_ERROR);
|
|
|
|
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_CONTINUE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_SWITCHING_PROTOCOLS);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PROCESSING);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// 2xx successful
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_OK);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_CREATED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_ACCEPTED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NON_AUTHORITATIVE_INFORMATION);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NO_CONTENT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_RESET_CONTENT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PARTIAL_CONTENT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_MULTI_STATUS);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_ALREADY_REPORTED);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_IM_USED);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// 3xx redirection
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_MULTIPLE_CHOICES);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_MOVED_PERMANENTLY);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_FOUND);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_SEE_OTHER);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NOT_MODIFIED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_USE_PROXY);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_SWITCH_PROXY);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_TEMPORARY_REDIRECT);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PERMANENT_REDIRECT);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// 4xx client error
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_BAD_REQUEST);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_UNAUTHORIZED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PAYMENT_REQUIRED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_FORBIDDEN);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NOT_FOUND);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_METHOD_NOT_ALLOWED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NOT_ACCEPTABLE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PROXY_AUTHENTICATION_REQUIRED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_REQUEST_TIMEOUT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_CONFLICT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_GONE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_LENGTH_REQUIRED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PRECONDITION_FAILED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_REQUEST_ENTITY_TOO_LARGE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_REQUEST_URI_TOO_LONG);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_UNSUPPORTED_MEDIA_TYPE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_EXPECTATION_FAILED);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_IM_A_TEAPOT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_MISDIRECTED_REQUEST);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_UNPROCESSABLE_ENTITY);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_LOCKED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_FAILED_DEPENDENCY);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_UPGRADE_REQUIRED);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_PRECONDITION_REQUIRED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_TOO_MANY_REQUESTS);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS);
|
2014-02-10 01:10:30 +00:00
|
|
|
|
|
|
|
// 5xx server error
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_INTERNAL_SERVER_ERROR);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NOT_IMPLEMENTED);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_BAD_GATEWAY);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_SERVICE_UNAVAILABLE);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_GATEWAY_TIMEOUT);
|
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_HTTP_VERSION_NOT_SUPPORTED);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_VARIANT_ALSO_NEGOTIATES);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_INSUFFICIENT_STORAGE);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_LOOP_DETECTED);
|
2017-08-20 15:45:01 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NOT_EXTENDED);
|
2017-12-10 22:18:44 +00:00
|
|
|
BIND_ENUM_CONSTANT(RESPONSE_NETWORK_AUTH_REQUIRED);
|
2014-02-10 01:10:30 +00:00
|
|
|
}
|