-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHttpWin.cpp
455 lines (404 loc) · 10.4 KB
/
HttpWin.cpp
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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* HTTPWIN.CPP - One line description.
* Copyright (C) 2001 Rob Fahrni. All rights reserved.
*
*/
#include "PlatDef.h" // Cross platform types.
#include "WinPlatDef.h" // Our windows typedefs & #defines.
#include <WinINet.h> // Windows internet api's.
#include "HttpIf.h" // HTTP ABC interface.
#include "HttpWin.h" // HTTP for windows.
#include <stdio.h>
#define STR_CheezyPing _T("Cheezy.Ping\0")
/**************************************************************************
*+ CHttpWindows - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
CHttpWindows::CHttpWindows() :
m_hInternet(NULL),
m_hConnection(NULL),
m_StatusCode(0L),
m_Response(NULL)
{
// nothing for now.
//
} // ctor
/**************************************************************************
*+ ~CHttpWindows - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
CHttpWindows::~CHttpWindows()
{
// Wack the Response string.
//
delete [] m_Response;
m_Response = NULL;
// Make double sure we've closed and NULL'd the handles.
//
this->Close();
} // dtor
/**************************************************************************
*+ Open - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
HTTPRC CHttpWindows::Open(void)
{
HTTPRC rc(0L);
if (m_hInternet == NULL)
{
m_hInternet = ::InternetOpen(STR_CheezyPing,
INTERNET_OPEN_TYPE_PRECONFIG,
NULL, NULL, 0);
}
return rc;
} // Open
/**************************************************************************
*+ Close - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
void CHttpWindows::Close()
{
if (m_hInternet != NULL)
{
::InternetCloseHandle(m_hInternet);
m_hInternet = NULL;
}
} // Close
/**************************************************************************
*+ SendRequest - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
HTTPRC CHttpWindows::SendRequest(
IN ConstString verb,
IN ConstString fullUrl,
IN ConstString request,
IN Int requestLen,
IN ConstString version)
{
HTTPRC rc(eHTTPNOERROR);
HINTERNET hRequest(this->createRequest(verb, fullUrl, version));
if (hRequest != NULL)
{
String requestData = new Char[requestLen+1];
if (requestData != NULL)
{
Memset(requestData, 0, requestLen+1);
StrNCpy(requestData, request, requestLen);
// Make the Http request.
//
rc = (::HttpSendRequest(hRequest, NULL, 0L, (LPVOID)requestData, requestLen) == TRUE)
? eHTTPNOERROR : eHTTPCONNECTIONFAIL;
// If no error occured then query the server for the result text.
//
if (rc == eHTTPNOERROR)
{
// We've succeeded on the request. This doesn't mean the server
// succeeded. It just means the request was received successfully.
//
// Get the server response to a successful HttpSendRequest.
//
this->getServerReplyInfo(hRequest);
}
// Cleanup the request data.
//
delete [] requestData;
requestData = NULL;
}
// Cleanup before we leave, this will close the request handle and the connection.
//
this->cleanupRequest(hRequest);
}
return rc;
} // SendRequest
/**************************************************************************
*+ PostRequest - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
HTTPRC CHttpWindows::PostRequest(
IN ConstString fullUrl,
IN ConstString request,
IN Int requestLen,
IN ConstString version)
{
return this->SendRequest(STR_PostVerb, fullUrl, request, requestLen, version);
} // PostRequest
/**************************************************************************
*+ GetStatusCode - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
DWord CHttpWindows::GetStatusCode(void)
{
return m_StatusCode;
} // GetStatusCode
/**************************************************************************
*+ GetStatusText - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
ConstString CHttpWindows::GetStatusText(void)
{
return NULL; //return m_StatusText;
} // GetStatusText
/**************************************************************************
*+ GetResponse - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
ConstString CHttpWindows::GetResponse(void)
{
return m_Response;
} // GetResponse
/**************************************************************************
*+ createRequest - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
HINTERNET CHttpWindows::createRequest(
IN ConstString verb, // Operation verb, POST, GET, etc...
IN ConstString fullUrl, // URL to crack
IN ConstString version /*=*/) // Http version
{
HINTERNET hRequest(NULL);
String acceptTypes[2] = {TEXT("text/xml\0"), NULL};
DWORD dwFlags(0L);
Char hostName[2*MAX_PATH]=_T("");
Char urlPath[4*MAX_PATH]=_T("");
Char extra[4*MAX_PATH]=_T("");
URL_COMPONENTS urlc;
Memset((PVOID)&urlc, 0, sizeof(URL_COMPONENTS));
// Initialize the component structure.
//
urlc.dwStructSize = sizeof(URL_COMPONENTS);
urlc.lpszExtraInfo = extra;
urlc.dwExtraInfoLength = sizeof(extra);
urlc.lpszHostName = hostName;
urlc.dwHostNameLength = sizeof(hostName);
urlc.lpszUrlPath = urlPath;
urlc.dwUrlPathLength = sizeof(urlPath);
Char url[4*MAX_PATH];
StrCpy(url, fullUrl); // Make a copy
BOOL fOk = ::InternetCrackUrl(url, 0, dwFlags, &urlc);
if (fOk == TRUE)
{
m_hConnection = ::InternetConnect(m_hInternet,
urlc.lpszHostName,
urlc.nPort,
NULL,
NULL,
INTERNET_SERVICE_HTTP, 0, 0);
if (m_hConnection != NULL)
{
dwFlags = (INTERNET_FLAG_RELOAD|INTERNET_FLAG_NO_CACHE_WRITE);
hRequest = ::HttpOpenRequest(m_hConnection, verb, urlc.lpszUrlPath,
version, NULL, (LPCTSTR*)acceptTypes, dwFlags, 0L);
if (hRequest != NULL)
{
String XMLHeader = "Content-type: text/xml\r\n";
::HttpAddRequestHeaders(hRequest, XMLHeader, StrLen(XMLHeader), HTTP_ADDREQ_FLAG_ADD|HTTP_ADDREQ_FLAG_REPLACE);
}
}
}
return hRequest;
} // createRequest
/**************************************************************************
*+ cleanupRequest - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
void CHttpWindows::cleanupRequest(IN OUT HINTERNET& hRequest)
{
if (hRequest != NULL)
{
// Close the request handle.
//
::InternetCloseHandle(hRequest);
hRequest = NULL;
}
if (m_hConnection != NULL)
{
// Close open connection.
//
::InternetCloseHandle(m_hConnection);
m_hConnection = NULL;
}
} // cleanupRequest
/**************************************************************************
*+ getStatusText - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
Boolean CHttpWindows::getStatusText(
IN HINTERNET hRequest,
IN String status,
IN Int lenStatus)
{
Boolean fOk(False);
if (status != NULL && lenStatus > 0)
{
DWORD len = lenStatus;
if (::HttpQueryInfo(hRequest, HTTP_QUERY_STATUS_TEXT, status, &len, NULL) == TRUE)
{
fOk = True;
}
}
return fOk;
} // getStatusText
/**************************************************************************
*+ getStatusCode - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
DWord CHttpWindows::getStatusCode(IN HINTERNET hRequest)
{
DWord returnCode(0L);
Char code[80];
DWord lenCode(StrLen(code));
if (::HttpQueryInfo(hRequest, HTTP_QUERY_STATUS_CODE, code, &lenCode, NULL) == TRUE)
{
// Convert the return code to a long so we can give it back to the caller.
//
returnCode = (DWord)AtoL(code);
}
return returnCode;
} // getStatusCode
/**************************************************************************
*+ getRawHeaders - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
Boolean CHttpWindows::getRawHeaders(
IN HINTERNET hRequest,
IN String headers,
IN Int lenHeaders)
{
Boolean fOk(False);
if (headers != NULL && lenHeaders > 0)
{
DWORD len = lenHeaders;
if (::HttpQueryInfo(hRequest, HTTP_QUERY_RAW_HEADERS_CRLF, headers, &len, NULL) == TRUE)
{
fOk = True;
}
}
return fOk;
} // getRawHeaders
/**************************************************************************
*+ getServerReply - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
Boolean CHttpWindows::getServerReply(
IN HINTERNET hRequest,
IN String reply,
IN Int lenReply)
{
Boolean fOk(False);
if (reply != NULL && lenReply > 0)
{
DWord bytesRead(0L);
Char tempReply[MONSTER_BUFFER];
Memset(tempReply, 0, MONSTER_BUFFER);
if (::InternetReadFile(hRequest, tempReply, MONSTER_BUFFER, &bytesRead) == TRUE &&
bytesRead <= (DWord)lenReply)
{
StrNCpy(reply, tempReply, bytesRead);
fOk = True;
}
}
return fOk;
} // getServerReply
/**************************************************************************
*+ getServerReplyInfo - One line description.
*
* Abstract:
* Abstract text goes here.
*
* Return Value:
* Return value description goes here.
*/
void CHttpWindows::getServerReplyInfo(IN HINTERNET hRequest)
{
Char header[BIG_BUFFER];
Int headerLen(BIG_BUFFER);
// Grab the raw header.
//
this->getRawHeaders(hRequest, header, headerLen);
// Grab the server status code.
//
m_StatusCode = this->getStatusCode(hRequest);
delete [] m_Response;
// Read the servers reply to our request.
//
m_Response = new Char[MONSTER_BUFFER]; // rob::note - NEEDS TO BE CALCULATED!
if (m_Response != NULL)
{
Memset(m_Response, 0, MONSTER_BUFFER);
this->getServerReply(hRequest, m_Response, MONSTER_BUFFER);
}
} // getServerReplyInfo;