| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*  http_client.h                                                        */ | 
					
						
							|  |  |  | /*************************************************************************/ | 
					
						
							|  |  |  | /*                       This file is part of:                           */ | 
					
						
							|  |  |  | /*                           GODOT ENGINE                                */ | 
					
						
							| 
									
										
										
										
											2017-08-27 14:16:55 +02:00
										 |  |  | /*                      https://godotengine.org                          */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | /*************************************************************************/ | 
					
						
							| 
									
										
										
										
											2021-01-01 20:13:46 +01:00
										 |  |  | /* Copyright (c) 2007-2021 Juan Linietsky, Ariel Manzur.                 */ | 
					
						
							|  |  |  | /* Copyright (c) 2014-2021 Godot Engine contributors (cf. AUTHORS.md).   */ | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03: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-05 00:50:27 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | #ifndef HTTP_CLIENT_H
 | 
					
						
							|  |  |  | #define HTTP_CLIENT_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2018-09-11 18:13:45 +02:00
										 |  |  | #include "core/io/ip.h"
 | 
					
						
							|  |  |  | #include "core/io/stream_peer.h"
 | 
					
						
							|  |  |  | #include "core/io/stream_peer_tcp.h"
 | 
					
						
							| 
									
										
										
										
											2020-11-07 19:33:38 -03:00
										 |  |  | #include "core/object/reference.h"
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | class HTTPClient : public Reference { | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	GDCLASS(HTTPClient, Reference); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2016-06-03 20:44:37 +02:00
										 |  |  | 	enum ResponseCode { | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		// 1xx informational
 | 
					
						
							|  |  |  | 		RESPONSE_CONTINUE = 100, | 
					
						
							|  |  |  | 		RESPONSE_SWITCHING_PROTOCOLS = 101, | 
					
						
							|  |  |  | 		RESPONSE_PROCESSING = 102, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// 2xx successful
 | 
					
						
							|  |  |  | 		RESPONSE_OK = 200, | 
					
						
							|  |  |  | 		RESPONSE_CREATED = 201, | 
					
						
							|  |  |  | 		RESPONSE_ACCEPTED = 202, | 
					
						
							|  |  |  | 		RESPONSE_NON_AUTHORITATIVE_INFORMATION = 203, | 
					
						
							|  |  |  | 		RESPONSE_NO_CONTENT = 204, | 
					
						
							|  |  |  | 		RESPONSE_RESET_CONTENT = 205, | 
					
						
							|  |  |  | 		RESPONSE_PARTIAL_CONTENT = 206, | 
					
						
							|  |  |  | 		RESPONSE_MULTI_STATUS = 207, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_ALREADY_REPORTED = 208, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RESPONSE_IM_USED = 226, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		// 3xx redirection
 | 
					
						
							|  |  |  | 		RESPONSE_MULTIPLE_CHOICES = 300, | 
					
						
							|  |  |  | 		RESPONSE_MOVED_PERMANENTLY = 301, | 
					
						
							|  |  |  | 		RESPONSE_FOUND = 302, | 
					
						
							|  |  |  | 		RESPONSE_SEE_OTHER = 303, | 
					
						
							|  |  |  | 		RESPONSE_NOT_MODIFIED = 304, | 
					
						
							|  |  |  | 		RESPONSE_USE_PROXY = 305, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_SWITCH_PROXY = 306, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RESPONSE_TEMPORARY_REDIRECT = 307, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_PERMANENT_REDIRECT = 308, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// 4xx client error
 | 
					
						
							|  |  |  | 		RESPONSE_BAD_REQUEST = 400, | 
					
						
							|  |  |  | 		RESPONSE_UNAUTHORIZED = 401, | 
					
						
							|  |  |  | 		RESPONSE_PAYMENT_REQUIRED = 402, | 
					
						
							|  |  |  | 		RESPONSE_FORBIDDEN = 403, | 
					
						
							|  |  |  | 		RESPONSE_NOT_FOUND = 404, | 
					
						
							|  |  |  | 		RESPONSE_METHOD_NOT_ALLOWED = 405, | 
					
						
							|  |  |  | 		RESPONSE_NOT_ACCEPTABLE = 406, | 
					
						
							|  |  |  | 		RESPONSE_PROXY_AUTHENTICATION_REQUIRED = 407, | 
					
						
							|  |  |  | 		RESPONSE_REQUEST_TIMEOUT = 408, | 
					
						
							|  |  |  | 		RESPONSE_CONFLICT = 409, | 
					
						
							|  |  |  | 		RESPONSE_GONE = 410, | 
					
						
							|  |  |  | 		RESPONSE_LENGTH_REQUIRED = 411, | 
					
						
							|  |  |  | 		RESPONSE_PRECONDITION_FAILED = 412, | 
					
						
							|  |  |  | 		RESPONSE_REQUEST_ENTITY_TOO_LARGE = 413, | 
					
						
							|  |  |  | 		RESPONSE_REQUEST_URI_TOO_LONG = 414, | 
					
						
							|  |  |  | 		RESPONSE_UNSUPPORTED_MEDIA_TYPE = 415, | 
					
						
							|  |  |  | 		RESPONSE_REQUESTED_RANGE_NOT_SATISFIABLE = 416, | 
					
						
							|  |  |  | 		RESPONSE_EXPECTATION_FAILED = 417, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_IM_A_TEAPOT = 418, | 
					
						
							|  |  |  | 		RESPONSE_MISDIRECTED_REQUEST = 421, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RESPONSE_UNPROCESSABLE_ENTITY = 422, | 
					
						
							|  |  |  | 		RESPONSE_LOCKED = 423, | 
					
						
							|  |  |  | 		RESPONSE_FAILED_DEPENDENCY = 424, | 
					
						
							|  |  |  | 		RESPONSE_UPGRADE_REQUIRED = 426, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_PRECONDITION_REQUIRED = 428, | 
					
						
							|  |  |  | 		RESPONSE_TOO_MANY_REQUESTS = 429, | 
					
						
							|  |  |  | 		RESPONSE_REQUEST_HEADER_FIELDS_TOO_LARGE = 431, | 
					
						
							|  |  |  | 		RESPONSE_UNAVAILABLE_FOR_LEGAL_REASONS = 451, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 		// 5xx server error
 | 
					
						
							|  |  |  | 		RESPONSE_INTERNAL_SERVER_ERROR = 500, | 
					
						
							|  |  |  | 		RESPONSE_NOT_IMPLEMENTED = 501, | 
					
						
							|  |  |  | 		RESPONSE_BAD_GATEWAY = 502, | 
					
						
							|  |  |  | 		RESPONSE_SERVICE_UNAVAILABLE = 503, | 
					
						
							|  |  |  | 		RESPONSE_GATEWAY_TIMEOUT = 504, | 
					
						
							|  |  |  | 		RESPONSE_HTTP_VERSION_NOT_SUPPORTED = 505, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_VARIANT_ALSO_NEGOTIATES = 506, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RESPONSE_INSUFFICIENT_STORAGE = 507, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_LOOP_DETECTED = 508, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		RESPONSE_NOT_EXTENDED = 510, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		RESPONSE_NETWORK_AUTH_REQUIRED = 511, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Method { | 
					
						
							|  |  |  | 		METHOD_GET, | 
					
						
							|  |  |  | 		METHOD_HEAD, | 
					
						
							|  |  |  | 		METHOD_POST, | 
					
						
							|  |  |  | 		METHOD_PUT, | 
					
						
							|  |  |  | 		METHOD_DELETE, | 
					
						
							|  |  |  | 		METHOD_OPTIONS, | 
					
						
							|  |  |  | 		METHOD_TRACE, | 
					
						
							|  |  |  | 		METHOD_CONNECT, | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 		METHOD_PATCH, | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		METHOD_MAX | 
					
						
							| 
									
										
										
										
											2017-12-10 23:18:44 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Status { | 
					
						
							|  |  |  | 		STATUS_DISCONNECTED, | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 		STATUS_RESOLVING, // Resolving hostname (if passed a hostname)
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		STATUS_CANT_RESOLVE, | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 		STATUS_CONNECTING, // Connecting to IP
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		STATUS_CANT_CONNECT, | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 		STATUS_CONNECTED, // Connected, requests can be made
 | 
					
						
							|  |  |  | 		STATUS_REQUESTING, // Request in progress
 | 
					
						
							|  |  |  | 		STATUS_BODY, // Request resulted in body, which must be read
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 		STATUS_CONNECTION_ERROR, | 
					
						
							| 
									
										
										
										
											2014-04-28 21:56:43 -03:00
										 |  |  | 		STATUS_SSL_HANDSHAKE_ERROR, | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | private: | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 	static const char *_methods[METHOD_MAX]; | 
					
						
							|  |  |  | 	static const int HOST_MIN_LEN = 4; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	enum Port { | 
					
						
							|  |  |  | 		PORT_HTTP = 80, | 
					
						
							|  |  |  | 		PORT_HTTPS = 443, | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	}; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-26 03:39:41 +02:00
										 |  |  | #ifndef JAVASCRIPT_ENABLED
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	Status status = STATUS_DISCONNECTED; | 
					
						
							|  |  |  | 	IP::ResolverID resolving = IP::RESOLVER_INVALID_ID; | 
					
						
							|  |  |  | 	int conn_port = -1; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	String conn_host; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool ssl = false; | 
					
						
							|  |  |  | 	bool ssl_verify_host = false; | 
					
						
							|  |  |  | 	bool blocking = false; | 
					
						
							|  |  |  | 	bool handshaking = false; | 
					
						
							|  |  |  | 	bool head_request = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Vector<uint8_t> response_str; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	bool chunked = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Vector<uint8_t> chunk; | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	int chunk_left = 0; | 
					
						
							|  |  |  | 	bool chunk_trailer_part = false; | 
					
						
							|  |  |  | 	int body_size = -1; | 
					
						
							|  |  |  | 	int body_left = 0; | 
					
						
							|  |  |  | 	bool read_until_eof = false; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Ref<StreamPeerTCP> tcp_connection; | 
					
						
							|  |  |  | 	Ref<StreamPeer> connection; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-05-12 17:01:17 +02:00
										 |  |  | 	int response_num = 0; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Vector<String> response_headers; | 
					
						
							| 
									
										
										
										
											2020-10-19 14:41:29 +02:00
										 |  |  | 	// 64 KiB by default (favors fast download speeds at the cost of memory usage).
 | 
					
						
							|  |  |  | 	int read_chunk_size = 65536; | 
					
						
							| 
									
										
										
										
											2017-10-26 03:39:41 +02:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	Error _get_http_data(uint8_t *p_buffer, int p_bytes, int &r_received); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #else
 | 
					
						
							|  |  |  | #include "platform/javascript/http_client.h.inc"
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	PackedStringArray _get_response_headers(); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Dictionary _get_response_headers_as_dictionary(); | 
					
						
							| 
									
										
										
										
											2015-02-11 07:57:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-10-26 03:39:41 +02:00
										 |  |  | 	static void _bind_methods(); | 
					
						
							| 
									
										
										
										
											2015-02-11 07:57:39 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | public: | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 	Error connect_to_host(const String &p_host, int p_port = -1, bool p_ssl = false, bool p_verify_host = true); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	void set_connection(const Ref<StreamPeer> &p_connection); | 
					
						
							| 
									
										
										
										
											2016-04-17 12:23:34 +08:00
										 |  |  | 	Ref<StreamPeer> get_connection() const; | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	Error request_raw(Method p_method, const String &p_url, const Vector<String> &p_headers, const Vector<uint8_t> &p_body); | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	Error request(Method p_method, const String &p_url, const Vector<String> &p_headers, const String &p_body = String()); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	void close(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	Status get_status() const; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	bool has_response() const; | 
					
						
							|  |  |  | 	bool is_response_chunked() const; | 
					
						
							|  |  |  | 	int get_response_code() const; | 
					
						
							|  |  |  | 	Error get_response_headers(List<String> *r_response); | 
					
						
							|  |  |  | 	int get_response_body_length() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2020-02-17 18:06:54 -03:00
										 |  |  | 	PackedByteArray read_response_body_chunk(); // Can't get body as partial text because of most encodings UTF8, gzip, etc.
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-12-12 20:02:25 +01:00
										 |  |  | 	void set_blocking_mode(bool p_enable); // Useful mostly if running in a thread
 | 
					
						
							| 
									
										
										
										
											2014-04-28 21:56:43 -03:00
										 |  |  | 	bool is_blocking_mode_enabled() const; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2015-02-11 07:57:39 -03:00
										 |  |  | 	void set_read_chunk_size(int p_size); | 
					
						
							| 
									
										
										
										
											2019-11-24 13:20:24 +01:00
										 |  |  | 	int get_read_chunk_size() const; | 
					
						
							| 
									
										
										
										
											2014-04-28 21:56:43 -03:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	Error poll(); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-03-05 16:44:50 +01:00
										 |  |  | 	String query_string_from_dict(const Dictionary &p_dict); | 
					
						
							| 
									
										
										
										
											2015-11-18 22:33:29 +11:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 	HTTPClient(); | 
					
						
							|  |  |  | 	~HTTPClient(); | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2017-08-20 17:45:01 +02:00
										 |  |  | VARIANT_ENUM_CAST(HTTPClient::ResponseCode) | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | VARIANT_ENUM_CAST(HTTPClient::Method); | 
					
						
							| 
									
										
										
										
											2016-06-22 23:12:20 -03:00
										 |  |  | VARIANT_ENUM_CAST(HTTPClient::Status); | 
					
						
							| 
									
										
										
										
											2014-02-09 22:10:30 -03:00
										 |  |  | 
 | 
					
						
							|  |  |  | #endif // HTTP_CLIENT_H
 |