FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
poco/Net/src/HTTPStreamFactory.cpp at develop · cppfool/poco · GitHub
cppfool
/
poco
Public
forked from
pocoproject/poco
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
poco
/
Net
/
src
/
HTTPStreamFactory.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
181 lines (153 loc) · 4.36 KB
Breadcrumbs
poco
/
Net
/
src
/
HTTPStreamFactory.cpp
Copy path
File metadata and controls
181 lines (153 loc) · 4.36 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
//
//
HTTPStreamFactory.cpp
//
//
$Id: //poco/1.4/Net/src/HTTPStreamFactory.cpp#2 $
//
//
Library: Net
//
Package: HTTP
//
Module: HTTPStreamFactory
//
//
Copyright (c) 2005-2012, Applied Informatics Software Engineering GmbH.
//
and Contributors.
//
//
SPDX-License-Identifier: BSL-1.0
//
#
include
"
Poco/Net/HTTPStreamFactory.h
"
#
include
"
Poco/Net/HTTPClientSession.h
"
#
include
"
Poco/Net/HTTPIOStream.h
"
#
include
"
Poco/Net/HTTPRequest.h
"
#
include
"
Poco/Net/HTTPResponse.h
"
#
include
"
Poco/Net/HTTPCredentials.h
"
#
include
"
Poco/Net/NetException.h
"
#
include
"
Poco/URI.h
"
#
include
"
Poco/URIStreamOpener.h
"
#
include
"
Poco/UnbufferedStreamBuf.h
"
#
include
"
Poco/NullStream.h
"
#
include
"
Poco/StreamCopier.h
"
using
Poco::URIStreamFactory;
using
Poco::
URI
;
using
Poco::URIStreamOpener;
using
Poco::UnbufferedStreamBuf;
namespace
Poco
{
namespace
Net
{
HTTPStreamFactory::HTTPStreamFactory
():
_proxyPort
(HTTPSession::
HTTP_PORT
)
{
}
HTTPStreamFactory::HTTPStreamFactory
(
const
std::string& proxyHost, Poco::UInt16 proxyPort):
_proxyHost
(proxyHost),
_proxyPort
(proxyPort)
{
}
HTTPStreamFactory::HTTPStreamFactory
(
const
std::string& proxyHost, Poco::UInt16 proxyPort,
const
std::string& proxyUsername,
const
std::string& proxyPassword):
_proxyHost
(proxyHost),
_proxyPort
(proxyPort),
_proxyUsername
(proxyUsername),
_proxyPassword
(proxyPassword)
{
}
HTTPStreamFactory::~HTTPStreamFactory
()
{
}
std::istream*
HTTPStreamFactory::open
(
const
URI
& uri)
{
poco_assert
(uri.
getScheme
() ==
"
http
"
);
URI
resolvedURI
(uri);
URI
proxyUri;
HTTPClientSession* pSession =
0
;
HTTPResponse res;
bool
retry =
false
;
bool
authorize =
false
;
std::string username;
std::string password;
try
{
do
{
if
(!pSession)
{
pSession =
new
HTTPClientSession
(resolvedURI.
getHost
(), resolvedURI.
getPort
());
if
(proxyUri.
empty
())
{
if
(!_proxyHost.
empty
())
{
pSession->
setProxy
(_proxyHost, _proxyPort);
pSession->
setProxyCredentials
(_proxyUsername, _proxyPassword);
}
}
else
{
pSession->
setProxy
(proxyUri.
getHost
(), proxyUri.
getPort
());
if
(!_proxyUsername.
empty
())
{
pSession->
setProxyCredentials
(_proxyUsername, _proxyPassword);
}
}
}
std::string path = resolvedURI.
getPathAndQuery
();
if
(path.
empty
()) path =
"
/
"
;
HTTPRequest
req
(HTTPRequest::
HTTP_GET
, path, HTTPMessage::
HTTP_1_1
);
if
(authorize)
{
HTTPCredentials::extractCredentials
(uri, username, password);
HTTPCredentials
cred
(username, password);
cred.
authenticate
(req, res);
}
pSession->
sendRequest
(req);
std::istream& rs = pSession->
receiveResponse
(res);
bool
moved = (res.
getStatus
() == HTTPResponse::
HTTP_MOVED_PERMANENTLY
||
res.
getStatus
() == HTTPResponse::
HTTP_FOUND
||
res.
getStatus
() == HTTPResponse::
HTTP_SEE_OTHER
||
res.
getStatus
() == HTTPResponse::
HTTP_TEMPORARY_REDIRECT
);
if
(moved)
{
resolvedURI.
resolve
(res.
get
(
"
Location
"
));
if
(!username.
empty
())
{
resolvedURI.
setUserInfo
(username +
"
:
"
+ password);
}
throw
URIRedirection
(resolvedURI.
toString
());
}
else
if
(res.
getStatus
() == HTTPResponse::
HTTP_OK
)
{
return
new
HTTPResponseStream
(rs, pSession);
}
else
if
(res.
getStatus
() == HTTPResponse::
HTTP_USEPROXY
&& !retry)
{
//
The requested resource MUST be accessed through the proxy
//
given by the Location field. The Location field gives the
//
URI of the proxy. The recipient is expected to repeat this
//
single request via the proxy. 305 responses MUST only be generated by origin servers.
//
only use for one single request!
proxyUri.
resolve
(res.
get
(
"
Location
"
));
delete
pSession;
pSession =
0
;
retry =
true
;
//
only allow useproxy once
}
else
if
(res.
getStatus
() == HTTPResponse::
HTTP_UNAUTHORIZED
&& !authorize)
{
authorize =
true
;
retry =
true
;
Poco::NullOutputStream null;
Poco::StreamCopier::copyStream
(rs, null);
}
else
throw
HTTPException
(res.
getReason
(), uri.
toString
());
}
while
(retry);
throw
HTTPException
(
"
Too many redirects
"
, uri.
toString
());
}
catch
(...)
{
delete
pSession;
throw
;
}
}
void
HTTPStreamFactory::registerFactory
()
{
URIStreamOpener::defaultOpener
().
registerStreamFactory
(
"
http
"
,
new
HTTPStreamFactory);
}
void
HTTPStreamFactory::unregisterFactory
()
{
URIStreamOpener::defaultOpener
().
unregisterStreamFactory
(
"
http
"
);
}
} }
//
namespace Poco::Net
Back
|
FazBrowse Home
|
New Git URL