forked from love2d/lua-https
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWinINetClient.cpp
More file actions
224 lines (188 loc) · 5.25 KB
/
WinINetClient.cpp
File metadata and controls
224 lines (188 loc) · 5.25 KB
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
#include "WinINetClient.h"
#ifdef HTTPS_BACKEND_WININET
#include <algorithm>
#include <stdexcept>
#include <sstream>
#include <vector>
#include <Windows.h>
#include <wininet.h>
#include "../common/HTTPRequest.h"
class LazyHInternetLoader final
{
public:
LazyHInternetLoader(): hInternet(nullptr) { }
~LazyHInternetLoader()
{
if (hInternet)
InternetCloseHandle(hInternet);
}
HINTERNET getInstance()
{
if (!init)
{
hInternet = InternetOpenA("", INTERNET_OPEN_TYPE_PRECONFIG, nullptr, nullptr, 0);
if (hInternet)
{
// Try to enable HTTP2
DWORD httpProtocol = HTTP_PROTOCOL_FLAG_HTTP2;
InternetSetOptionA(hInternet, INTERNET_OPTION_ENABLE_HTTP_PROTOCOL, &httpProtocol, sizeof(DWORD));
SetLastError(0); // If it errors, ignore.
}
}
return hInternet;
}
private:
bool init;
HINTERNET hInternet;
};
static thread_local LazyHInternetLoader hInternetCache;
bool WinINetClient::valid() const
{
// Allow disablement of WinINet backend.
const char *disabler = getenv("LUAHTTPS_DISABLE_WININET");
if (disabler && strcmp(disabler, "1") == 0)
return false;
return hInternetCache.getInstance() != nullptr;
}
HTTPSClient::Reply WinINetClient::request(const HTTPSClient::Request &req)
{
Reply reply;
reply.responseCode = 0;
// Parse URL
auto parsedUrl = HTTPRequest::parseUrl(req.url);
// Default flags
DWORD inetFlags =
INTERNET_FLAG_NO_AUTH |
INTERNET_FLAG_NO_CACHE_WRITE |
INTERNET_FLAG_NO_COOKIES |
INTERNET_FLAG_NO_UI;
if (parsedUrl.schema == "https")
inetFlags |= INTERNET_FLAG_SECURE;
else if (parsedUrl.schema != "http")
return reply;
// Keep-Alive
auto connectHeader = req.headers.find("Connection");
auto headerEnd = req.headers.end();
if ((connectHeader != headerEnd && connectHeader->second != "close") || connectHeader == headerEnd)
inetFlags |= INTERNET_FLAG_KEEP_CONNECTION;
// Open internet
HINTERNET hInternet = hInternetCache.getInstance();
if (hInternet == nullptr)
return reply;
// Connect
HINTERNET hConnect = InternetConnectA(
hInternet,
parsedUrl.hostname.c_str(),
parsedUrl.port,
nullptr, nullptr,
INTERNET_SERVICE_HTTP,
INTERNET_FLAG_EXISTING_CONNECT,
(DWORD_PTR) this
);
if (!hConnect)
return reply;
std::string httpMethod = req.method;
std::transform(
httpMethod.begin(),
httpMethod.end(),
httpMethod.begin(),
[](char c) {return (char)toupper((unsigned char) c); }
);
// Open HTTP request
HINTERNET hHTTP = HttpOpenRequestA(
hConnect,
httpMethod.c_str(),
parsedUrl.query.c_str(),
nullptr,
nullptr,
nullptr,
inetFlags,
(DWORD_PTR) this
);
if (!hHTTP)
{
InternetCloseHandle(hConnect);
return reply;
}
// Send additional headers
HttpAddRequestHeadersA(hHTTP, "User-Agent:", 0, HTTP_ADDREQ_FLAG_REPLACE);
for (const auto &header: req.headers)
{
std::string headerString = header.first + ": " + header.second + "\r\n";
HttpAddRequestHeadersA(hHTTP, headerString.c_str(), headerString.length(), HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE);
}
// POST data
const char *postData = nullptr;
if (req.postdata.length() > 0 && (httpMethod != "GET" && httpMethod != "HEAD"))
{
char temp[48];
int len = sprintf(temp, "Content-Length: %u\r\n", (unsigned int) req.postdata.length());
postData = req.postdata.c_str();
HttpAddRequestHeadersA(hHTTP, temp, len, HTTP_ADDREQ_FLAG_ADD | HTTP_ADDREQ_FLAG_REPLACE);
}
// Send away!
BOOL result = HttpSendRequestA(hHTTP, nullptr, 0, (void *) postData, (DWORD) req.postdata.length());
if (!result)
{
InternetCloseHandle(hHTTP);
InternetCloseHandle(hConnect);
return reply;
}
DWORD bufferLength = sizeof(DWORD);
DWORD headerCounter = 0;
// Status code
DWORD statusCode = 0;
if (!HttpQueryInfoA(hHTTP, HTTP_QUERY_STATUS_CODE | HTTP_QUERY_FLAG_NUMBER, &statusCode, &bufferLength, &headerCounter))
{
InternetCloseHandle(hHTTP);
InternetCloseHandle(hConnect);
return reply;
}
// Query headers
std::vector<char> responseHeaders;
bufferLength = 0;
HttpQueryInfoA(hHTTP, HTTP_QUERY_RAW_HEADERS, responseHeaders.data(), &bufferLength, &headerCounter);
if (GetLastError() != ERROR_INSUFFICIENT_BUFFER)
{
InternetCloseHandle(hHTTP);
InternetCloseHandle(hConnect);
return reply;
}
responseHeaders.resize(bufferLength);
if (!HttpQueryInfoA(hHTTP, HTTP_QUERY_RAW_HEADERS, responseHeaders.data(), &bufferLength, &headerCounter))
{
InternetCloseHandle(hHTTP);
InternetCloseHandle(hConnect);
return reply;
}
for (const char *headerData = responseHeaders.data(); *headerData; headerData += strlen(headerData) + 1)
{
const char *value = strchr(headerData, ':');
if (value)
{
ptrdiff_t keyLen = (ptrdiff_t) (value - headerData);
reply.headers[std::string(headerData, keyLen)] = value + 2; // +2, colon and 1 space character.
}
}
responseHeaders.resize(1);
// Read response
std::stringstream responseData;
for (;;)
{
constexpr DWORD BUFFER_SIZE = 4096;
char buffer[BUFFER_SIZE];
DWORD readed = 0;
BOOL ret = InternetQueryDataAvailable(hHTTP, &readed, 0, 0);
if (!ret || readed == 0)
break;
if (!InternetReadFile(hHTTP, buffer, BUFFER_SIZE, &readed))
break;
responseData.write(buffer, readed);
}
reply.body = responseData.str();
reply.responseCode = statusCode;
InternetCloseHandle(hHTTP);
InternetCloseHandle(hConnect);
return reply;
}
#endif // HTTPS_BACKEND_WININET