-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Expand file tree
/
Copy pathHttpWebResponse.cs
More file actions
436 lines (381 loc) · 15 KB
/
Copy pathHttpWebResponse.cs
File metadata and controls
436 lines (381 loc) · 15 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
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
using System.Collections.Generic;
using System.ComponentModel;
using System.Diagnostics;
using System.IO;
using System.Net.Http;
using System.Runtime.Serialization;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
namespace System.Net
{
/// <devdoc>
/// <para>
/// An HTTP-specific implementation of the
/// <see cref='System.Net.WebResponse'/> class.
/// </para>
/// </devdoc>
public class HttpWebResponse : WebResponse, ISerializable
{
private HttpResponseMessage _httpResponseMessage = null!;
private readonly Uri _requestUri;
private CookieCollection _cookies;
private WebHeaderCollection? _webHeaderCollection;
private string? _characterSet;
private readonly bool _isVersionHttp11 = true;
[Obsolete("This API supports the .NET infrastructure and is not intended to be used directly from your code.", true)]
[EditorBrowsable(EditorBrowsableState.Never)]
public HttpWebResponse()
{
_requestUri = null!;
_cookies = null!;
}
[Obsolete("Serialization has been deprecated for HttpWebResponse.")]
[EditorBrowsable(EditorBrowsableState.Never)]
protected HttpWebResponse(SerializationInfo serializationInfo, StreamingContext streamingContext) : base(serializationInfo, streamingContext)
{
throw new PlatformNotSupportedException();
}
[Obsolete("Serialization has been deprecated for HttpWebResponse.")]
void ISerializable.GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
throw new PlatformNotSupportedException();
}
[Obsolete("Serialization has been deprecated for HttpWebResponse.")]
protected override void GetObjectData(SerializationInfo serializationInfo, StreamingContext streamingContext)
{
throw new PlatformNotSupportedException();
}
internal HttpWebResponse(HttpResponseMessage _message, Uri requestUri, CookieContainer? cookieContainer)
{
_httpResponseMessage = _message;
_requestUri = requestUri;
// Match Desktop behavior. If the request didn't set a CookieContainer, we don't populate the response's CookieCollection.
if (cookieContainer != null)
{
_cookies = cookieContainer.GetCookies(requestUri);
}
else
{
_cookies = new CookieCollection();
}
}
public override bool IsMutuallyAuthenticated
{
get
{
return base.IsMutuallyAuthenticated;
}
}
public override long ContentLength
{
get
{
CheckDisposed();
return _httpResponseMessage.Content?.Headers.ContentLength ?? -1;
}
}
public override string ContentType
{
get
{
CheckDisposed();
// We use TryGetValues() instead of the strongly type Headers.ContentType property so that
// we return a string regardless of it being fully RFC conformant. This matches current
// .NET Framework behavior.
if (_httpResponseMessage.Content != null && _httpResponseMessage.Content.Headers.TryGetValues("Content-Type", out IEnumerable<string>? values))
{
// In most cases, there is only one media type value as per RFC. But for completeness, we
// return all values in cases of overly malformed strings.
return string.Join(',', values);
}
else
{
return string.Empty;
}
}
}
public string ContentEncoding
{
get
{
CheckDisposed();
if (_httpResponseMessage.Content != null)
{
return GetHeaderValueAsString(_httpResponseMessage.Content.Headers.ContentEncoding);
}
return string.Empty;
}
}
public virtual CookieCollection Cookies
{
get
{
CheckDisposed();
return _cookies;
}
set
{
CheckDisposed();
_cookies = value;
}
}
public DateTime LastModified
{
get
{
CheckDisposed();
string? lastmodHeaderValue = Headers["Last-Modified"];
if (string.IsNullOrEmpty(lastmodHeaderValue))
{
return DateTime.Now;
}
if (HttpDateParser.TryParse(lastmodHeaderValue, out DateTimeOffset dateTimeOffset))
{
return dateTimeOffset.LocalDateTime;
}
else
{
throw new ProtocolViolationException(SR.net_baddate);
}
}
}
/// <devdoc>
/// <para>
/// Gets the name of the server that sent the response.
/// </para>
/// </devdoc>
public string Server
{
get
{
CheckDisposed();
string? server = Headers["Server"];
return string.IsNullOrEmpty(server) ? string.Empty : server;
}
}
// HTTP Version
/// <devdoc>
/// <para>
/// Gets
/// the version of the HTTP protocol used in the response.
/// </para>
/// </devdoc>
public Version ProtocolVersion
{
get
{
CheckDisposed();
return _isVersionHttp11 ? HttpVersion.Version11 : HttpVersion.Version10;
}
}
public override WebHeaderCollection Headers
{
get
{
CheckDisposed();
if (_webHeaderCollection == null)
{
_webHeaderCollection = new WebHeaderCollection();
foreach (var header in _httpResponseMessage.Headers)
{
_webHeaderCollection[header.Key] = GetHeaderValueAsString(header.Value);
}
if (_httpResponseMessage.Content != null)
{
foreach (var header in _httpResponseMessage.Content.Headers)
{
_webHeaderCollection[header.Key] = GetHeaderValueAsString(header.Value);
}
}
}
return _webHeaderCollection;
}
}
public virtual string Method
{
get
{
CheckDisposed();
return _httpResponseMessage.RequestMessage!.Method.Method;
}
}
public override Uri ResponseUri
{
get
{
CheckDisposed();
// The underlying System.Net.Http API will automatically update
// the .RequestUri property to be the final URI of the response.
return _httpResponseMessage.RequestMessage!.RequestUri!;
}
}
public virtual HttpStatusCode StatusCode
{
get
{
CheckDisposed();
return _httpResponseMessage.StatusCode;
}
}
public virtual string StatusDescription
{
get
{
CheckDisposed();
return _httpResponseMessage.ReasonPhrase ?? string.Empty;
}
}
/// <devdoc>
/// <para>[To be supplied.]</para>
/// </devdoc>
public string? CharacterSet
{
get
{
CheckDisposed();
string? contentType = Headers["Content-Type"];
if (_characterSet == null && !string.IsNullOrWhiteSpace(contentType))
{
//sets characterset so the branch is never executed again.
_characterSet = string.Empty;
//first string is the media type
string srchString = contentType.ToLowerInvariant();
//media subtypes of text type has a default as specified by rfc 2616
if (srchString.AsSpan().Trim().StartsWith("text/", StringComparison.Ordinal))
{
_characterSet = "ISO-8859-1";
}
//one of the parameters may be the character set
//there must be at least a mediatype for this to be valid
int i = srchString.IndexOf(';');
if (i > 0)
{
//search the parameters
while ((i = srchString.IndexOf("charset", i, StringComparison.Ordinal)) >= 0)
{
i += 7;
//make sure the word starts with charset
if (srchString[i - 8] == ';' || srchString[i - 8] == ' ')
{
//skip whitespace
while (i < srchString.Length && srchString[i] == ' ')
i++;
//only process if next character is '='
//and there is a character after that
if (i < srchString.Length - 1 && srchString[i] == '=')
{
i++;
//get and trim character set substring
int j = srchString.IndexOf(';', i);
//In the past we used
//Substring(i, j). J is the offset not the length
//the qfe is to fix the second parameter so that this it is the
//length. since j points to the next ; the operation j -i
//gives the length of the charset
if (j > i)
_characterSet = contentType.AsSpan(i, j - i).Trim().ToString();
else
_characterSet = contentType.AsSpan(i).Trim().ToString();
//done
break;
}
}
}
}
}
return _characterSet;
}
}
public override bool SupportsHeaders
{
get
{
return true;
}
}
public override Stream GetResponseStream()
{
CheckDisposed();
if (_httpResponseMessage.Content != null)
{
Stream contentStream = _httpResponseMessage.Content.ReadAsStream();
int maxErrorResponseLength = HttpWebRequest.DefaultMaximumErrorResponseLength;
if (maxErrorResponseLength < 0 || StatusCode < HttpStatusCode.BadRequest)
{
return contentStream;
}
return new TruncatedReadStream(contentStream, (long)maxErrorResponseLength * 1024);
}
return Stream.Null;
}
public string GetResponseHeader(string headerName)
{
CheckDisposed();
string? headerValue = Headers[headerName];
return headerValue ?? string.Empty;
}
public override void Close()
{
Dispose(true);
}
protected override void Dispose(bool disposing)
{
var httpResponseMessage = _httpResponseMessage;
if (httpResponseMessage != null)
{
httpResponseMessage.Dispose();
_httpResponseMessage = null!;
}
}
private void CheckDisposed()
{
ObjectDisposedException.ThrowIf(_httpResponseMessage == null, this);
}
private static string GetHeaderValueAsString(IEnumerable<string> values) => string.Join(", ", values);
internal sealed class TruncatedReadStream(Stream innerStream, long maxSize) : Stream
{
private long _maxRemainingLength = maxSize;
public override bool CanRead => true;
public override bool CanSeek => false;
public override bool CanWrite => false;
public override long Length => throw new NotSupportedException();
public override long Position { get => throw new NotSupportedException(); set => throw new NotSupportedException(); }
public override void Flush() => throw new NotSupportedException();
public override int Read(byte[] buffer, int offset, int count)
{
return Read(new Span<byte>(buffer, offset, count));
}
public override int Read(Span<byte> buffer)
{
int readBytes = innerStream.Read(buffer.Slice(0, (int)Math.Min(buffer.Length, _maxRemainingLength)));
_maxRemainingLength -= readBytes;
return readBytes;
}
public override Task<int> ReadAsync(byte[] buffer, int offset, int count, CancellationToken cancellationToken)
{
return ReadAsync(new Memory<byte>(buffer, offset, count), cancellationToken).AsTask();
}
public override async ValueTask<int> ReadAsync(Memory<byte> buffer, CancellationToken cancellationToken = default)
{
int readBytes = await innerStream.ReadAsync(buffer.Slice(0, (int)Math.Min(buffer.Length, _maxRemainingLength)), cancellationToken)
.ConfigureAwait(false);
_maxRemainingLength -= readBytes;
return readBytes;
}
public override long Seek(long offset, SeekOrigin origin) => throw new NotSupportedException();
public override void SetLength(long value) => throw new NotSupportedException();
public override void Write(byte[] buffer, int offset, int count) => throw new NotSupportedException();
public override ValueTask DisposeAsync() => innerStream.DisposeAsync();
protected override void Dispose(bool disposing)
{
if (disposing)
{
innerStream.Dispose();
}
}
}
}
}