jellyfin/MediaBrowser.Common.Implementations/HttpClientManager/HttpClientManager.cs

557 lines
20 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Common.IO;
2013-02-25 01:13:45 +01:00
using MediaBrowser.Common.Net;
2013-02-21 22:39:53 +01:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Model.Net;
using System;
using System.Collections.Concurrent;
using System.Collections.Generic;
using System.Globalization;
2013-02-21 02:33:05 +01:00
using System.IO;
using System.Linq;
2013-04-21 00:19:55 +02:00
using System.Net;
2013-02-21 02:33:05 +01:00
using System.Net.Cache;
using System.Net.Http;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
2013-02-26 22:05:52 +01:00
namespace MediaBrowser.Common.Implementations.HttpClientManager
2013-02-21 02:33:05 +01:00
{
/// <summary>
2013-02-26 22:05:52 +01:00
/// Class HttpClientManager
2013-02-21 02:33:05 +01:00
/// </summary>
2013-02-26 22:05:52 +01:00
public class HttpClientManager : IHttpClient
2013-02-21 02:33:05 +01:00
{
2013-02-21 22:39:53 +01:00
/// <summary>
/// The _logger
/// </summary>
private readonly ILogger _logger;
/// <summary>
2013-02-25 01:13:45 +01:00
/// The _app paths
/// </summary>
2013-02-25 01:13:45 +01:00
private readonly IApplicationPaths _appPaths;
2013-04-21 00:19:55 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
2013-02-26 22:05:52 +01:00
/// Initializes a new instance of the <see cref="HttpClientManager" /> class.
2013-02-21 02:33:05 +01:00
/// </summary>
2013-02-25 01:13:45 +01:00
/// <param name="appPaths">The kernel.</param>
2013-02-21 22:39:53 +01:00
/// <param name="logger">The logger.</param>
2013-04-21 00:19:55 +02:00
/// <exception cref="System.ArgumentNullException">
/// appPaths
/// or
/// logger
/// </exception>
2013-06-01 19:57:34 +02:00
public HttpClientManager(IApplicationPaths appPaths, ILogger logger)
2013-02-21 02:33:05 +01:00
{
2013-02-25 01:13:45 +01:00
if (appPaths == null)
{
2013-02-25 01:13:45 +01:00
throw new ArgumentNullException("appPaths");
}
if (logger == null)
{
throw new ArgumentNullException("logger");
}
2013-04-21 00:19:55 +02:00
2013-02-21 22:39:53 +01:00
_logger = logger;
2013-02-25 01:13:45 +01:00
_appPaths = appPaths;
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Holds a dictionary of http clients by host. Use GetHttpClient(host) to retrieve or create a client for web requests.
/// DON'T dispose it after use.
/// </summary>
/// <value>The HTTP clients.</value>
2013-06-01 19:57:34 +02:00
private readonly ConcurrentDictionary<string, HttpClientInfo> _httpClients = new ConcurrentDictionary<string, HttpClientInfo>();
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets
/// </summary>
/// <param name="host">The host.</param>
2013-05-22 15:49:57 +02:00
/// <param name="enableHttpCompression">if set to <c>true</c> [enable HTTP compression].</param>
2013-02-21 02:33:05 +01:00
/// <returns>HttpClient.</returns>
/// <exception cref="System.ArgumentNullException">host</exception>
2013-06-01 19:57:34 +02:00
private HttpClientInfo GetHttpClient(string host, bool enableHttpCompression)
2013-02-21 02:33:05 +01:00
{
if (string.IsNullOrEmpty(host))
{
throw new ArgumentNullException("host");
}
2013-06-01 19:57:34 +02:00
HttpClientInfo client;
var key = host + enableHttpCompression;
if (!_httpClients.TryGetValue(key, out client))
2013-02-21 02:33:05 +01:00
{
var handler = new WebRequestHandler
{
2013-06-27 21:29:58 +02:00
CachePolicy = new RequestCachePolicy(RequestCacheLevel.Revalidate),
AutomaticDecompression = enableHttpCompression ? DecompressionMethods.Deflate : DecompressionMethods.None
2013-02-21 02:33:05 +01:00
};
2013-06-01 19:57:34 +02:00
client = new HttpClientInfo
{
HttpClient = new HttpClient(handler)
{
Timeout = TimeSpan.FromSeconds(20)
}
};
_httpClients.TryAdd(key, client);
2013-02-21 02:33:05 +01:00
}
return client;
}
/// <summary>
/// Performs a GET request and returns the resulting stream
/// </summary>
/// <param name="options">The options.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task{Stream}.</returns>
/// <exception cref="HttpException"></exception>
2013-02-21 02:33:05 +01:00
/// <exception cref="MediaBrowser.Model.Net.HttpException"></exception>
public async Task<Stream> Get(HttpRequestOptions options)
2013-02-21 02:33:05 +01:00
{
ValidateParams(options.Url, options.CancellationToken);
2013-02-21 02:33:05 +01:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-02-21 02:33:05 +01:00
2013-06-01 19:57:34 +02:00
var client = GetHttpClient(GetHostFromUrl(options.Url), options.EnableHttpCompression);
if ((DateTime.UtcNow - client.LastTimeout).TotalSeconds < 30)
{
2013-06-11 04:34:55 +02:00
throw new HttpException(string.Format("Cancelling connection to {0} due to a previous timeout.", options.Url)) { IsTimedOut = true };
2013-06-01 19:57:34 +02:00
}
2013-05-22 18:51:39 +02:00
using (var message = GetHttpRequestMessage(options))
{
2013-05-22 18:51:39 +02:00
if (options.ResourcePool != null)
{
await options.ResourcePool.WaitAsync(options.CancellationToken).ConfigureAwait(false);
}
if ((DateTime.UtcNow - client.LastTimeout).TotalSeconds < 30)
{
if (options.ResourcePool != null)
{
options.ResourcePool.Release();
}
throw new HttpException(string.Format("Connection to {0} timed out", options.Url)) { IsTimedOut = true };
}
2013-05-22 18:51:39 +02:00
_logger.Info("HttpClientManager.Get url: {0}", options.Url);
2013-05-06 22:47:37 +02:00
2013-05-22 18:51:39 +02:00
try
{
2013-05-22 14:45:03 +02:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-04-21 00:19:55 +02:00
2013-06-01 19:57:34 +02:00
var response = await client.HttpClient.SendAsync(message, HttpCompletionOption.ResponseContentRead, options.CancellationToken).ConfigureAwait(false);
2013-04-21 00:19:55 +02:00
EnsureSuccessStatusCode(response);
2013-05-22 18:51:39 +02:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-05-22 18:51:39 +02:00
return await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
2013-05-06 22:47:37 +02:00
}
2013-05-22 18:51:39 +02:00
catch (OperationCanceledException ex)
2013-05-18 20:58:16 +02:00
{
2013-06-01 19:57:34 +02:00
var exception = GetCancellationException(options.Url, options.CancellationToken, ex);
var httpException = exception as HttpException;
if (httpException != null && httpException.IsTimedOut)
{
client.LastTimeout = DateTime.UtcNow;
}
throw exception;
2013-05-18 20:58:16 +02:00
}
2013-05-22 18:51:39 +02:00
catch (HttpRequestException ex)
{
_logger.ErrorException("Error getting response from " + options.Url, ex);
2013-05-22 18:51:39 +02:00
throw new HttpException(ex.Message, ex);
}
catch (Exception ex)
{
_logger.ErrorException("Error getting response from " + options.Url, ex);
2013-05-22 14:45:03 +02:00
2013-05-22 18:51:39 +02:00
throw;
}
finally
{
2013-05-22 18:51:39 +02:00
if (options.ResourcePool != null)
{
options.ResourcePool.Release();
}
}
2013-02-21 02:33:05 +01:00
}
}
2013-04-21 00:19:55 +02:00
/// <summary>
/// Performs a GET request and returns the resulting stream
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="resourcePool">The resource pool.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Stream}.</returns>
public Task<Stream> Get(string url, SemaphoreSlim resourcePool, CancellationToken cancellationToken)
{
return Get(new HttpRequestOptions
{
Url = url,
ResourcePool = resourcePool,
CancellationToken = cancellationToken,
});
}
/// <summary>
/// Gets the specified URL.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Stream}.</returns>
public Task<Stream> Get(string url, CancellationToken cancellationToken)
{
return Get(url, null, cancellationToken);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Performs a POST request
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="postData">Params to add to the POST data.</param>
/// <param name="resourcePool">The resource pool.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>stream on success, null on failure</returns>
/// <exception cref="System.ArgumentNullException">postData</exception>
/// <exception cref="MediaBrowser.Model.Net.HttpException"></exception>
public async Task<Stream> Post(string url, Dictionary<string, string> postData, SemaphoreSlim resourcePool, CancellationToken cancellationToken)
{
ValidateParams(url, cancellationToken);
2013-02-21 02:33:05 +01:00
if (postData == null)
{
throw new ArgumentNullException("postData");
}
cancellationToken.ThrowIfCancellationRequested();
var strings = postData.Keys.Select(key => string.Format("{0}={1}", key, postData[key]));
var postContent = string.Join("&", strings.ToArray());
var content = new StringContent(postContent, Encoding.UTF8, "application/x-www-form-urlencoded");
if (resourcePool != null)
{
await resourcePool.WaitAsync(cancellationToken).ConfigureAwait(false);
}
2013-02-21 02:33:05 +01:00
2013-02-26 22:05:52 +01:00
_logger.Info("HttpClientManager.Post url: {0}", url);
2013-02-21 02:33:05 +01:00
try
{
cancellationToken.ThrowIfCancellationRequested();
2013-06-27 19:48:40 +02:00
var msg = await GetHttpClient(GetHostFromUrl(url), true).HttpClient.PostAsync(url, content, cancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
EnsureSuccessStatusCode(msg);
return await msg.Content.ReadAsStreamAsync().ConfigureAwait(false);
}
catch (OperationCanceledException ex)
{
throw GetCancellationException(url, cancellationToken, ex);
}
catch (HttpRequestException ex)
{
2013-02-21 22:39:53 +01:00
_logger.ErrorException("Error getting response from " + url, ex);
2013-02-21 02:33:05 +01:00
throw new HttpException(ex.Message, ex);
}
finally
{
if (resourcePool != null)
{
resourcePool.Release();
}
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Downloads the contents of a given url into a temporary location
/// </summary>
2013-03-14 20:52:53 +01:00
/// <param name="options">The options.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task{System.String}.</returns>
/// <exception cref="System.ArgumentNullException">progress</exception>
2013-03-14 20:52:53 +01:00
/// <exception cref="HttpException"></exception>
2013-02-21 02:33:05 +01:00
/// <exception cref="MediaBrowser.Model.Net.HttpException"></exception>
public async Task<string> GetTempFile(HttpRequestOptions options)
2013-03-14 20:52:53 +01:00
{
ValidateParams(options.Url, options.CancellationToken);
var tempFile = Path.Combine(_appPaths.TempDirectory, Guid.NewGuid() + ".tmp");
2013-03-14 20:52:53 +01:00
if (options.Progress == null)
2013-02-21 02:33:05 +01:00
{
throw new ArgumentNullException("progress");
}
2013-03-14 20:52:53 +01:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-02-21 02:33:05 +01:00
2013-03-14 20:52:53 +01:00
if (options.ResourcePool != null)
2013-02-21 02:33:05 +01:00
{
2013-03-14 20:52:53 +01:00
await options.ResourcePool.WaitAsync(options.CancellationToken).ConfigureAwait(false);
2013-02-21 02:33:05 +01:00
}
2013-03-14 20:52:53 +01:00
options.Progress.Report(0);
2013-03-14 20:52:53 +01:00
_logger.Info("HttpClientManager.GetTempFile url: {0}, temp file: {1}", options.Url, tempFile);
2013-02-21 02:33:05 +01:00
try
{
2013-03-14 20:52:53 +01:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-02-21 02:33:05 +01:00
2013-05-18 20:58:16 +02:00
using (var message = GetHttpRequestMessage(options))
2013-02-21 02:33:05 +01:00
{
2013-06-01 19:57:34 +02:00
using (var response = await GetHttpClient(GetHostFromUrl(options.Url), options.EnableHttpCompression).HttpClient.SendAsync(message, HttpCompletionOption.ResponseHeadersRead, options.CancellationToken).ConfigureAwait(false))
2013-05-18 20:58:16 +02:00
{
EnsureSuccessStatusCode(response);
2013-02-21 02:33:05 +01:00
2013-05-18 20:58:16 +02:00
options.CancellationToken.ThrowIfCancellationRequested();
2013-03-14 20:52:53 +01:00
2013-05-18 20:58:16 +02:00
var contentLength = GetContentLength(response);
2013-02-21 02:33:05 +01:00
2013-05-18 20:58:16 +02:00
if (!contentLength.HasValue)
2013-02-21 02:33:05 +01:00
{
2013-05-18 20:58:16 +02:00
// We're not able to track progress
using (var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false))
{
2013-05-18 20:58:16 +02:00
using (var fs = new FileStream(tempFile, FileMode.Create, FileAccess.Write, FileShare.Read, StreamDefaults.DefaultFileStreamBufferSize, FileOptions.Asynchronous))
{
await stream.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, options.CancellationToken).ConfigureAwait(false);
}
}
2013-02-21 02:33:05 +01:00
}
2013-05-18 20:58:16 +02:00
else
2013-02-21 02:33:05 +01:00
{
2013-05-18 20:58:16 +02:00
using (var stream = ProgressStream.CreateReadProgressStream(await response.Content.ReadAsStreamAsync().ConfigureAwait(false), options.Progress.Report, contentLength.Value))
{
2013-05-18 20:58:16 +02:00
using (var fs = new FileStream(tempFile, FileMode.Create, FileAccess.Write, FileShare.Read, StreamDefaults.DefaultFileStreamBufferSize, FileOptions.Asynchronous))
{
await stream.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, options.CancellationToken).ConfigureAwait(false);
}
}
2013-02-21 02:33:05 +01:00
}
2013-05-18 20:58:16 +02:00
options.Progress.Report(100);
2013-02-21 02:33:05 +01:00
2013-05-18 20:58:16 +02:00
options.CancellationToken.ThrowIfCancellationRequested();
}
2013-02-21 02:33:05 +01:00
}
}
2013-03-14 20:52:53 +01:00
catch (Exception ex)
2013-02-21 02:33:05 +01:00
{
HandleTempFileException(ex, options, tempFile);
2013-02-21 02:33:05 +01:00
}
2013-03-14 20:52:53 +01:00
finally
2013-02-21 02:33:05 +01:00
{
2013-03-14 20:52:53 +01:00
if (options.ResourcePool != null)
2013-02-21 02:33:05 +01:00
{
2013-03-14 20:52:53 +01:00
options.ResourcePool.Release();
2013-02-21 02:33:05 +01:00
}
}
2013-03-14 20:52:53 +01:00
return tempFile;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Gets the message.
/// </summary>
/// <param name="options">The options.</param>
/// <returns>HttpResponseMessage.</returns>
private HttpRequestMessage GetHttpRequestMessage(HttpRequestOptions options)
{
var message = new HttpRequestMessage(HttpMethod.Get, options.Url);
if (!string.IsNullOrEmpty(options.UserAgent))
{
message.Headers.Add("User-Agent", options.UserAgent);
}
if (!string.IsNullOrEmpty(options.AcceptHeader))
{
message.Headers.Add("Accept", options.AcceptHeader);
}
return message;
}
2013-04-21 00:19:55 +02:00
/// <summary>
/// Gets the length of the content.
/// </summary>
/// <param name="response">The response.</param>
/// <returns>System.Nullable{System.Int64}.</returns>
private long? GetContentLength(HttpResponseMessage response)
{
IEnumerable<string> lengthValues;
if (!response.Headers.TryGetValues("content-length", out lengthValues) && !response.Content.Headers.TryGetValues("content-length", out lengthValues))
{
return null;
}
return long.Parse(string.Join(string.Empty, lengthValues.ToArray()), UsCulture);
}
protected static readonly CultureInfo UsCulture = new CultureInfo("en-US");
2013-03-14 20:52:53 +01:00
/// <summary>
/// Handles the temp file exception.
/// </summary>
/// <param name="ex">The ex.</param>
/// <param name="options">The options.</param>
/// <param name="tempFile">The temp file.</param>
/// <returns>Task.</returns>
/// <exception cref="HttpException"></exception>
private void HandleTempFileException(Exception ex, HttpRequestOptions options, string tempFile)
2013-03-14 20:52:53 +01:00
{
var operationCanceledException = ex as OperationCanceledException;
if (operationCanceledException != null)
{
2013-02-21 02:33:05 +01:00
// Cleanup
if (File.Exists(tempFile))
{
File.Delete(tempFile);
}
2013-03-14 20:52:53 +01:00
throw GetCancellationException(options.Url, options.CancellationToken, operationCanceledException);
2013-02-21 02:33:05 +01:00
}
2013-03-14 20:52:53 +01:00
_logger.ErrorException("Error getting response from " + options.Url, ex);
var httpRequestException = ex as HttpRequestException;
// Cleanup
if (File.Exists(tempFile))
2013-02-21 02:33:05 +01:00
{
2013-03-14 20:52:53 +01:00
File.Delete(tempFile);
}
if (httpRequestException != null)
{
throw new HttpException(ex.Message, ex);
2013-02-21 02:33:05 +01:00
}
2013-03-14 20:52:53 +01:00
throw ex;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Validates the params.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <exception cref="System.ArgumentNullException">url</exception>
private void ValidateParams(string url, CancellationToken cancellationToken)
2013-02-21 02:33:05 +01:00
{
if (string.IsNullOrEmpty(url))
{
throw new ArgumentNullException("url");
}
if (cancellationToken == null)
{
throw new ArgumentNullException("cancellationToken");
}
}
/// <summary>
/// Gets the host from URL.
/// </summary>
/// <param name="url">The URL.</param>
/// <returns>System.String.</returns>
private string GetHostFromUrl(string url)
{
var start = url.IndexOf("://", StringComparison.OrdinalIgnoreCase) + 3;
var len = url.IndexOf('/', start) - start;
return url.Substring(start, len);
}
/// <summary>
/// Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
/// </summary>
public void Dispose()
{
Dispose(true);
GC.SuppressFinalize(this);
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Releases unmanaged and - optionally - managed resources.
/// </summary>
/// <param name="dispose"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool dispose)
2013-02-21 02:33:05 +01:00
{
if (dispose)
{
foreach (var client in _httpClients.Values.ToList())
{
2013-06-01 19:57:34 +02:00
client.HttpClient.Dispose();
2013-02-21 02:33:05 +01:00
}
_httpClients.Clear();
}
}
/// <summary>
/// Throws the cancellation exception.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="exception">The exception.</param>
/// <returns>Exception.</returns>
private Exception GetCancellationException(string url, CancellationToken cancellationToken, OperationCanceledException exception)
{
// If the HttpClient's timeout is reached, it will cancel the Task internally
if (!cancellationToken.IsCancellationRequested)
{
var msg = string.Format("Connection to {0} timed out", url);
2013-02-21 22:39:53 +01:00
_logger.Error(msg);
2013-02-21 02:33:05 +01:00
// Throw an HttpException so that the caller doesn't think it was cancelled by user code
return new HttpException(msg, exception) { IsTimedOut = true };
}
return exception;
}
/// <summary>
/// Ensures the success status code.
/// </summary>
/// <param name="response">The response.</param>
/// <exception cref="MediaBrowser.Model.Net.HttpException"></exception>
private void EnsureSuccessStatusCode(HttpResponseMessage response)
{
if (!response.IsSuccessStatusCode)
{
throw new HttpException(response.ReasonPhrase) { StatusCode = response.StatusCode };
}
}
/// <summary>
/// Posts the specified URL.
/// </summary>
/// <param name="url">The URL.</param>
/// <param name="postData">The post data.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{Stream}.</returns>
public Task<Stream> Post(string url, Dictionary<string, string> postData, CancellationToken cancellationToken)
{
return Post(url, postData, null, cancellationToken);
}
2013-02-21 02:33:05 +01:00
}
}