| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | // Copyright (c) 2016-2018 Easy2D - Nomango
 | 
					
						
							|  |  |  | // 
 | 
					
						
							|  |  |  | // 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.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #pragma once
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | namespace easy2d | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  | 	namespace network | 
					
						
							|  |  |  | 	{ | 
					
						
							| 
									
										
										
										
											2019-04-08 14:15:27 +08:00
										 |  |  | 		typedef Closure<void(HttpRequestPtr, HttpResponsePtr)> ResponseCallback; | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-04-05 16:06:32 +08:00
										 |  |  | 		class E2D_API HttpRequest | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			: public Object | 
					
						
							|  |  |  | 		{ | 
					
						
							|  |  |  | 		public: | 
					
						
							|  |  |  | 			enum class Type | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				Unknown, | 
					
						
							|  |  |  | 				Get, | 
					
						
							|  |  |  | 				Post, | 
					
						
							|  |  |  | 				Put, | 
					
						
							|  |  |  | 				Delete | 
					
						
							|  |  |  | 			}; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline HttpRequest() | 
					
						
							|  |  |  | 				: type_(Type::Unknown) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline HttpRequest(Type type) | 
					
						
							|  |  |  | 				: type_(type) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline void SetUrl(String const& url) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 				url_ = url; | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 13:09:31 +08:00
										 |  |  | 			inline String const& GetUrl() const | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				return url_; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline void SetType(Type type) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				type_ = type; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline Type GetType() const | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				return type_; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline void SetData(String const& data) | 
					
						
							|  |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 				data_ = data; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline void SetJsonData(Json const& json) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				SetHeader(L"Content-Type", L"application/json;charset=UTF-8"); | 
					
						
							|  |  |  | 				data_ = json.dump(); | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 13:09:31 +08:00
										 |  |  | 			inline String const& GetData() const | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				return data_; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 			inline void SetHeaders(Map<String, String> const& headers) | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			{ | 
					
						
							| 
									
										
										
										
											2019-03-31 13:09:31 +08:00
										 |  |  | 				headers_ = headers; | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 			inline void SetHeader(String const& field, String const& content) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				auto iter = headers_.find(field); | 
					
						
							|  |  |  | 				if (iter != headers_.end()) | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					headers_[field] = content; | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 				else | 
					
						
							|  |  |  | 				{ | 
					
						
							|  |  |  | 					headers_.insert(std::make_pair(field, content)); | 
					
						
							|  |  |  | 				} | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline Map<String, String>& GetHeaders() | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			{ | 
					
						
							|  |  |  | 				return headers_; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 			inline String const& GetHeader(String const& header) const | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				return headers_.at(header); | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			inline void SetResponseCallback(ResponseCallback const& callback) | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				response_cb_ = callback; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 			inline ResponseCallback const& GetResponseCallback() const | 
					
						
							|  |  |  | 			{ | 
					
						
							|  |  |  | 				return response_cb_; | 
					
						
							|  |  |  | 			} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 		protected: | 
					
						
							|  |  |  | 			Type type_; | 
					
						
							| 
									
										
										
										
											2019-03-31 13:09:31 +08:00
										 |  |  | 			String url_; | 
					
						
							|  |  |  | 			String data_; | 
					
						
							| 
									
										
										
										
											2019-03-31 23:09:49 +08:00
										 |  |  | 			Map<String, String> headers_; | 
					
						
							| 
									
										
										
										
											2019-03-31 01:37:06 +08:00
										 |  |  | 			ResponseCallback response_cb_; | 
					
						
							|  |  |  | 		}; | 
					
						
							|  |  |  | 	} | 
					
						
							|  |  |  | } |