http_client.cpp 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917
  1. /*************************************************************************/
  2. /* http_client.cpp */
  3. /*************************************************************************/
  4. /* This file is part of: */
  5. /* GODOT ENGINE */
  6. /* https://godotengine.org */
  7. /*************************************************************************/
  8. /* Copyright (c) 2007-2019 Juan Linietsky, Ariel Manzur. */
  9. /* Copyright (c) 2014-2019 Godot Engine contributors (cf. AUTHORS.md) */
  10. /* */
  11. /* Permission is hereby granted, free of charge, to any person obtaining */
  12. /* a copy of this software and associated documentation files (the */
  13. /* "Software"), to deal in the Software without restriction, including */
  14. /* without limitation the rights to use, copy, modify, merge, publish, */
  15. /* distribute, sublicense, and/or sell copies of the Software, and to */
  16. /* permit persons to whom the Software is furnished to do so, subject to */
  17. /* the following conditions: */
  18. /* */
  19. /* The above copyright notice and this permission notice shall be */
  20. /* included in all copies or substantial portions of the Software. */
  21. /* */
  22. /* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
  23. /* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
  24. /* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.*/
  25. /* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
  26. /* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
  27. /* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
  28. /* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
  29. /*************************************************************************/
  30. #include "http_client.h"
  31. #include "core/io/stream_peer_ssl.h"
  32. #include "core/version.h"
  33. const char *HTTPClient::_methods[METHOD_MAX] = {
  34. "GET",
  35. "HEAD",
  36. "POST",
  37. "PUT",
  38. "DELETE",
  39. "OPTIONS",
  40. "TRACE",
  41. "CONNECT",
  42. "PATCH"
  43. };
  44. #ifndef JAVASCRIPT_ENABLED
  45. Error HTTPClient::connect_to_host(const String &p_host, int p_port, bool p_ssl, bool p_verify_host) {
  46. close();
  47. conn_port = p_port;
  48. conn_host = p_host;
  49. ssl = p_ssl;
  50. ssl_verify_host = p_verify_host;
  51. String host_lower = conn_host.to_lower();
  52. if (host_lower.begins_with("http://")) {
  53. conn_host = conn_host.substr(7, conn_host.length() - 7);
  54. } else if (host_lower.begins_with("https://")) {
  55. ssl = true;
  56. conn_host = conn_host.substr(8, conn_host.length() - 8);
  57. }
  58. ERR_FAIL_COND_V(conn_host.length() < HOST_MIN_LEN, ERR_INVALID_PARAMETER);
  59. if (conn_port < 0) {
  60. if (ssl) {
  61. conn_port = PORT_HTTPS;
  62. } else {
  63. conn_port = PORT_HTTP;
  64. }
  65. }
  66. connection = tcp_connection;
  67. if (conn_host.is_valid_ip_address()) {
  68. // Host contains valid IP
  69. Error err = tcp_connection->connect_to_host(IP_Address(conn_host), p_port);
  70. if (err) {
  71. status = STATUS_CANT_CONNECT;
  72. return err;
  73. }
  74. status = STATUS_CONNECTING;
  75. } else {
  76. // Host contains hostname and needs to be resolved to IP
  77. resolving = IP::get_singleton()->resolve_hostname_queue_item(conn_host);
  78. status = STATUS_RESOLVING;
  79. }
  80. return OK;
  81. }
  82. void HTTPClient::set_connection(const Ref<StreamPeer> &p_connection) {
  83. close();
  84. connection = p_connection;
  85. status = STATUS_CONNECTED;
  86. }
  87. Ref<StreamPeer> HTTPClient::get_connection() const {
  88. return connection;
  89. }
  90. Error HTTPClient::request_raw(Method p_method, const String &p_url, const Vector<String> &p_headers, const PoolVector<uint8_t> &p_body) {
  91. ERR_FAIL_INDEX_V(p_method, METHOD_MAX, ERR_INVALID_PARAMETER);
  92. ERR_FAIL_COND_V(!p_url.begins_with("/"), ERR_INVALID_PARAMETER);
  93. ERR_FAIL_COND_V(status != STATUS_CONNECTED, ERR_INVALID_PARAMETER);
  94. ERR_FAIL_COND_V(connection.is_null(), ERR_INVALID_DATA);
  95. String request = String(_methods[p_method]) + " " + p_url + " HTTP/1.1\r\n";
  96. if ((ssl && conn_port == PORT_HTTPS) || (!ssl && conn_port == PORT_HTTP)) {
  97. // Don't append the standard ports
  98. request += "Host: " + conn_host + "\r\n";
  99. } else {
  100. request += "Host: " + conn_host + ":" + itos(conn_port) + "\r\n";
  101. }
  102. bool add_clen = p_body.size() > 0;
  103. bool add_uagent = true;
  104. bool add_accept = true;
  105. for (int i = 0; i < p_headers.size(); i++) {
  106. request += p_headers[i] + "\r\n";
  107. if (add_clen && p_headers[i].findn("Content-Length:") == 0) {
  108. add_clen = false;
  109. }
  110. if (add_uagent && p_headers[i].findn("User-Agent:") == 0) {
  111. add_uagent = false;
  112. }
  113. if (add_accept && p_headers[i].findn("Accept:") == 0) {
  114. add_accept = false;
  115. }
  116. }
  117. if (add_clen) {
  118. request += "Content-Length: " + itos(p_body.size()) + "\r\n";
  119. // Should it add utf8 encoding?
  120. }
  121. if (add_uagent) {
  122. request += "User-Agent: GodotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n";
  123. }
  124. if (add_accept) {
  125. request += "Accept: */*\r\n";
  126. }
  127. request += "\r\n";
  128. CharString cs = request.utf8();
  129. PoolVector<uint8_t> data;
  130. data.resize(cs.length());
  131. {
  132. PoolVector<uint8_t>::Write data_write = data.write();
  133. for (int i = 0; i < cs.length(); i++) {
  134. data_write[i] = cs[i];
  135. }
  136. }
  137. data.append_array(p_body);
  138. PoolVector<uint8_t>::Read r = data.read();
  139. Error err = connection->put_data(&r[0], data.size());
  140. if (err) {
  141. close();
  142. status = STATUS_CONNECTION_ERROR;
  143. return err;
  144. }
  145. status = STATUS_REQUESTING;
  146. return OK;
  147. }
  148. Error HTTPClient::request(Method p_method, const String &p_url, const Vector<String> &p_headers, const String &p_body) {
  149. ERR_FAIL_INDEX_V(p_method, METHOD_MAX, ERR_INVALID_PARAMETER);
  150. ERR_FAIL_COND_V(!p_url.begins_with("/"), ERR_INVALID_PARAMETER);
  151. ERR_FAIL_COND_V(status != STATUS_CONNECTED, ERR_INVALID_PARAMETER);
  152. ERR_FAIL_COND_V(connection.is_null(), ERR_INVALID_DATA);
  153. String request = String(_methods[p_method]) + " " + p_url + " HTTP/1.1\r\n";
  154. if ((ssl && conn_port == PORT_HTTPS) || (!ssl && conn_port == PORT_HTTP)) {
  155. // Don't append the standard ports
  156. request += "Host: " + conn_host + "\r\n";
  157. } else {
  158. request += "Host: " + conn_host + ":" + itos(conn_port) + "\r\n";
  159. }
  160. bool add_uagent = true;
  161. bool add_accept = true;
  162. bool add_clen = p_body.length() > 0;
  163. for (int i = 0; i < p_headers.size(); i++) {
  164. request += p_headers[i] + "\r\n";
  165. if (add_clen && p_headers[i].findn("Content-Length:") == 0) {
  166. add_clen = false;
  167. }
  168. if (add_uagent && p_headers[i].findn("User-Agent:") == 0) {
  169. add_uagent = false;
  170. }
  171. if (add_accept && p_headers[i].findn("Accept:") == 0) {
  172. add_accept = false;
  173. }
  174. }
  175. if (add_clen) {
  176. request += "Content-Length: " + itos(p_body.utf8().length()) + "\r\n";
  177. // Should it add utf8 encoding?
  178. }
  179. if (add_uagent) {
  180. request += "User-Agent: GodotEngine/" + String(VERSION_FULL_BUILD) + " (" + OS::get_singleton()->get_name() + ")\r\n";
  181. }
  182. if (add_accept) {
  183. request += "Accept: */*\r\n";
  184. }
  185. request += "\r\n";
  186. request += p_body;
  187. CharString cs = request.utf8();
  188. Error err = connection->put_data((const uint8_t *)cs.ptr(), cs.length());
  189. if (err) {
  190. close();
  191. status = STATUS_CONNECTION_ERROR;
  192. return err;
  193. }
  194. status = STATUS_REQUESTING;
  195. return OK;
  196. }
  197. bool HTTPClient::has_response() const {
  198. return response_headers.size() != 0;
  199. }
  200. bool HTTPClient::is_response_chunked() const {
  201. return chunked;
  202. }
  203. int HTTPClient::get_response_code() const {
  204. return response_num;
  205. }
  206. Error HTTPClient::get_response_headers(List<String> *r_response) {
  207. if (!response_headers.size())
  208. return ERR_INVALID_PARAMETER;
  209. for (int i = 0; i < response_headers.size(); i++) {
  210. r_response->push_back(response_headers[i]);
  211. }
  212. response_headers.clear();
  213. return OK;
  214. }
  215. void HTTPClient::close() {
  216. if (tcp_connection->get_status() != StreamPeerTCP::STATUS_NONE)
  217. tcp_connection->disconnect_from_host();
  218. connection.unref();
  219. status = STATUS_DISCONNECTED;
  220. if (resolving != IP::RESOLVER_INVALID_ID) {
  221. IP::get_singleton()->erase_resolve_item(resolving);
  222. resolving = IP::RESOLVER_INVALID_ID;
  223. }
  224. response_headers.clear();
  225. response_str.clear();
  226. body_size = -1;
  227. body_left = 0;
  228. chunk_left = 0;
  229. read_until_eof = false;
  230. response_num = 0;
  231. handshaking = false;
  232. }
  233. Error HTTPClient::poll() {
  234. switch (status) {
  235. case STATUS_RESOLVING: {
  236. ERR_FAIL_COND_V(resolving == IP::RESOLVER_INVALID_ID, ERR_BUG);
  237. IP::ResolverStatus rstatus = IP::get_singleton()->get_resolve_item_status(resolving);
  238. switch (rstatus) {
  239. case IP::RESOLVER_STATUS_WAITING:
  240. return OK; // Still resolving
  241. case IP::RESOLVER_STATUS_DONE: {
  242. IP_Address host = IP::get_singleton()->get_resolve_item_address(resolving);
  243. Error err = tcp_connection->connect_to_host(host, conn_port);
  244. IP::get_singleton()->erase_resolve_item(resolving);
  245. resolving = IP::RESOLVER_INVALID_ID;
  246. if (err) {
  247. status = STATUS_CANT_CONNECT;
  248. return err;
  249. }
  250. status = STATUS_CONNECTING;
  251. } break;
  252. case IP::RESOLVER_STATUS_NONE:
  253. case IP::RESOLVER_STATUS_ERROR: {
  254. IP::get_singleton()->erase_resolve_item(resolving);
  255. resolving = IP::RESOLVER_INVALID_ID;
  256. close();
  257. status = STATUS_CANT_RESOLVE;
  258. return ERR_CANT_RESOLVE;
  259. } break;
  260. }
  261. } break;
  262. case STATUS_CONNECTING: {
  263. StreamPeerTCP::Status s = tcp_connection->get_status();
  264. switch (s) {
  265. case StreamPeerTCP::STATUS_CONNECTING: {
  266. return OK;
  267. } break;
  268. case StreamPeerTCP::STATUS_CONNECTED: {
  269. if (ssl) {
  270. Ref<StreamPeerSSL> ssl;
  271. if (!handshaking) {
  272. // Connect the StreamPeerSSL and start handshaking
  273. ssl = Ref<StreamPeerSSL>(StreamPeerSSL::create());
  274. ssl->set_blocking_handshake_enabled(false);
  275. Error err = ssl->connect_to_stream(tcp_connection, ssl_verify_host, conn_host);
  276. if (err != OK) {
  277. close();
  278. status = STATUS_SSL_HANDSHAKE_ERROR;
  279. return ERR_CANT_CONNECT;
  280. }
  281. connection = ssl;
  282. handshaking = true;
  283. } else {
  284. // We are already handshaking, which means we can use your already active SSL connection
  285. ssl = static_cast<Ref<StreamPeerSSL> >(connection);
  286. ssl->poll(); // Try to finish the handshake
  287. }
  288. if (ssl->get_status() == StreamPeerSSL::STATUS_CONNECTED) {
  289. // Handshake has been successful
  290. handshaking = false;
  291. status = STATUS_CONNECTED;
  292. return OK;
  293. } else if (ssl->get_status() != StreamPeerSSL::STATUS_HANDSHAKING) {
  294. // Handshake has failed
  295. close();
  296. status = STATUS_SSL_HANDSHAKE_ERROR;
  297. return ERR_CANT_CONNECT;
  298. }
  299. // ... we will need to poll more for handshake to finish
  300. } else {
  301. status = STATUS_CONNECTED;
  302. }
  303. return OK;
  304. } break;
  305. case StreamPeerTCP::STATUS_ERROR:
  306. case StreamPeerTCP::STATUS_NONE: {
  307. close();
  308. status = STATUS_CANT_CONNECT;
  309. return ERR_CANT_CONNECT;
  310. } break;
  311. }
  312. } break;
  313. case STATUS_BODY:
  314. case STATUS_CONNECTED: {
  315. // Check if we are still connected
  316. if (ssl) {
  317. Ref<StreamPeerSSL> tmp = connection;
  318. tmp->poll();
  319. if (tmp->get_status() != StreamPeerSSL::STATUS_CONNECTED) {
  320. status = STATUS_CONNECTION_ERROR;
  321. return ERR_CONNECTION_ERROR;
  322. }
  323. } else if (tcp_connection->get_status() != StreamPeerTCP::STATUS_CONNECTED) {
  324. status = STATUS_CONNECTION_ERROR;
  325. return ERR_CONNECTION_ERROR;
  326. }
  327. // Connection established, requests can now be made
  328. return OK;
  329. } break;
  330. case STATUS_REQUESTING: {
  331. while (true) {
  332. uint8_t byte;
  333. int rec = 0;
  334. Error err = _get_http_data(&byte, 1, rec);
  335. if (err != OK) {
  336. close();
  337. status = STATUS_CONNECTION_ERROR;
  338. return ERR_CONNECTION_ERROR;
  339. }
  340. if (rec == 0)
  341. return OK; // Still requesting, keep trying!
  342. response_str.push_back(byte);
  343. int rs = response_str.size();
  344. if (
  345. (rs >= 2 && response_str[rs - 2] == '\n' && response_str[rs - 1] == '\n') ||
  346. (rs >= 4 && response_str[rs - 4] == '\r' && response_str[rs - 3] == '\n' && response_str[rs - 2] == '\r' && response_str[rs - 1] == '\n')) {
  347. // End of response, parse.
  348. response_str.push_back(0);
  349. String response;
  350. response.parse_utf8((const char *)response_str.ptr());
  351. Vector<String> responses = response.split("\n");
  352. body_size = -1;
  353. chunked = false;
  354. body_left = 0;
  355. chunk_left = 0;
  356. read_until_eof = false;
  357. response_str.clear();
  358. response_headers.clear();
  359. response_num = RESPONSE_OK;
  360. // Per the HTTP 1.1 spec, keep-alive is the default, but in practice
  361. // it's safe to assume it only if the explicit header is found, allowing
  362. // to handle body-up-to-EOF responses on naive servers; that's what Curl
  363. // and browsers do
  364. bool keep_alive = false;
  365. for (int i = 0; i < responses.size(); i++) {
  366. String header = responses[i].strip_edges();
  367. String s = header.to_lower();
  368. if (s.length() == 0)
  369. continue;
  370. if (s.begins_with("content-length:")) {
  371. body_size = s.substr(s.find(":") + 1, s.length()).strip_edges().to_int();
  372. body_left = body_size;
  373. } else if (s.begins_with("transfer-encoding:")) {
  374. String encoding = header.substr(header.find(":") + 1, header.length()).strip_edges();
  375. if (encoding == "chunked") {
  376. chunked = true;
  377. }
  378. } else if (s.begins_with("connection: keep-alive")) {
  379. keep_alive = true;
  380. }
  381. if (i == 0 && responses[i].begins_with("HTTP")) {
  382. String num = responses[i].get_slicec(' ', 1);
  383. response_num = num.to_int();
  384. } else {
  385. response_headers.push_back(header);
  386. }
  387. }
  388. if (body_size != -1 || chunked) {
  389. status = STATUS_BODY;
  390. } else if (!keep_alive) {
  391. read_until_eof = true;
  392. status = STATUS_BODY;
  393. } else {
  394. status = STATUS_CONNECTED;
  395. }
  396. return OK;
  397. }
  398. }
  399. // Wait for response
  400. return OK;
  401. } break;
  402. case STATUS_DISCONNECTED: {
  403. return ERR_UNCONFIGURED;
  404. } break;
  405. case STATUS_CONNECTION_ERROR:
  406. case STATUS_SSL_HANDSHAKE_ERROR: {
  407. return ERR_CONNECTION_ERROR;
  408. } break;
  409. case STATUS_CANT_CONNECT: {
  410. return ERR_CANT_CONNECT;
  411. } break;
  412. case STATUS_CANT_RESOLVE: {
  413. return ERR_CANT_RESOLVE;
  414. } break;
  415. }
  416. return OK;
  417. }
  418. int HTTPClient::get_response_body_length() const {
  419. return body_size;
  420. }
  421. PoolByteArray HTTPClient::read_response_body_chunk() {
  422. ERR_FAIL_COND_V(status != STATUS_BODY, PoolByteArray());
  423. Error err = OK;
  424. if (chunked) {
  425. while (true) {
  426. if (chunk_left == 0) {
  427. // Reading length
  428. uint8_t b;
  429. int rec = 0;
  430. err = _get_http_data(&b, 1, rec);
  431. if (rec == 0)
  432. break;
  433. chunk.push_back(b);
  434. if (chunk.size() > 32) {
  435. ERR_PRINT("HTTP Invalid chunk hex len");
  436. status = STATUS_CONNECTION_ERROR;
  437. return PoolByteArray();
  438. }
  439. if (chunk.size() > 2 && chunk[chunk.size() - 2] == '\r' && chunk[chunk.size() - 1] == '\n') {
  440. int len = 0;
  441. for (int i = 0; i < chunk.size() - 2; i++) {
  442. char c = chunk[i];
  443. int v = 0;
  444. if (c >= '0' && c <= '9')
  445. v = c - '0';
  446. else if (c >= 'a' && c <= 'f')
  447. v = c - 'a' + 10;
  448. else if (c >= 'A' && c <= 'F')
  449. v = c - 'A' + 10;
  450. else {
  451. ERR_PRINT("HTTP Chunk len not in hex!!");
  452. status = STATUS_CONNECTION_ERROR;
  453. return PoolByteArray();
  454. }
  455. len <<= 4;
  456. len |= v;
  457. if (len > (1 << 24)) {
  458. ERR_PRINT("HTTP Chunk too big!! >16mb");
  459. status = STATUS_CONNECTION_ERROR;
  460. return PoolByteArray();
  461. }
  462. }
  463. if (len == 0) {
  464. // End reached!
  465. status = STATUS_CONNECTED;
  466. chunk.clear();
  467. return PoolByteArray();
  468. }
  469. chunk_left = len + 2;
  470. chunk.resize(chunk_left);
  471. }
  472. } else {
  473. int rec = 0;
  474. err = _get_http_data(&chunk.write[chunk.size() - chunk_left], chunk_left, rec);
  475. if (rec == 0) {
  476. break;
  477. }
  478. chunk_left -= rec;
  479. if (chunk_left == 0) {
  480. if (chunk[chunk.size() - 2] != '\r' || chunk[chunk.size() - 1] != '\n') {
  481. ERR_PRINT("HTTP Invalid chunk terminator (not \\r\\n)");
  482. status = STATUS_CONNECTION_ERROR;
  483. return PoolByteArray();
  484. }
  485. PoolByteArray ret;
  486. ret.resize(chunk.size() - 2);
  487. {
  488. PoolByteArray::Write w = ret.write();
  489. copymem(w.ptr(), chunk.ptr(), chunk.size() - 2);
  490. }
  491. chunk.clear();
  492. return ret;
  493. }
  494. break;
  495. }
  496. }
  497. } else {
  498. int to_read = !read_until_eof ? MIN(body_left, read_chunk_size) : read_chunk_size;
  499. PoolByteArray ret;
  500. ret.resize(to_read);
  501. int _offset = 0;
  502. while (read_until_eof || to_read > 0) {
  503. int rec = 0;
  504. {
  505. PoolByteArray::Write w = ret.write();
  506. err = _get_http_data(w.ptr() + _offset, to_read, rec);
  507. }
  508. if (rec < 0) {
  509. if (to_read > 0) // Ended up reading less
  510. ret.resize(_offset);
  511. break;
  512. } else {
  513. _offset += rec;
  514. if (!read_until_eof) {
  515. body_left -= rec;
  516. to_read -= rec;
  517. } else {
  518. if (rec < to_read) {
  519. ret.resize(_offset);
  520. err = ERR_FILE_EOF;
  521. break;
  522. }
  523. ret.resize(_offset + to_read);
  524. }
  525. }
  526. }
  527. if (!read_until_eof) {
  528. if (body_left == 0) {
  529. status = STATUS_CONNECTED;
  530. }
  531. return ret;
  532. } else {
  533. if (err == ERR_FILE_EOF) {
  534. err = OK; // EOF is expected here
  535. close();
  536. return ret;
  537. }
  538. }
  539. }
  540. if (err != OK) {
  541. close();
  542. if (err == ERR_FILE_EOF) {
  543. status = STATUS_DISCONNECTED; // Server disconnected
  544. } else {
  545. status = STATUS_CONNECTION_ERROR;
  546. }
  547. } else if (body_left == 0 && !chunked) {
  548. status = STATUS_CONNECTED;
  549. }
  550. return PoolByteArray();
  551. }
  552. HTTPClient::Status HTTPClient::get_status() const {
  553. return status;
  554. }
  555. void HTTPClient::set_blocking_mode(bool p_enable) {
  556. blocking = p_enable;
  557. }
  558. bool HTTPClient::is_blocking_mode_enabled() const {
  559. return blocking;
  560. }
  561. Error HTTPClient::_get_http_data(uint8_t *p_buffer, int p_bytes, int &r_received) {
  562. if (blocking) {
  563. // We can't use StreamPeer.get_data, since when reaching EOF we will get an
  564. // error without knowing how many bytes we received.
  565. Error err = ERR_FILE_EOF;
  566. int read = 0;
  567. int left = p_bytes;
  568. r_received = 0;
  569. while (left > 0) {
  570. err = connection->get_partial_data(p_buffer + r_received, left, read);
  571. if (err == OK) {
  572. r_received += read;
  573. } else if (err == ERR_FILE_EOF) {
  574. r_received += read;
  575. return err;
  576. } else {
  577. return err;
  578. }
  579. left -= read;
  580. }
  581. return err;
  582. } else {
  583. return connection->get_partial_data(p_buffer, p_bytes, r_received);
  584. }
  585. }
  586. void HTTPClient::set_read_chunk_size(int p_size) {
  587. ERR_FAIL_COND(p_size < 256 || p_size > (1 << 24));
  588. read_chunk_size = p_size;
  589. }
  590. HTTPClient::HTTPClient() {
  591. tcp_connection.instance();
  592. resolving = IP::RESOLVER_INVALID_ID;
  593. status = STATUS_DISCONNECTED;
  594. conn_port = -1;
  595. body_size = -1;
  596. chunked = false;
  597. body_left = 0;
  598. read_until_eof = false;
  599. chunk_left = 0;
  600. response_num = 0;
  601. ssl = false;
  602. blocking = false;
  603. handshaking = false;
  604. read_chunk_size = 4096;
  605. }
  606. HTTPClient::~HTTPClient() {
  607. }
  608. #endif // #ifndef JAVASCRIPT_ENABLED
  609. String HTTPClient::query_string_from_dict(const Dictionary &p_dict) {
  610. String query = "";
  611. Array keys = p_dict.keys();
  612. for (int i = 0; i < keys.size(); ++i) {
  613. String encoded_key = String(keys[i]).http_escape();
  614. Variant value = p_dict[keys[i]];
  615. switch (value.get_type()) {
  616. case Variant::ARRAY: {
  617. // Repeat the key with every values
  618. Array values = value;
  619. for (int j = 0; j < values.size(); ++j) {
  620. query += "&" + encoded_key + "=" + String(values[j]).http_escape();
  621. }
  622. break;
  623. }
  624. case Variant::NIL: {
  625. // Add the key with no value
  626. query += "&" + encoded_key;
  627. break;
  628. }
  629. default: {
  630. // Add the key-value pair
  631. query += "&" + encoded_key + "=" + String(value).http_escape();
  632. }
  633. }
  634. }
  635. query.erase(0, 1);
  636. return query;
  637. }
  638. Dictionary HTTPClient::_get_response_headers_as_dictionary() {
  639. List<String> rh;
  640. get_response_headers(&rh);
  641. Dictionary ret;
  642. for (const List<String>::Element *E = rh.front(); E; E = E->next()) {
  643. String s = E->get();
  644. int sp = s.find(":");
  645. if (sp == -1)
  646. continue;
  647. String key = s.substr(0, sp).strip_edges();
  648. String value = s.substr(sp + 1, s.length()).strip_edges();
  649. ret[key] = value;
  650. }
  651. return ret;
  652. }
  653. PoolStringArray HTTPClient::_get_response_headers() {
  654. List<String> rh;
  655. get_response_headers(&rh);
  656. PoolStringArray ret;
  657. ret.resize(rh.size());
  658. int idx = 0;
  659. for (const List<String>::Element *E = rh.front(); E; E = E->next()) {
  660. ret.set(idx++, E->get());
  661. }
  662. return ret;
  663. }
  664. void HTTPClient::_bind_methods() {
  665. ClassDB::bind_method(D_METHOD("connect_to_host", "host", "port", "use_ssl", "verify_host"), &HTTPClient::connect_to_host, DEFVAL(-1), DEFVAL(false), DEFVAL(true));
  666. ClassDB::bind_method(D_METHOD("set_connection", "connection"), &HTTPClient::set_connection);
  667. ClassDB::bind_method(D_METHOD("get_connection"), &HTTPClient::get_connection);
  668. ClassDB::bind_method(D_METHOD("request_raw", "method", "url", "headers", "body"), &HTTPClient::request_raw);
  669. ClassDB::bind_method(D_METHOD("request", "method", "url", "headers", "body"), &HTTPClient::request, DEFVAL(String()));
  670. ClassDB::bind_method(D_METHOD("close"), &HTTPClient::close);
  671. ClassDB::bind_method(D_METHOD("has_response"), &HTTPClient::has_response);
  672. ClassDB::bind_method(D_METHOD("is_response_chunked"), &HTTPClient::is_response_chunked);
  673. ClassDB::bind_method(D_METHOD("get_response_code"), &HTTPClient::get_response_code);
  674. ClassDB::bind_method(D_METHOD("get_response_headers"), &HTTPClient::_get_response_headers);
  675. ClassDB::bind_method(D_METHOD("get_response_headers_as_dictionary"), &HTTPClient::_get_response_headers_as_dictionary);
  676. ClassDB::bind_method(D_METHOD("get_response_body_length"), &HTTPClient::get_response_body_length);
  677. ClassDB::bind_method(D_METHOD("read_response_body_chunk"), &HTTPClient::read_response_body_chunk);
  678. ClassDB::bind_method(D_METHOD("set_read_chunk_size", "bytes"), &HTTPClient::set_read_chunk_size);
  679. ClassDB::bind_method(D_METHOD("set_blocking_mode", "enabled"), &HTTPClient::set_blocking_mode);
  680. ClassDB::bind_method(D_METHOD("is_blocking_mode_enabled"), &HTTPClient::is_blocking_mode_enabled);
  681. ClassDB::bind_method(D_METHOD("get_status"), &HTTPClient::get_status);
  682. ClassDB::bind_method(D_METHOD("poll"), &HTTPClient::poll);
  683. ClassDB::bind_method(D_METHOD("query_string_from_dict", "fields"), &HTTPClient::query_string_from_dict);
  684. ADD_PROPERTY(PropertyInfo(Variant::BOOL, "blocking_mode_enabled"), "set_blocking_mode", "is_blocking_mode_enabled");
  685. ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "connection", PROPERTY_HINT_RESOURCE_TYPE, "StreamPeer", 0), "set_connection", "get_connection");
  686. BIND_ENUM_CONSTANT(METHOD_GET);
  687. BIND_ENUM_CONSTANT(METHOD_HEAD);
  688. BIND_ENUM_CONSTANT(METHOD_POST);
  689. BIND_ENUM_CONSTANT(METHOD_PUT);
  690. BIND_ENUM_CONSTANT(METHOD_DELETE);
  691. BIND_ENUM_CONSTANT(METHOD_OPTIONS);
  692. BIND_ENUM_CONSTANT(METHOD_TRACE);
  693. BIND_ENUM_CONSTANT(METHOD_CONNECT);
  694. BIND_ENUM_CONSTANT(METHOD_PATCH);
  695. BIND_ENUM_CONSTANT(METHOD_MAX);
  696. BIND_ENUM_CONSTANT(STATUS_DISCONNECTED);
  697. BIND_ENUM_CONSTANT(STATUS_RESOLVING); // Resolving hostname (if hostname was passed in)
  698. BIND_ENUM_CONSTANT(STATUS_CANT_RESOLVE);
  699. BIND_ENUM_CONSTANT(STATUS_CONNECTING); // Connecting to IP
  700. BIND_ENUM_CONSTANT(STATUS_CANT_CONNECT);
  701. BIND_ENUM_CONSTANT(STATUS_CONNECTED); // Connected, now accepting requests
  702. BIND_ENUM_CONSTANT(STATUS_REQUESTING); // Request in progress
  703. BIND_ENUM_CONSTANT(STATUS_BODY); // Request resulted in body which must be read
  704. BIND_ENUM_CONSTANT(STATUS_CONNECTION_ERROR);
  705. BIND_ENUM_CONSTANT(STATUS_SSL_HANDSHAKE_ERROR);
  706. BIND_ENUM_CONSTANT(RESPONSE_CONTINUE);
  707. BIND_ENUM_CONSTANT(RESPONSE_SWITCHING_PROTOCOLS);
  708. BIND_ENUM_CONSTANT(RESPONSE_PROCESSING);
  709. // 2xx successful
  710. BIND_ENUM_CONSTANT(RESPONSE_OK);
  711. BIND_ENUM_CONSTANT(RESPONSE_CREATED);
  712. BIND_ENUM_CONSTANT(RESPONSE_ACCEPTED);
  713. BIND_ENUM_CONSTANT(RESPONSE_NON_AUTHORITATIVE_INFORMATION);
  714. BIND_ENUM_CONSTANT(RESPONSE_NO_CONTENT);
  715. BIND_ENUM_CONSTANT(RESPONSE_RESET_CONTENT);
  716. BIND_ENUM_CONSTANT(RESPONSE_PARTIAL_CONTENT);
  717. BIND_ENUM_CONSTANT(RESPONSE_MULTI_STATUS);
  718. BIND_ENUM_CONSTANT(RESPONSE_ALREADY_REPORTED);
  719. BIND_ENUM_CONSTANT(RESPONSE_IM_USED);
  720. // 3xx redirection
  721. BIND_ENUM_CONSTANT(RESPONSE_MULTIPLE_CHOICES);
  722. BIND_ENUM_CONSTANT(RESPONSE_MOVED_PERMANENTLY);
  723. BIND_ENUM_CONSTANT(RESPONSE_FOUND);
  724. BIND_ENUM_CONSTANT(RESPONSE_SEE_OTHER);
  725. BIND_ENUM_CONSTANT(RESPONSE_NOT_MODIFIED);
  726. BIND_ENUM_CONSTANT(RESPONSE_USE_PROXY);
  727. BIND_ENUM_CONSTANT(RESPONSE_SWITCH_PROXY);
  728. BIND_ENUM_CONSTANT(RESPONSE_TEMPORARY_REDIRECT);
  729. BIND_ENUM_CONSTANT(RESPONSE_PERMANENT_REDIRECT);
  730. // 4xx client error
  731. BIND_ENUM_CONSTANT(RESPONSE_BAD_REQUEST);
  732. BIND_ENUM_CONSTANT(RESPONSE_UNAUTHORIZED);
  733. BIND_ENUM_CONSTANT(RESPONSE_PAYMENT_REQUIRED);
  734. BIND_ENUM_CONSTANT(RESPONSE_FORBIDDEN);
  735. BIND_ENUM_CONSTANT(RESPONSE_NOT_FOUND);
  736. BIND_ENUM_CONSTANT(RESPONSE_METHOD_NOT_ALLOWED);
  737. BIND_ENUM_CONSTANT(RESPONSE_NOT_ACCEPTABLE);
  738. BIND_ENUM_CONSTANT(RESPONSE_PROXY_AUTHENTICATION_REQUIRED);
  739. BIND_ENUM_CONSTANT(RESPONSE_REQUEST_TIMEOUT);
  740. BIND_ENUM_CONSTANT(RESPONSE_CONFLICT);
  741. BIND_ENUM_CONSTANT(RESPONSE_GONE);
  742. BIND_ENUM_CONSTANT(RESPONSE_LENGTH_REQUIRED);
  743. BIND_ENUM_CONSTANT(RESPONSE_PRECONDITION_FAILED);
  744. BIND_ENUM_CONSTANT(RESPONSE_REQUEST_ENTITY_TOO_LARGE);
  745. BIND_ENUM_CONSTANT(RESPONSE_REQUEST_URI_TOO_LONG);
  746. BIND_ENUM_CONSTANT(RESPONSE_UNSUPPORTED_MEDIA_TYPE);
  747. BIND_ENUM_CONSTANT(RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE);
  748. BIND_ENUM_CONSTANT(RESPONSE_EXPECTATION_FAILED);
  749. BIND_ENUM_CONSTANT(RESPONSE_IM_A_TEAPOT);
  750. BIND_ENUM_CONSTANT(RESPONSE_MISDIRECTED_REQUEST);
  751. BIND_ENUM_CONSTANT(RESPONSE_UNPROCESSABLE_ENTITY);
  752. BIND_ENUM_CONSTANT(RESPONSE_LOCKED);
  753. BIND_ENUM_CONSTANT(RESPONSE_FAILED_DEPENDENCY);
  754. BIND_ENUM_CONSTANT(RESPONSE_UPGRADE_REQUIRED);
  755. BIND_ENUM_CONSTANT(RESPONSE_PRECONDITION_REQUIRED);
  756. BIND_ENUM_CONSTANT(RESPONSE_TOO_MANY_REQUESTS);
  757. BIND_ENUM_CONSTANT(RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE);
  758. BIND_ENUM_CONSTANT(RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS);
  759. // 5xx server error
  760. BIND_ENUM_CONSTANT(RESPONSE_INTERNAL_SERVER_ERROR);
  761. BIND_ENUM_CONSTANT(RESPONSE_NOT_IMPLEMENTED);
  762. BIND_ENUM_CONSTANT(RESPONSE_BAD_GATEWAY);
  763. BIND_ENUM_CONSTANT(RESPONSE_SERVICE_UNAVAILABLE);
  764. BIND_ENUM_CONSTANT(RESPONSE_GATEWAY_TIMEOUT);
  765. BIND_ENUM_CONSTANT(RESPONSE_HTTP_VERSION_NOT_SUPPORTED);
  766. BIND_ENUM_CONSTANT(RESPONSE_VARIANT_ALSO_NEGOTIATES);
  767. BIND_ENUM_CONSTANT(RESPONSE_INSUFFICIENT_STORAGE);
  768. BIND_ENUM_CONSTANT(RESPONSE_LOOP_DETECTED);
  769. BIND_ENUM_CONSTANT(RESPONSE_NOT_EXTENDED);
  770. BIND_ENUM_CONSTANT(RESPONSE_NETWORK_AUTH_REQUIRED);
  771. }