-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrequest.h
303 lines (217 loc) · 3.48 KB
/
request.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
//
// Copyright (c) 2015 Little Star Media, Inc.
// MIT licensed
//
#ifndef LS_REQUEST_H
#define LS_REQUEST_H 1
#include <string>
#include <map>
namespace littlstar {
/**
* Header map.
*/
typedef std::map<std::string, std::string> HeaderMap;
/**
* Response.
*/
class Response {
public:
Response();
~Response();
/**
* "OK" shorthand flag.
*/
int ok;
/**
* Response status code.
*/
int status;
/**
* Response body.
*/
std::string data;
/**
* Headers.
*/
HeaderMap headers;
};
/**
* Supported request methods.
*/
typedef enum {
REQUEST_GET
, REQUEST_POST
, REQUEST_PUT
, REQUEST_DELETE
} RequestMethod;
/**
* Request.
*/
class Request {
public:
Request();
~Request();
/**
* Set request method to GET using `url`.
*/
void
Get(const std::string &url);
/**
* Set request method to PUT using `url`.
*/
void
Put(const std::string &url);
/**
* Set request method to POST using `url`.
*/
void
Post(const std::string &url);
/**
* Set request method to DELETE using `url`.
*/
void
Delete(const std::string &url);
/**
* Set the user agent.
*/
void
UserAgent(const std::string &user_agent);
/**
* Set follow redirects flag to `val`.
*/
void
FollowRedirects(bool val);
/**
* Set header `field` to `val`.
*/
void
Set(const std::string &field, const std::string &val);
/**
* Set content-type to `type`.
*
* TODO: map stuff like "json" => "application/json"
*/
void
Type(const std::string &type);
/**
* Set Accept to `type`
*
* TODO: map for ease of use (json => application/json, etc.)
*/
void
Accept(const std::string &type);
/**
* Set Authorization field value with `user` and `pass`.
*/
void
Auth(const std::string &user, const std::string &pass);
/**
* Send the given `data` along with the request.
*/
void
Send(const std::string &data);
/**
* Get all headers.
*/
HeaderMap
Headers();
/**
* Add query string `val`.
*/
void
Query(const std::string &val);
/**
* Add query string `field=val`.
*/
void
Query(const std::string &field, const std::string &val);
/**
* Get request `url`.
*/
std::string
Url();
/**
* Initiate request.
*/
Response *
End();
private:
/**
* Should we follow 30x redirects?
*/
bool follow_redirects;
/**
* User agent.
*/
std::string user_agent;
/**
* Request URL.
*/
std::string url;
/**
* Auth username.
*/
std::string auth_username;
/**
* Auth password.
*/
std::string auth_password;
/**
* POST/PUT data.
*/
std::string data;
/**
* Request method.
*/
RequestMethod method;
/**
* Request headers.
*/
HeaderMap headers;
/**
* Query string map.
*/
std::map<std::string, std::string> query;
/**
* Has auth been set?
*/
bool
HasAuth();
/**
* Build query string.
*/
std::string
QueryString();
/**
* Write data callback.
*/
static size_t
WriteCallback(
void *data
, size_t size
, size_t nmemb
, void *userdata
);
/**
* Header callback.
*/
static size_t
HeaderCallback(
void *data
, size_t size
, size_t nmemb
, void *userdata
);
/**
* Read callback.
*/
static size_t
ReadCallback(
void *data
, size_t size
, size_t nmemb
, void *userdata
);
}; // Request
} // littlstar
#endif // LS_REQUEST_H