jellyfin/RSSDP/HttpRequestParser.cs

91 lines
3.3 KiB
C#
Raw Normal View History

2019-01-12 15:41:08 -05:00
using System;
2016-10-29 18:22:20 -04:00
using System.Linq;
using System.Net.Http;
namespace Rssdp.Infrastructure
{
2019-01-12 15:41:08 -05:00
/// <summary>
2019-01-13 15:37:13 -05:00
/// Parses a string into a <see cref="HttpRequestMessage"/> or throws an exception.
2019-01-12 15:41:08 -05:00
/// </summary>
public sealed class HttpRequestParser : HttpParserBase<HttpRequestMessage>
{
#region Fields & Constants
private readonly string[] ContentHeaderNames = new string[]
{
"Allow", "Content-Disposition", "Content-Encoding", "Content-Language", "Content-Length", "Content-Location", "Content-MD5", "Content-Range", "Content-Type", "Expires", "Last-Modified"
};
#endregion
#region Public Methods
/// <summary>
2019-01-13 15:37:13 -05:00
/// Parses the specified data into a <see cref="HttpRequestMessage"/> instance.
2019-01-12 15:41:08 -05:00
/// </summary>
/// <param name="data">A string containing the data to parse.</param>
2019-01-13 15:37:13 -05:00
/// <returns>A <see cref="HttpRequestMessage"/> instance containing the parsed data.</returns>
public override HttpRequestMessage Parse(string data)
2019-01-12 15:41:08 -05:00
{
2019-01-13 15:37:13 -05:00
HttpRequestMessage retVal = null;
2019-01-12 15:41:08 -05:00
try
{
2019-01-13 15:37:13 -05:00
retVal = new HttpRequestMessage();
2019-01-12 15:41:08 -05:00
Parse(retVal, retVal.Headers, data);
return retVal;
}
finally
{
if (retVal != null)
retVal.Dispose();
}
}
#endregion
#region Overrides
/// <summary>
/// Used to parse the first line of an HTTP request or response and assign the values to the appropriate properties on the <paramref name="message"/>.
/// </summary>
/// <param name="data">The first line of the HTTP message to be parsed.</param>
2019-01-13 15:37:13 -05:00
/// <param name="message">Either a <see cref="HttpResponseMessage"/> or <see cref="HttpRequestMessage"/> to assign the parsed values to.</param>
2019-01-12 15:41:08 -05:00
protected override void ParseStatusLine(string data, HttpRequestMessage message)
{
if (data == null) throw new ArgumentNullException(nameof(data));
if (message == null) throw new ArgumentNullException(nameof(message));
var parts = data.Split(' ');
if (parts.Length < 2) throw new ArgumentException("Status line is invalid. Insufficient status parts.", nameof(data));
message.Method = new HttpMethod(parts[0].Trim());
Uri requestUri;
if (Uri.TryCreate(parts[1].Trim(), UriKind.RelativeOrAbsolute, out requestUri))
message.RequestUri = requestUri;
else
System.Diagnostics.Debug.WriteLine(parts[1]);
2016-10-29 18:22:20 -04:00
2017-11-27 14:08:55 -05:00
if (parts.Length >= 3)
{
message.Version = ParseHttpVersion(parts[2].Trim());
}
}
2016-10-29 18:22:20 -04:00
2019-01-07 18:24:34 -05:00
/// <summary>
/// Returns a boolean indicating whether the specified HTTP header name represents a content header (true), or a message header (false).
/// </summary>
/// <param name="headerName">A string containing the name of the header to return the type of.</param>
protected override bool IsContentHeader(string headerName)
{
return ContentHeaderNames.Contains(headerName, StringComparer.OrdinalIgnoreCase);
}
2016-10-29 18:22:20 -04:00
2019-01-07 18:24:34 -05:00
#endregion
2016-10-29 18:22:20 -04:00
2019-01-07 18:24:34 -05:00
}
}