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;
|
2016-06-16 02:37:06 +00:00
|
|
|
|
using System.Net;
|
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; }
|
|
|
|
|
|
2016-06-16 02:37:06 +00:00
|
|
|
|
public DecompressionMethods? DecompressionMethod { get; set; }
|
|
|
|
|
|
2013-05-04 04:07:27 +00:00
|
|
|
|
/// <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; }
|
2013-05-06 19:31:57 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-05-27 15:02:16 +00:00
|
|
|
|
/// Gets or sets a value indicating whether [enable HTTP compression].
|
2013-05-06 19:31:57 +00:00
|
|
|
|
/// </summary>
|
2013-05-27 15:02:16 +00:00
|
|
|
|
/// <value><c>true</c> if [enable HTTP compression]; otherwise, <c>false</c>.</value>
|
2013-05-20 18:03:09 +00:00
|
|
|
|
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
|
|
|
|
|
2014-02-13 16:38:43 +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; }
|
2015-10-07 21:42:29 +00:00
|
|
|
|
public bool LogErrors { 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
|
|
|
|
|
2014-10-02 00:28:16 +00:00
|
|
|
|
public CacheMode CacheMode { get; set; }
|
2014-09-28 16:50:33 +00:00
|
|
|
|
public TimeSpan CacheLength { get; set; }
|
|
|
|
|
|
2014-10-22 04:42:26 +00:00
|
|
|
|
public int TimeoutMs { get; set; }
|
2016-03-25 05:39:49 +00:00
|
|
|
|
public bool PreferIpv4 { get; set; }
|
2014-10-22 04:42:26 +00:00
|
|
|
|
|
2013-09-18 02:43:34 +00:00
|
|
|
|
private string GetHeaderValue(string name)
|
|
|
|
|
{
|
|
|
|
|
string value;
|
|
|
|
|
|
|
|
|
|
RequestHeaders.TryGetValue(name, out value);
|
|
|
|
|
|
|
|
|
|
return value;
|
|
|
|
|
}
|
|
|
|
|
|
2013-05-27 15:02:16 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="HttpRequestOptions"/> class.
|
|
|
|
|
/// </summary>
|
2013-05-20 18:03:09 +00:00
|
|
|
|
public HttpRequestOptions()
|
|
|
|
|
{
|
|
|
|
|
EnableHttpCompression = 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;
|
2015-10-07 21:42:29 +00:00
|
|
|
|
LogErrors = true;
|
2014-10-12 01:46:02 +00:00
|
|
|
|
CacheMode = CacheMode.None;
|
2014-10-22 04:42:26 +00:00
|
|
|
|
|
|
|
|
|
TimeoutMs = 20000;
|
2013-05-20 18:03:09 +00:00
|
|
|
|
}
|
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
|
|
|
|
}
|
2014-10-02 00:28:16 +00:00
|
|
|
|
|
|
|
|
|
public enum CacheMode
|
|
|
|
|
{
|
2014-10-13 20:14:53 +00:00
|
|
|
|
None = 0,
|
|
|
|
|
Unconditional = 1
|
2014-10-02 00:28:16 +00:00
|
|
|
|
}
|
2013-03-14 19:52:53 +00:00
|
|
|
|
}
|