jellyfin/MediaBrowser.Common/Net/HttpRequestOptions.cs

126 lines
3.6 KiB
C#
Raw Normal View History

2013-03-14 19:52:53 +00:00
using System;
2013-09-18 02:43:34 +00:00
using System.Collections.Generic;
2014-09-03 02:30:05 +00:00
using System.Linq;
2013-03-14 19:52:53 +00:00
using System.Threading;
namespace MediaBrowser.Common.Net
{
/// <summary>
/// Class HttpRequestOptions
/// </summary>
public class HttpRequestOptions
{
/// <summary>
/// Gets or sets the URL.
/// </summary>
/// <value>The URL.</value>
public string Url { get; set; }
/// <summary>
/// Gets or sets the accept header.
/// </summary>
/// <value>The accept header.</value>
2013-09-18 02:43:34 +00:00
public string AcceptHeader
{
get { return GetHeaderValue("Accept"); }
set
{
RequestHeaders["Accept"] = value;
}
}
2013-03-14 19:52:53 +00:00
/// <summary>
/// Gets or sets the cancellation token.
/// </summary>
/// <value>The cancellation token.</value>
public CancellationToken CancellationToken { get; set; }
/// <summary>
/// Gets or sets the resource pool.
/// </summary>
/// <value>The resource pool.</value>
public SemaphoreSlim ResourcePool { get; set; }
/// <summary>
/// Gets or sets the user agent.
/// </summary>
/// <value>The user agent.</value>
2013-09-18 02:43:34 +00:00
public string UserAgent
{
get { return GetHeaderValue("User-Agent"); }
set
{
RequestHeaders["User-Agent"] = value;
}
}
2013-03-14 19:52:53 +00:00
2014-06-04 03:34:36 +00:00
/// <summary>
/// Gets or sets the referrer.
/// </summary>
/// <value>The referrer.</value>
public string Referer { get; set; }
2014-05-07 02:28:19 +00:00
/// <summary>
/// Gets or sets the host.
/// </summary>
/// <value>The host.</value>
public string Host { get; set; }
2013-03-14 19:52:53 +00:00
/// <summary>
/// Gets or sets the progress.
/// </summary>
/// <value>The progress.</value>
public IProgress<double> Progress { get; set; }
/// <summary>
/// Gets or sets a value indicating whether [enable HTTP compression].
/// </summary>
/// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value>
public bool EnableHttpCompression { get; set; }
2013-09-18 02:43:34 +00:00
public Dictionary<string, string> RequestHeaders { get; private set; }
2013-12-16 18:44:03 +00:00
public string RequestContentType { get; set; }
public string RequestContent { get; set; }
2014-05-05 04:36:45 +00:00
public byte[] RequestContentBytes { get; set; }
2013-12-16 18:44:03 +00:00
public bool BufferContent { get; set; }
2014-02-26 04:38:21 +00:00
2014-03-14 17:09:22 +00:00
public bool LogRequest { get; set; }
2014-04-08 04:17:18 +00:00
public bool LogErrorResponseBody { get; set; }
2014-05-16 17:11:07 +00:00
public bool EnableKeepAlive { get; set; }
2014-02-26 04:38:21 +00:00
2013-09-18 02:43:34 +00:00
private string GetHeaderValue(string name)
{
string value;
RequestHeaders.TryGetValue(name, out value);
return value;
}
/// <summary>
/// Initializes a new instance of the <see cref="HttpRequestOptions"/> class.
/// </summary>
public HttpRequestOptions()
{
EnableHttpCompression = true;
BufferContent = true;
2013-09-18 02:43:34 +00:00
RequestHeaders = new Dictionary<string, string>(StringComparer.OrdinalIgnoreCase);
2014-03-14 17:09:22 +00:00
LogRequest = true;
}
2014-09-03 02:30:05 +00:00
public void SetPostData(IDictionary<string,string> values)
{
var strings = values.Keys.Select(key => string.Format("{0}={1}", key, values[key]));
var postContent = string.Join("&", strings.ToArray());
RequestContent = postContent;
RequestContentType = "application/x-www-form-urlencoded";
}
2013-03-14 19:52:53 +00:00
}
}