From 8b1dcbfe4d92f9d7273bbd2f1eb805e5c508961a Mon Sep 17 00:00:00 2001 From: Juan Linietsky Date: Sat, 12 Mar 2016 10:44:12 -0300 Subject: -Made editor support SSL certs by default (embedded them) -Made asset sharing support https -Many fixes to HTTPRequest -Added an asset installer dialog -Visual cleanups to asset sharing tab -Fixed some issues in ScrollContainer, hope it does not break things -Asset sharing tab is not visible (hidden on purpose) for now. --- scene/main/http_request.h | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) (limited to 'scene/main/http_request.h') diff --git a/scene/main/http_request.h b/scene/main/http_request.h index 2afcdeb23..7659d9e6d 100644 --- a/scene/main/http_request.h +++ b/scene/main/http_request.h @@ -3,6 +3,7 @@ #include "node.h" #include "io/http_client.h" +#include "os/file_access.h" class HTTPRequest : public Node { @@ -20,6 +21,8 @@ public: RESULT_NO_RESPONSE, RESULT_BODY_SIZE_LIMIT_EXCEEDED, RESULT_REQUEST_FAILED, + RESULT_DOWNLOAD_FILE_CANT_OPEN, + RESULT_DOWNLOAD_FILE_WRITE_ERROR, RESULT_REDIRECT_LIMIT_REACHED }; @@ -44,8 +47,12 @@ private: int response_code; DVector response_headers; - int body_len; + String download_to_file; + + FileAccess *file; + int body_len; + int downloaded; int body_size_limit; int redirections; @@ -58,8 +65,12 @@ private: void _redirect_request(const String& p_new_url); + bool _handle_response(bool *ret_value); + + Error _parse_url(const String& p_url); Error _request(); + protected: void _notification(int p_what); @@ -73,13 +84,20 @@ public: void set_use_threads(bool p_use); bool is_using_threads() const; + void set_download_file(const String& p_file); + String get_download_file() const; + void set_body_size_limit(int p_bytes); int get_body_size_limit() const; void set_max_redirects(int p_max); int get_max_redirects() const; + int get_downloaded_bytes() const; + int get_body_size() const; + HTTPRequest(); + ~HTTPRequest(); }; #endif // HTTPREQUEST_H -- cgit v1.2.3-70-g09d2