TDME2 1.9.121
HTTPClient.h
Go to the documentation of this file.
1#pragma once
2
3#include <sstream>
4#include <unordered_map>
5#include <vector>
6
7#include <tdme/tdme.h>
11
12using std::string;
13using std::stringstream;
14using std::unordered_map;
15using std::vector;
16
19
20/**
21 * Basic HTTP client
22 * @author Andreas Drewke
23 */
25
26private:
27 string url;
28 string method;
29 unordered_map<string, string> getParameters;
30 unordered_map<string, string> postParameters;
31 string body;
33 string username;
34 string password;
35
36 stringstream rawResponse;
38 vector<string> httpHeader;
39
40 /**
41 * Create HTTP request headers
42 * @param hostName host name
43 * @param method method
44 * @param relativeUrl url relative to server root
45 * @param getParameters get parameters
46 * @param postParameter post parameters
47 * @param body body
48 */
49 string createHTTPRequestHeaders(const string& hostName, const string& method, const string& relativeUrl, const unordered_map<string, string>& getParameters, const unordered_map<string, string>& postParameters, const string& body);
50
51 /**
52 * Parse HTTP response headers
53 * @param rawResponse raw response
54 * @param httpStatusCode HTTP status code
55 * @param httpHeader HTTP header
56 */
57 void parseHTTPResponseHeaders(stringstream& rawResponse, int16_t& httpStatusCode, vector<string>& httpHeader);
58
59public:
60
61 static const constexpr int16_t HTTP_STATUSCODE_OK { 200 };
62
63 static const string HTTP_METHOD_GET;
64 static const string HTTP_METHOD_HEAD;
65 static const string HTTP_METHOD_POST;
66 static const string HTTP_METHOD_PUT;
67 static const string HTTP_METHOD_DELETE;
68
69 /**
70 * Get URL
71 * @return URL
72 */
73 inline const string& getURL() {
74 return url;
75 }
76
77 /**
78 * Set URL
79 * @param url URL
80 */
81 inline void setURL(const string& url) {
82 this->url = url;
83 }
84
85 /**
86 * Get method
87 * @return method
88 */
89 inline const string& getMethod() {
90 return method;
91 }
92
93 /**
94 * Set method
95 * @param method method
96 */
97 inline void setMethod(const string& method) {
98 this->method = method;
99 }
100
101 /**
102 * Get username
103 * @return username
104 */
105 inline const string& getUsername() {
106 return username;
107 }
108
109 /**
110 * Set username
111 * @param username user name
112 */
113 inline void setUsername(const string& username) {
114 this->username = username;
115 }
116
117 /**
118 * Get password
119 * @return password
120 */
121 inline const string& getPassword() {
122 return password;
123 }
124
125 /**
126 * Set password
127 * @param password password
128 */
129 inline void setPassword(const string& password) {
130 this->password = password;
131 }
132
133 /**
134 * Get GET parameter
135 * @return GET parameter
136 */
137 inline const unordered_map<string, string>& getGETParameters() {
138 return getParameters;
139 }
140
141 /**
142 * Set GET parameter
143 * @param GET parameter
144 */
145 inline void setGETParameters(const unordered_map<string, string>& parameters) {
146 this->getParameters = parameters;
147 }
148
149 /**
150 * Get POST parameter
151 * @return POST parameter
152 */
153 inline const unordered_map<string, string>& getPOSTParameters() {
154 return postParameters;
155 }
156
157 /**
158 * Set POST parameter
159 * @param POST parameter
160 */
161 inline void setPOSTParameters(const unordered_map<string, string>& parameters) {
162 this->postParameters = parameters;
163 }
164
165 /**
166 * Get body
167 * @return body
168 */
169 inline const string& getBody() {
170 return body;
171 }
172
173 /**
174 * Set body
175 * @param contentType content type
176 * @param body body
177 */
178 inline void setBody(const string& contentType, const string& body) {
179 this->contentType = contentType;
180 this->body = body;
181 }
182
183 /**
184 * Get content type
185 * @return content type
186 */
187 inline const string& getContentType() {
188 return contentType;
189 }
190
191 /**
192 * Set content type
193 * @param contentType content type
194 */
195 inline void setContentType(const string& contentType) {
196 this->contentType = contentType;
197 }
198
199
200 /**
201 * Reset this HTTP client
202 */
203 void reset();
204
205 /**
206 * Execute HTTP request
207 * @throws tdme::network::httpclient::HTTPClientException
208 * @throws tdme::os::network::NetworkException
209 */
210 void execute();
211
212 /**
213 * @return complete response stream
214 */
215 inline stringstream& getResponse() {
216 return rawResponse;
217 }
218
219 /**
220 * @return HTTP status code
221 */
222 inline int16_t getStatusCode() {
223 return httpStatusCode;
224 }
225
226 /**
227 * @return HTTP response headers
228 */
229 inline const vector<string>& getResponseHeaders() {
230 return httpHeader;
231 }
232
233 /**
234 * Returns a URL encoded representation of value
235 * @return URL encoded value
236 */
237 static string urlEncode(const string& value);
238
239};
void setBody(const string &contentType, const string &body)
Set body.
Definition: HTTPClient.h:178
static const string HTTP_METHOD_GET
Definition: HTTPClient.h:63
const unordered_map< string, string > & getGETParameters()
Get GET parameter.
Definition: HTTPClient.h:137
void setContentType(const string &contentType)
Set content type.
Definition: HTTPClient.h:195
static const string HTTP_METHOD_DELETE
Definition: HTTPClient.h:67
const string & getBody()
Get body.
Definition: HTTPClient.h:169
const vector< string > & getResponseHeaders()
Definition: HTTPClient.h:229
const unordered_map< string, string > & getPOSTParameters()
Get POST parameter.
Definition: HTTPClient.h:153
const string & getPassword()
Get password.
Definition: HTTPClient.h:121
void setPassword(const string &password)
Set password.
Definition: HTTPClient.h:129
static const constexpr int16_t HTTP_STATUSCODE_OK
Definition: HTTPClient.h:61
void setPOSTParameters(const unordered_map< string, string > &parameters)
Set POST parameter.
Definition: HTTPClient.h:161
const string & getURL()
Get URL.
Definition: HTTPClient.h:73
void execute()
Execute HTTP request.
Definition: HTTPClient.cpp:159
static const string HTTP_METHOD_POST
Definition: HTTPClient.h:65
static const string HTTP_METHOD_PUT
Definition: HTTPClient.h:66
unordered_map< string, string > getParameters
Definition: HTTPClient.h:29
void parseHTTPResponseHeaders(stringstream &rawResponse, int16_t &httpStatusCode, vector< string > &httpHeader)
Parse HTTP response headers.
Definition: HTTPClient.cpp:116
void setGETParameters(const unordered_map< string, string > &parameters)
Set GET parameter.
Definition: HTTPClient.h:145
static const string HTTP_METHOD_HEAD
Definition: HTTPClient.h:64
void setUsername(const string &username)
Set username.
Definition: HTTPClient.h:113
string createHTTPRequestHeaders(const string &hostName, const string &method, const string &relativeUrl, const unordered_map< string, string > &getParameters, const unordered_map< string, string > &postParameters, const string &body)
Create HTTP request headers.
Definition: HTTPClient.cpp:78
const string & getContentType()
Get content type.
Definition: HTTPClient.h:187
void setMethod(const string &method)
Set method.
Definition: HTTPClient.h:97
unordered_map< string, string > postParameters
Definition: HTTPClient.h:30
static string urlEncode(const string &value)
Returns a URL encoded representation of value.
Definition: HTTPClient.cpp:53
const string & getMethod()
Get method.
Definition: HTTPClient.h:89
void reset()
Reset this HTTP client.
Definition: HTTPClient.cpp:146
const string & getUsername()
Get username.
Definition: HTTPClient.h:105
void setURL(const string &url)
Set URL.
Definition: HTTPClient.h:81
Base exception class for network exceptions.