FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
libhttpserver/src/httpserver/http_request.hpp at master · chendaole/libhttpserver · GitHub
chendaole
/
libhttpserver
Public
forked from
etr/libhttpserver
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
libhttpserver
/
src
/
httpserver
/
http_request.hpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
422 lines (360 loc) · 13.8 KB
Breadcrumbs
libhttpserver
/
src
/
httpserver
/
http_request.hpp
Copy path
File metadata and controls
422 lines (360 loc) · 13.8 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
This file is part of libhttpserver
Copyright (C) 2011-2019 Sebastiano Merlino
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
USA
*/
#
if
!defined (_HTTPSERVER_HPP_INSIDE_) && !defined (HTTPSERVER_COMPILATION)
#
error
"Only <httpserver.hpp> or <httpserverpp> can be included directly."
#
endif
#
ifndef
_HTTP_REQUEST_HPP_
#
define
_HTTP_REQUEST_HPP_
#
include
<
map
>
#
include
<
vector
>
#
include
<
string
>
#
include
<
utility
>
#
include
<
iosfwd
>
struct
MHD_Connection
;
namespace
httpserver
{
class
webserver
;
namespace
http
{
class
header_comparator
;
class
arg_comparator
;
};
/*
*
* Class representing an abstraction for an Http Request. It is used from classes using these apis to receive information through http protocol.
*
*/
class
http_request
{
public:
static
const
std::string
EMPTY
;
/*
*
* Method used to get the username eventually passed through basic authentication.
* @return string representation of the username.
*
*/
const
std::string
get_user
()
const
;
/*
*
* Method used to get the username extracted from a digest authentication
* @return the username
*
*/
const
std::string
get_digested_user
()
const
;
/*
*
* Method used to get the password eventually passed through basic authentication.
* @return string representation of the password.
*
*/
const
std::string
get_pass
()
const
;
/*
*
* Method used to get the path requested
* @return string representing the path requested.
*
*/
const
std::string&
get_path
()
const
{
return
this
->
path
;
}
/*
*
* Method used to get all pieces of the path requested; considering an url splitted by '/'.
* @return a vector of strings containing all pieces
*
*/
const
std::vector<std::string>&
get_path_pieces
()
const
{
return
this
->
post_path
;
}
/*
*
* Method used to obtain a specified piece of the path; considering an url splitted by '/'.
* @param index the index of the piece selected
* @return the selected piece in form of string
*
*/
const
std::string&
get_path_piece
(
int
index)
const
{
if
(((
int
)(
this
->
post_path
.
size
())) > index)
return
this
->
post_path
[index];
return
EMPTY
;
}
/*
*
* Method used to get the METHOD used to make the request.
* @return string representing the method.
*
*/
const
std::string&
get_method
()
const
{
return
this
->
method
;
}
/*
*
* Method used to get all headers passed with the request.
* @param result a map<string, string> > that will be filled with all headers
* @result the size of the map
*
*/
const
std::map<std::string, std::string, http::header_comparator>
get_headers
()
const
;
/*
*
* Method used to get all footers passed with the request.
* @param result a map<string, string> > that will be filled with all footers
* @result the size of the map
*
*/
const
std::map<std::string, std::string, http::header_comparator>
get_footers
()
const
;
/*
*
* Method used to get all cookies passed with the request.
* @param result a map<string, string> > that will be filled with all cookies
* @result the size of the map
*
*/
const
std::map<std::string, std::string, http::header_comparator>
get_cookies
()
const
;
/*
*
* Method used to get all args passed with the request.
* @param result a map<string, string> > that will be filled with all args
* @result the size of the map
*
*/
const
std::map<std::string, std::string, http::arg_comparator>
get_args
()
const
;
/*
*
* Method used to get a specific header passed with the request.
* @param key the specific header to get the value from
* @return the value of the header.
*
*/
const
std::string
get_header
(
const
std::string& key)
const
;
const
std::string
get_cookie
(
const
std::string& key)
const
;
/*
*
* Method used to get a specific footer passed with the request.
* @param key the specific footer to get the value from
* @return the value of the footer.
*
*/
const
std::string
get_footer
(
const
std::string& key)
const
;
/*
*
* Method used to get a specific argument passed with the request.
* @param ket the specific argument to get the value from
* @return the value of the arg.
*
*/
const
std::string
get_arg
(
const
std::string& key)
const
;
/*
*
* Method used to get the content of the request.
* @return the content in string representation
*
*/
const
std::string&
get_content
()
const
{
return
this
->
content
;
}
/*
*
* Method to check whether the size of the content reached or exceeded content_size_limit.
* @return boolean
*
*/
bool
content_too_large
()
const
{
return
content.
size
()>=content_size_limit;
}
/*
*
* Method used to get the content of the query string..
* @return the query string in string representation
*
*/
const
std::string
get_querystring
()
const
;
/*
*
* Method used to get the version of the request.
* @return the version in string representation
*
*/
const
std::string&
get_version
()
const
{
return
this
->
version
;
}
/*
*
* Method used to get the requestor.
* @return the requestor
*
*/
const
std::string
get_requestor
()
const
;
/*
*
* Method used to get the requestor port used.
* @return the requestor port
*
*/
unsigned
short
get_requestor_port
()
const
;
bool
check_digest_auth
(
const
std::string& realm,
const
std::string& password,
int
nonce_timeout,
bool
& reload_nonce
)
const
;
friend
std::ostream &
operator
<< (std::ostream &os, http_request &r);
private:
/*
*
* Default constructor of the class. It is a specific responsibility of apis to initialize this type of objects.
*
*/
http_request
():
content
(
"
"
),
content_size_limit
(
static_cast
<
size_t
>(-
1
)),
underlying_connection
(
0x0
),
unescaper
(
0x0
)
{
}
http_request
(MHD_Connection* underlying_connection, unescaper_ptr unescaper):
content
(
"
"
),
content_size_limit
(
static_cast
<
size_t
>(-
1
)),
underlying_connection
(underlying_connection),
unescaper
(unescaper)
{
}
/*
*
* Copy constructor.
* @param b http_request b to copy attributes from.
*
*/
http_request
(
const
http_request& b):
path
(b.path),
method
(b.method),
post_path
(b.post_path),
args
(b.args),
content
(b.content),
content_size_limit
(b.content_size_limit),
version
(b.version),
underlying_connection
(b.underlying_connection),
unescaper
(b.unescaper)
{
}
http_request
(http_request&& b)
noexcept
:
path
(std::move(b.path)),
method
(std::move(b.method)),
post_path
(std::move(b.post_path)),
args
(std::move(b.args)),
content
(std::move(b.content)),
content_size_limit
(b.content_size_limit),
version
(std::move(b.version)),
underlying_connection
(std::move(b.underlying_connection))
{
}
http_request&
operator
=(
const
http_request& b)
{
if
(
this
== &b)
return
*
this
;
this
->
path
= b.
path
;
this
->
method
= b.
method
;
this
->
post_path
= b.
post_path
;
this
->
args
= b.
args
;
this
->
content
= b.
content
;
this
->
content_size_limit
= b.
content_size_limit
;
this
->
version
= b.
version
;
this
->
underlying_connection
= b.
underlying_connection
;
return
*
this
;
}
http_request&
operator
=(http_request&& b)
{
if
(
this
== &b)
return
*
this
;
this
->
path
=
std::move
(b.
path
);
this
->
method
=
std::move
(b.
method
);
this
->
post_path
=
std::move
(b.
post_path
);
this
->
args
=
std::move
(b.
args
);
this
->
content
=
std::move
(b.
content
);
this
->
content_size_limit
= b.
content_size_limit
;
this
->
version
=
std::move
(b.
version
);
this
->
underlying_connection
=
std::move
(b.
underlying_connection
);
return
*
this
;
}
std::string path;
std::string method;
std::vector<std::string> post_path;
std::map<std::string, std::string, http::arg_comparator> args;
std::string content;
size_t
content_size_limit;
std::string version;
struct
MHD_Connection
* underlying_connection;
unescaper_ptr unescaper;
static
int
build_request_header
(
void
*cls,
enum
MHD_ValueKind kind,
const
char
*key,
const
char
*value
);
static
int
build_request_args
(
void
*cls,
enum
MHD_ValueKind kind,
const
char
*key,
const
char
*value
);
static
int
build_request_querystring
(
void
*cls,
enum
MHD_ValueKind kind,
const
char
*key,
const
char
*value
);
/*
*
* Method used to set an argument value by key.
* @param key The name identifying the argument
* @param value The value assumed by the argument
*
*/
void
set_arg
(
const
std::string& key,
const
std::string& value)
{
this
->
args
[key] = value.
substr
(
0
,content_size_limit);
}
/*
*
* Method used to set an argument value by key.
* @param key The name identifying the argument
* @param value The value assumed by the argument
* @param size The size in number of char of the value parameter.
*
*/
void
set_arg
(
const
char
* key,
const
char
* value,
size_t
size)
{
this
->
args
[key] =
std::string
(value,
std::min
(size, content_size_limit));
}
/*
*
* Method used to set the content of the request
* @param content The content to set.
*
*/
void
set_content
(
const
std::string& content)
{
this
->
content
= content.
substr
(
0
,content_size_limit);
}
/*
*
* Method used to set the maximum size of the content
* @param content_size_limit The limit on the maximum size of the content and arg's.
*
*/
void
set_content_size_limit
(
size_t
content_size_limit)
{
this
->
content_size_limit
= content_size_limit;
}
/*
*
* Method used to append content to the request preserving the previous inserted content
* @param content The content to append.
* @param size The size of the data to append.
*
*/
void
grow_content
(
const
char
* content,
size_t
size)
{
this
->
content
.
append
(content, size);
if
(
this
->
content
.
size
() > content_size_limit)
{
this
->
content
.
resize
(content_size_limit);
}
}
/*
*
* Method used to set the path requested.
* @param path The path searched by the request.
*
*/
void
set_path
(
const
std::string& path)
{
this
->
path
= path;
std::vector<std::string> complete_path =
http::http_utils::tokenize_url
(
this
->
path
);
for
(
unsigned
int
i =
0
; i < complete_path.
size
(); i++)
{
this
->
post_path
.
push_back
(complete_path[i]);
}
}
/*
*
* Method used to set the request METHOD
* @param method The method to set for the request
*
*/
void
set_method
(
const
std::string& method);
/*
*
* Method used to set the request http version (ie http 1.1)
* @param version The version to set in form of string
*
*/
void
set_version
(
const
std::string& version)
{
this
->
version
= version;
}
/*
*
* Method used to set all arguments of the request.
* @param args The args key-value map to set for the request.
*
*/
void
set_args
(
const
std::map<std::string, std::string>& args)
{
std::map<std::string, std::string>::const_iterator it;
for
(it = args.
begin
(); it != args.
end
(); ++it)
this
->
args
[it->
first
] = it->
second
.
substr
(
0
,content_size_limit);
}
const
std::string
get_connection_value
(
const
std::string& key,
enum
MHD_ValueKind kind)
const
;
const
std::map<std::string, std::string, http::header_comparator>
get_headerlike_values
(
enum
MHD_ValueKind kind)
const
;
friend
class
webserver
;
};
std::ostream &
operator
<< (std::ostream &os,
const
http_request &r);
};
#
endif
Back
|
FazBrowse Home
|
New Git URL