FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
libhttpserver/src/http_endpoint.cpp at examples · crosslink/libhttpserver · GitHub
crosslink
/
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
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
libhttpserver
/
src
/
http_endpoint.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
205 lines (190 loc) · 6.05 KB
Breadcrumbs
libhttpserver
/
src
/
http_endpoint.cpp
Copy path
File metadata and controls
205 lines (190 loc) · 6.05 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
/*
This file is part of libhttpserver
Copyright (C) 2011 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
*/
#
include
"
http_endpoint.hpp
"
#
include
"
http_utils.hpp
"
#
include
"
string_utilities.hpp
"
using
namespace
std
;
namespace
httpserver
{
using
namespace
http
;
namespace
details
{
//
ENDPOINT
http_endpoint::~http_endpoint
()
{
if
(reg_compiled)
{
regfree
(&(
this
->
re_url_modded
));
}
}
http_endpoint::http_endpoint
(
const
string& url,
bool
family,
bool
registration,
bool
use_regex):
family_url
(family),
reg_compiled
(
false
)
{
if
(use_regex)
this
->
url_modded
=
"
^/
"
;
else
this
->
url_modded
=
"
/
"
;
vector<string> parts;
string_utilities::to_lower_copy
(url, url_complete);
http_utils::tokenize_url
(url, parts);
string buffered;
bool
first =
true
;
if
(registration)
{
for
(
unsigned
int
i =
0
; i< parts.
size
(); i++)
{
if
((parts[i] !=
"
"
) && (parts[i][
0
] !=
'
{
'
))
{
if
(first)
{
if
(parts[i][
0
] ==
'
^
'
)
{
this
->
url_modded
= parts[i];
}
else
{
this
->
url_modded
+= parts[i];
}
first =
false
;
}
else
{
this
->
url_modded
+=
"
/
"
+ parts[i];
}
}
else
{
if
(( parts[i].
size
() >=
3
) && (parts[i][
0
] ==
'
{
'
) && (parts[i][parts[i].
size
() -
1
] ==
'
}
'
) )
{
int
bar = parts[i].
find_first_of
(
'
|
'
);
if
(bar != (
int
)string::npos)
{
this
->
url_pars
.
push_back
(parts[i].
substr
(
1
, bar -
1
));
if
(first)
{
this
->
url_modded
+= parts[i].
substr
(bar +
1
, parts[i].
size
() - bar -
2
);
first =
false
;
}
else
{
this
->
url_modded
+=
"
/
"
+parts[i].
substr
(bar +
1
, parts[i].
size
() - bar -
2
);
}
}
else
{
this
->
url_pars
.
push_back
(parts[i].
substr
(
1
,parts[i].
size
() -
2
));
if
(first)
{
this
->
url_modded
+=
"
([^
\\
/]+)
"
;
first =
false
;
}
else
{
this
->
url_modded
+=
"
/([^
\\
/]+)
"
;
}
}
this
->
chunk_positions
.
push_back
(i);
}
else
{
throw
bad_http_endpoint
();
}
}
this
->
url_pieces
.
push_back
(parts[i]);
}
}
else
{
for
(
unsigned
int
i =
0
; i< parts.
size
(); i++)
{
if
(first)
{
this
->
url_modded
+= parts[i];
first =
false
;
}
else
{
this
->
url_modded
+=
"
/
"
+ parts[i];
}
this
->
url_pieces
.
push_back
(parts[i]);
}
}
if
(use_regex)
{
this
->
url_modded
+=
"
$
"
;
regcomp
(&(
this
->
re_url_modded
), url_modded.
c_str
(),
REG_EXTENDED
|
REG_ICASE
|
REG_NOSUB
);
reg_compiled =
true
;
}
}
http_endpoint::http_endpoint
(
const
http_endpoint& h):
url_complete
(h.url_complete),
url_modded
(h.url_modded),
url_pars
(h.url_pars),
url_pieces
(h.url_pieces),
chunk_positions
(h.chunk_positions),
family_url
(h.family_url),
reg_compiled
(h.reg_compiled)
{
if
(
this
->
reg_compiled
)
regcomp
(&(
this
->
re_url_modded
), url_modded.
c_str
(),
REG_EXTENDED
|
REG_ICASE
|
REG_NOSUB
);
}
http_endpoint& http_endpoint::
operator
=(
const
http_endpoint& h)
{
this
->
url_complete
= h.
url_complete
;
this
->
url_modded
= h.
url_modded
;
this
->
family_url
= h.
family_url
;
this
->
reg_compiled
= h.
reg_compiled
;
if
(
this
->
reg_compiled
)
regcomp
(&(
this
->
re_url_modded
), url_modded.
c_str
(),
REG_EXTENDED
|
REG_ICASE
|
REG_NOSUB
);
this
->
url_pars
= h.
url_pars
;
this
->
url_pieces
= h.
url_pieces
;
this
->
chunk_positions
= h.
chunk_positions
;
return
*
this
;
}
bool
http_endpoint::
operator
<(
const
http_endpoint& b)
const
{
string url_modded_l;
string url_modded_r;
string_utilities::to_lower_copy
(
this
->
url_modded
, url_modded_l);
string_utilities::to_lower_copy
(b.
url_modded
, url_modded_r);
return
url_modded_l < url_modded_r;
}
bool
http_endpoint::match
(
const
http_endpoint& url)
const
{
if
(
this
->
family_url
&& (url.
url_pieces
.
size
() >=
this
->
url_pieces
.
size
()))
{
string nn =
"
/
"
;
bool
first =
true
;
for
(
unsigned
int
i =
0
; i <
this
->
url_pieces
.
size
(); i++)
{
if
(first)
{
nn += url.
url_pieces
[i];
first =
false
;
}
else
{
nn +=
"
/
"
+ url.
url_pieces
[i];
}
}
return
regexec
(&(
this
->
re_url_modded
), nn.
c_str
(),
0
,
NULL
,
0
) ==
0
;
}
else
return
regexec
(&(
this
->
re_url_modded
), url.
url_modded
.
c_str
(),
0
,
NULL
,
0
) ==
0
;
}
};
};
Back
|
FazBrowse Home
|
New Git URL