forked from chronoxor/NetCoreServer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHttpRequest.cs
More file actions
831 lines (740 loc) · 30.2 KB
/
HttpRequest.cs
File metadata and controls
831 lines (740 loc) · 30.2 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
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
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Text;
namespace NetCoreServer
{
/// <summary>
/// HTTP request is used to create or process parameters of HTTP protocol request(method, URL, headers, etc).
/// </summary>
/// <remarks>Not thread-safe.</remarks>
public class HttpRequest
{
/// <summary>
/// Initialize an empty HTTP request
/// </summary>
public HttpRequest()
{
Clear();
}
/// <summary>
/// Initialize a new HTTP request with a given method, URL and protocol
/// </summary>
/// <param name="method">HTTP method</param>
/// <param name="url">Requested URL</param>
/// <param name="protocol">Protocol version (default is "HTTP/1.1")</param>
public HttpRequest(string method, string url, string protocol = "HTTP/1.1")
{
SetBegin(method, url, protocol);
}
/// <summary>
/// Is the HTTP request empty?
/// </summary>
public bool IsEmpty { get { return (_cache.Size == 0); } }
/// <summary>
/// Is the HTTP request error flag set?
/// </summary>
public bool IsErrorSet { get; private set; }
/// <summary>
/// Get the HTTP request method
/// </summary>
public string Method { get { return _method; } }
/// <summary>
/// Get the HTTP request URL
/// </summary>
public string Url { get { return _url; } }
/// <summary>
/// Get the HTTP request protocol version
/// </summary>
public string Protocol { get { return _protocol; } }
/// <summary>
/// Get the HTTP request headers count
/// </summary>
public long Headers { get { return _headers.Count; } }
/// <summary>
/// Get the HTTP request header by index
/// </summary>
public (string, string) Header(int i)
{
Debug.Assert((i < _headers.Count), "Index out of bounds!");
if (i >= _headers.Count)
return ("", "");
return _headers[i];
}
/// <summary>
/// Get the HTTP request cookies count
/// </summary>
public long Cookies { get { return _cookies.Count; } }
/// <summary>
/// Get the HTTP request cookie by index
/// </summary>
public (string, string) Cookie(int i)
{
Debug.Assert((i < _cookies.Count), "Index out of bounds!");
if (i >= _cookies.Count)
return ("", "");
return _cookies[i];
}
/// <summary>
/// Get the HTTP request body as string
/// </summary>
public string Body { get { return _cache.ExtractString(_bodyIndex, _bodySize); } }
/// <summary>
/// Get the HTTP request body as byte array
/// </summary>
public byte[] BodyBytes { get { return _cache.Data[_bodyIndex..(_bodyIndex + _bodySize)]; } }
/// <summary>
/// Get the HTTP request body as byte span
/// </summary>
public Span<byte> BodySpan { get { return new Span<byte>(_cache.Data, _bodyIndex, _bodySize); } }
/// <summary>
/// Get the HTTP request body length
/// </summary>
public long BodyLength { get { return _bodyLength; } }
/// <summary>
/// Get the HTTP request cache content
/// </summary>
public Buffer Cache { get { return _cache; } }
/// <summary>
/// Get string from the current HTTP request
/// </summary>
public override string ToString()
{
StringBuilder sb = new StringBuilder();
sb.AppendLine($"Request method: {Method}");
sb.AppendLine($"Request URL: {Url}");
sb.AppendLine($"Request protocol: {Protocol}");
sb.AppendLine($"Request headers: {Headers}");
for (int i = 0; i < Headers; i++)
{
var header = Header(i);
sb.AppendLine($"{header.Item1} : {header.Item2}");
}
sb.AppendLine($"Request body: {BodyLength}");
sb.AppendLine(Body);
return sb.ToString();
}
/// <summary>
/// Clear the HTTP request cache
/// </summary>
public HttpRequest Clear()
{
IsErrorSet = false;
_method = "";
_url = "";
_protocol = "";
_headers.Clear();
_cookies.Clear();
_bodyIndex = 0;
_bodySize = 0;
_bodyLength = 0;
_bodyLengthProvided = false;
_cache.Clear();
_cacheSize = 0;
return this;
}
/// <summary>
/// Set the HTTP request begin with a given method, URL and protocol
/// </summary>
/// <param name="method">HTTP method</param>
/// <param name="url">Requested URL</param>
/// <param name="protocol">Protocol version (default is "HTTP/1.1")</param>
public HttpRequest SetBegin(string method, string url, string protocol = "HTTP/1.1")
{
// Clear the HTTP request cache
Clear();
// Append the HTTP request method
_cache.Append(method);
_method = method;
_cache.Append(" ");
// Append the HTTP request URL
_cache.Append(url);
_url = url;
_cache.Append(" ");
// Append the HTTP request protocol version
_cache.Append(protocol);
_protocol = protocol;
_cache.Append("\r\n");
return this;
}
/// <summary>
/// Set the HTTP request header
/// </summary>
/// <param name="key">Header key</param>
/// <param name="value">Header value</param>
public HttpRequest SetHeader(string key, string value)
{
// Append the HTTP request header's key
_cache.Append(key);
_cache.Append(": ");
// Append the HTTP request header's value
_cache.Append(value);
_cache.Append("\r\n");
// Add the header to the corresponding collection
_headers.Add((key, value));
return this;
}
/// <summary>
/// Set the HTTP request cookie
/// </summary>
/// <param name="name">Cookie name</param>
/// <param name="value">Cookie value</param>
public HttpRequest SetCookie(string name, string value)
{
string key = "Cookie";
string cookie = name + "=" + value;
// Append the HTTP request header's key
_cache.Append(key);
_cache.Append(": ");
// Append Cookie
_cache.Append(cookie);
_cache.Append("\r\n");
// Add the header to the corresponding collection
_headers.Add((key, cookie));
// Add the cookie to the corresponding collection
_cookies.Add((name, value));
return this;
}
/// <summary>
/// Add the HTTP request cookie
/// </summary>
/// <param name="name">Cookie name</param>
/// <param name="value">Cookie value</param>
public HttpRequest AddCookie(string name, string value)
{
// Append Cookie
_cache.Append("; ");
_cache.Append(name);
_cache.Append("=");
_cache.Append(value);
// Add the cookie to the corresponding collection
_cookies.Add((name, value));
return this;
}
/// <summary>
/// Set the HTTP request body
/// </summary>
/// <param name="body">Body string content (default is "")</param>
public HttpRequest SetBody(string body = "") => SetBody(body.AsSpan());
/// <summary>
/// Set the HTTP request body
/// </summary>
/// <param name="body">Body string content as a span of characters</param>
public HttpRequest SetBody(ReadOnlySpan<char> body)
{
int length = body.IsEmpty ? 0 : Encoding.UTF8.GetByteCount(body);
// Append content length header
SetHeader("Content-Length", length.ToString());
_cache.Append("\r\n");
int index = (int)_cache.Size;
// Append the HTTP request body
_cache.Append(body);
_bodyIndex = index;
_bodySize = length;
_bodyLength = length;
_bodyLengthProvided = true;
return this;
}
/// <summary>
/// Set the HTTP request body
/// </summary>
/// <param name="body">Body binary content</param>
public HttpRequest SetBody(byte[] body) => SetBody(body.AsSpan());
/// <summary>
/// Set the HTTP request body
/// </summary>
/// <param name="body">Body binary content as a span of bytes</param>
public HttpRequest SetBody(ReadOnlySpan<byte> body)
{
// Append content length header
SetHeader("Content-Length", body.Length.ToString());
_cache.Append("\r\n");
int index = (int)_cache.Size;
// Append the HTTP request body
_cache.Append(body);
_bodyIndex = index;
_bodySize = body.Length;
_bodyLength = body.Length;
_bodyLengthProvided = true;
return this;
}
/// <summary>
/// Set the HTTP request body length
/// </summary>
/// <param name="length">Body length</param>
public HttpRequest SetBodyLength(int length)
{
// Append content length header
SetHeader("Content-Length", length.ToString());
_cache.Append("\r\n");
int index = (int)_cache.Size;
// Clear the HTTP request body
_bodyIndex = index;
_bodySize = 0;
_bodyLength = length;
_bodyLengthProvided = true;
return this;
}
/// <summary>
/// Make HEAD request
/// </summary>
/// <param name="url">URL to request</param>
public HttpRequest MakeHeadRequest(string url)
{
Clear();
SetBegin("HEAD", url);
SetBody();
return this;
}
/// <summary>
/// Make GET request
/// </summary>
/// <param name="url">URL to request</param>
public HttpRequest MakeGetRequest(string url)
{
Clear();
SetBegin("GET", url);
SetBody();
return this;
}
/// <summary>
/// Make POST request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">String content</param>
/// <param name="contentType">Content type (default is "text/plain; charset=UTF-8")</param>
public HttpRequest MakePostRequest(string url, string content, string contentType = "text/plain; charset=UTF-8") => MakePostRequest(url, content.AsSpan(), contentType);
/// <summary>
/// Make POST request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">String content as a span of characters</param>
/// <param name="contentType">Content type (default is "text/plain; charset=UTF-8")</param>
public HttpRequest MakePostRequest(string url, ReadOnlySpan<char> content, string contentType = "text/plain; charset=UTF-8")
{
Clear();
SetBegin("POST", url);
if (!string.IsNullOrEmpty(contentType))
SetHeader("Content-Type", contentType);
SetBody(content);
return this;
}
/// <summary>
/// Make POST request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">Binary content</param>
/// <param name="contentType">Content type (default is "")</param>
public HttpRequest MakePostRequest(string url, byte[] content, string contentType = "") => MakePostRequest(url, content.AsSpan(), contentType);
/// <summary>
/// Make POST request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">Binary content as a span of bytes</param>
/// <param name="contentType">Content type (default is "")</param>
public HttpRequest MakePostRequest(string url, ReadOnlySpan<byte> content, string contentType = "")
{
Clear();
SetBegin("POST", url);
if (!string.IsNullOrEmpty(contentType))
SetHeader("Content-Type", contentType);
SetBody(content);
return this;
}
/// <summary>
/// Make PUT request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">String content</param>
/// <param name="contentType">Content type (default is "text/plain; charset=UTF-8")</param>
public HttpRequest MakePutRequest(string url, string content, string contentType = "text/plain; charset=UTF-8") => MakePutRequest(url, content.AsSpan(), contentType);
/// <summary>
/// Make PUT request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">String content as a span of characters</param>
/// <param name="contentType">Content type (default is "text/plain; charset=UTF-8")</param>
public HttpRequest MakePutRequest(string url, ReadOnlySpan<char> content, string contentType = "text/plain; charset=UTF-8")
{
Clear();
SetBegin("PUT", url);
if (!string.IsNullOrEmpty(contentType))
SetHeader("Content-Type", contentType);
SetBody(content);
return this;
}
/// <summary>
/// Make PUT request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">Binary content</param>
/// <param name="contentType">Content type (default is "")</param>
public HttpRequest MakePutRequest(string url, byte[] content, string contentType = "") => MakePutRequest(url, content.AsSpan(), contentType);
/// <summary>
/// Make PUT request
/// </summary>
/// <param name="url">URL to request</param>
/// <param name="content">Binary content as a span of bytes</param>
/// <param name="contentType">Content type (default is "")</param>
public HttpRequest MakePutRequest(string url, ReadOnlySpan<byte> content, string contentType = "")
{
Clear();
SetBegin("PUT", url);
if (!string.IsNullOrEmpty(contentType))
SetHeader("Content-Type", contentType);
SetBody(content);
return this;
}
/// <summary>
/// Make DELETE request
/// </summary>
/// <param name="url">URL to request</param>
public HttpRequest MakeDeleteRequest(string url)
{
Clear();
SetBegin("DELETE", url);
SetBody();
return this;
}
/// <summary>
/// Make OPTIONS request
/// </summary>
/// <param name="url">URL to request</param>
public HttpRequest MakeOptionsRequest(string url)
{
Clear();
SetBegin("OPTIONS", url);
SetBody();
return this;
}
/// <summary>
/// Make TRACE request
/// </summary>
/// <param name="url">URL to request</param>
public HttpRequest MakeTraceRequest(string url)
{
Clear();
SetBegin("TRACE", url);
SetBody();
return this;
}
// HTTP request method
private string _method;
// HTTP request URL
private string _url;
// HTTP request protocol
private string _protocol;
// HTTP request headers
private List<(string, string)> _headers = new List<(string, string)>();
// HTTP request cookies
private List<(string, string)> _cookies = new List<(string, string)>();
// HTTP request body
private int _bodyIndex;
private int _bodySize;
private int _bodyLength;
private bool _bodyLengthProvided;
// HTTP request cache
private Buffer _cache = new Buffer();
private int _cacheSize;
// Is pending parts of HTTP request
internal bool IsPendingHeader()
{
return (!IsErrorSet && (_bodyIndex == 0));
}
internal bool IsPendingBody()
{
return (!IsErrorSet && (_bodyIndex > 0) && (_bodySize > 0));
}
internal bool ReceiveHeader(byte[] buffer, int offset, int size)
{
// Update the request cache
_cache.Append(buffer, offset, size);
// Try to seek for HTTP header separator
for (int i = _cacheSize; i < (int)_cache.Size; i++)
{
// Check for the request cache out of bounds
if ((i + 3) >= (int)_cache.Size)
break;
// Check for the header separator
if ((_cache[i + 0] == '\r') && (_cache[i + 1] == '\n') && (_cache[i + 2] == '\r') && (_cache[i + 3] == '\n'))
{
int index = 0;
// Set the error flag for a while...
IsErrorSet = true;
// Parse method
int methodIndex = index;
int methodSize = 0;
while (_cache[index] != ' ')
{
methodSize++;
index++;
if (index >= (int)_cache.Size)
return false;
}
index++;
if (index >= (int)_cache.Size)
return false;
_method = _cache.ExtractString(methodIndex, methodSize);
// Parse URL
int urlIndex = index;
int urlSize = 0;
while (_cache[index] != ' ')
{
urlSize++;
index++;
if (index >= (int)_cache.Size)
return false;
}
index++;
if (index >= (int)_cache.Size)
return false;
_url = _cache.ExtractString(urlIndex, urlSize);
// Parse protocol version
int protocolIndex = index;
int protocolSize = 0;
while (_cache[index] != '\r')
{
protocolSize++;
index++;
if (index >= (int)_cache.Size)
return false;
}
index++;
if ((index >= (int)_cache.Size) || (_cache[index] != '\n'))
return false;
index++;
if (index >= (int)_cache.Size)
return false;
_protocol = _cache.ExtractString(protocolIndex, protocolSize);
// Parse headers
while ((index < (int)_cache.Size) && (index < i))
{
// Parse header name
int headerNameIndex = index;
int headerNameSize = 0;
while (_cache[index] != ':')
{
headerNameSize++;
index++;
if (index >= i)
break;
if (index >= (int)_cache.Size)
return false;
}
index++;
if (index >= i)
break;
if (index >= (int)_cache.Size)
return false;
// Skip all prefix space characters
while (char.IsWhiteSpace((char)_cache[index]))
{
index++;
if (index >= i)
break;
if (index >= (int)_cache.Size)
return false;
}
// Parse header value
int headerValueIndex = index;
int headerValueSize = 0;
while (_cache[index] != '\r')
{
headerValueSize++;
index++;
if (index >= i)
break;
if (index >= (int)_cache.Size)
return false;
}
index++;
if ((index >= (int)_cache.Size) || (_cache[index] != '\n'))
return false;
index++;
if (index >= (int)_cache.Size)
return false;
// Validate header name and value (sometimes value can be empty)
if (headerNameSize == 0)
return false;
// Add a new header
string headerName = _cache.ExtractString(headerNameIndex, headerNameSize);
string headerValue = _cache.ExtractString(headerValueIndex, headerValueSize);
_headers.Add((headerName, headerValue));
// Try to find the body content length
if (string.Compare(headerName, "Content-Length", StringComparison.OrdinalIgnoreCase) == 0)
{
_bodyLength = 0;
for (int j = headerValueIndex; j < (headerValueIndex + headerValueSize); j++)
{
if ((_cache[j] < '0') || (_cache[j] > '9'))
return false;
_bodyLength *= 10;
_bodyLength += _cache[j] - '0';
_bodyLengthProvided = true;
}
}
// Try to find Cookies
if (string.Compare(headerName, "Cookie", StringComparison.OrdinalIgnoreCase) == 0)
{
bool name = true;
bool token = false;
int current = headerValueIndex;
int nameIndex = index;
int nameSize = 0;
int cookieIndex = index;
int cookieSize = 0;
for (int j = headerValueIndex; j < (headerValueIndex + headerValueSize); j++)
{
if (_cache[j] == ' ')
{
if (token)
{
if (name)
{
nameIndex = current;
nameSize = j - current;
}
else
{
cookieIndex = current;
cookieSize = j - current;
}
}
token = false;
continue;
}
if (_cache[j] == '=')
{
if (token)
{
if (name)
{
nameIndex = current;
nameSize = j - current;
}
else
{
cookieIndex = current;
cookieSize = j - current;
}
}
token = false;
name = false;
continue;
}
if (_cache[j] == ';')
{
if (token)
{
if (name)
{
nameIndex = current;
nameSize = j - current;
}
else
{
cookieIndex = current;
cookieSize = j - current;
}
// Validate the cookie
if ((nameSize > 0) && (cookieSize > 0))
{
// Add the cookie to the corresponding collection
_cookies.Add((_cache.ExtractString(nameIndex, nameSize), _cache.ExtractString(cookieIndex, cookieSize)));
// Resset the current cookie values
nameIndex = j;
nameSize = 0;
cookieIndex = j;
cookieSize = 0;
}
}
token = false;
name = true;
continue;
}
if (!token)
{
current = j;
token = true;
}
}
// Process the last cookie
if (token)
{
if (name)
{
nameIndex = current;
nameSize = headerValueIndex + headerValueSize - current;
}
else
{
cookieIndex = current;
cookieSize = headerValueIndex + headerValueSize - current;
}
// Validate the cookie
if ((nameSize > 0) && (cookieSize > 0))
{
// Add the cookie to the corresponding collection
_cookies.Add((_cache.ExtractString(nameIndex, nameSize), _cache.ExtractString(cookieIndex, cookieSize)));
}
}
}
}
// Reset the error flag
IsErrorSet = false;
// Update the body index and size
_bodyIndex = i + 4;
_bodySize = (int)_cache.Size - i - 4;
// Update the parsed cache size
_cacheSize = (int)_cache.Size;
return true;
}
}
// Update the parsed cache size
_cacheSize = ((int)_cache.Size >= 3) ? ((int)_cache.Size - 3) : 0;
return false;
}
internal bool ReceiveBody(byte[] buffer, int offset, int size)
{
// Update the request cache
_cache.Append(buffer, offset, size);
// Update the parsed cache size
_cacheSize = (int)_cache.Size;
// Update body size
_bodySize += size;
// Check if the body length was provided
if (_bodyLengthProvided)
{
// Was the body fully received?
if (_bodySize >= _bodyLength)
{
_bodySize = _bodyLength;
return true;
}
}
else
{
// HEAD/GET/DELETE/OPTIONS/TRACE request might have no body
if ((Method == "HEAD") || (Method == "GET") || (Method == "DELETE") || (Method == "OPTIONS") || (Method == "TRACE"))
{
_bodyLength = 0;
_bodySize = 0;
return true;
}
// Check the body content to find the request body end
if (_bodySize >= 4)
{
int index = _bodyIndex + _bodySize - 4;
// Was the body fully received?
if ((_cache[index + 0] == '\r') && (_cache[index + 1] == '\n') && (_cache[index + 2] == '\r') && (_cache[index + 3] == '\n'))
{
_bodyLength = _bodySize;
return true;
}
}
}
// Body was received partially...
return false;
}
}
}