jellyfin/MediaBrowser.Server.Impleme.../Providers/ProviderManager.cs

445 lines
17 KiB
C#
Raw Normal View History

2013-05-22 00:21:36 -04:00
using MediaBrowser.Common.IO;
2013-02-24 19:13:45 -05:00
using MediaBrowser.Common.Net;
2013-03-04 00:43:06 -05:00
using MediaBrowser.Controller.Configuration;
2013-02-20 20:33:05 -05:00
using MediaBrowser.Controller.Entities;
2013-12-11 14:54:33 -05:00
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.IO;
using MediaBrowser.Controller.Library;
2013-12-06 15:07:34 -05:00
using MediaBrowser.Controller.Persistence;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2013-02-21 16:39:53 -05:00
using MediaBrowser.Model.Logging;
using MediaBrowser.Model.Providers;
2013-02-20 20:33:05 -05:00
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Server.Implementations.Providers
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Class ProviderManager
/// </summary>
public class ProviderManager : IProviderManager
2013-02-20 20:33:05 -05:00
{
2013-02-21 16:39:53 -05:00
/// <summary>
/// The _logger
/// </summary>
private readonly ILogger _logger;
2013-02-24 19:13:45 -05:00
/// <summary>
/// The _HTTP client
/// </summary>
private readonly IHttpClient _httpClient;
/// <summary>
/// The _directory watchers
/// </summary>
private readonly IDirectoryWatchers _directoryWatchers;
/// <summary>
/// Gets or sets the configuration manager.
/// </summary>
/// <value>The configuration manager.</value>
2013-03-04 00:43:06 -05:00
private IServerConfigurationManager ConfigurationManager { get; set; }
2013-03-07 00:34:00 -05:00
/// <summary>
/// Gets the list of currently registered metadata prvoiders
/// </summary>
/// <value>The metadata providers enumerable.</value>
private BaseMetadataProvider[] MetadataProviders { get; set; }
2013-03-07 00:34:00 -05:00
2013-10-30 17:33:27 -04:00
private IImageProvider[] ImageProviders { get; set; }
private readonly IFileSystem _fileSystem;
2013-10-30 17:33:27 -04:00
2013-12-06 15:07:34 -05:00
private readonly IItemRepository _itemRepo;
2013-02-20 20:33:05 -05:00
/// <summary>
/// Initializes a new instance of the <see cref="ProviderManager" /> class.
/// </summary>
2013-02-24 19:13:45 -05:00
/// <param name="httpClient">The HTTP client.</param>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="directoryWatchers">The directory watchers.</param>
/// <param name="logManager">The log manager.</param>
2013-12-06 15:07:34 -05:00
public ProviderManager(IHttpClient httpClient, IServerConfigurationManager configurationManager, IDirectoryWatchers directoryWatchers, ILogManager logManager, IFileSystem fileSystem, IItemRepository itemRepo)
2013-02-20 20:33:05 -05:00
{
_logger = logManager.GetLogger("ProviderManager");
2013-02-24 19:13:45 -05:00
_httpClient = httpClient;
2013-03-04 00:43:06 -05:00
ConfigurationManager = configurationManager;
_directoryWatchers = directoryWatchers;
_fileSystem = fileSystem;
2013-12-06 15:07:34 -05:00
_itemRepo = itemRepo;
2013-02-20 20:33:05 -05:00
}
/// <summary>
/// Adds the metadata providers.
2013-02-20 20:33:05 -05:00
/// </summary>
/// <param name="providers">The providers.</param>
2013-10-30 17:33:27 -04:00
/// <param name="imageProviders">The image providers.</param>
public void AddParts(IEnumerable<BaseMetadataProvider> providers, IEnumerable<IImageProvider> imageProviders)
2013-02-20 20:33:05 -05:00
{
MetadataProviders = providers.OrderBy(e => e.Priority).ToArray();
2013-10-30 17:33:27 -04:00
ImageProviders = imageProviders.OrderByDescending(i => i.Priority).ToArray();
2013-02-20 20:33:05 -05:00
}
/// <summary>
/// Runs all metadata providers for an entity, and returns true or false indicating if at least one was refreshed and requires persistence
/// </summary>
/// <param name="item">The item.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="force">if set to <c>true</c> [force].</param>
/// <param name="allowSlowProviders">if set to <c>true</c> [allow slow providers].</param>
/// <returns>Task{System.Boolean}.</returns>
public async Task<ItemUpdateType?> ExecuteMetadataProviders(BaseItem item, CancellationToken cancellationToken, bool force = false, bool allowSlowProviders = true)
2013-02-20 20:33:05 -05:00
{
2013-06-17 16:35:43 -04:00
if (item == null)
{
throw new ArgumentNullException("item");
}
ItemUpdateType? result = null;
2013-02-20 20:33:05 -05:00
cancellationToken.ThrowIfCancellationRequested();
2013-09-17 22:43:34 -04:00
var enableInternetProviders = ConfigurationManager.Configuration.EnableInternetProviders;
2013-12-09 22:34:01 -05:00
var providerHistories = item.DateLastSaved == default(DateTime) ?
2013-12-06 15:07:34 -05:00
new List<BaseProviderInfo>() :
_itemRepo.GetProviderHistory(item.Id).ToList();
2013-02-20 20:33:05 -05:00
// Run the normal providers sequentially in order of priority
2013-09-17 22:43:34 -04:00
foreach (var provider in MetadataProviders)
2013-02-20 20:33:05 -05:00
{
cancellationToken.ThrowIfCancellationRequested();
2013-09-17 22:43:34 -04:00
if (!ProviderSupportsItem(provider, item))
{
continue;
}
2013-02-20 20:33:05 -05:00
// Skip if internet providers are currently disabled
2013-09-17 22:43:34 -04:00
if (provider.RequiresInternet && !enableInternetProviders)
2013-02-20 20:33:05 -05:00
{
continue;
}
// Skip if is slow and we aren't allowing slow ones
if (provider.IsSlow && !allowSlowProviders)
{
continue;
}
// Put this check below the await because the needs refresh of the next tier of providers may depend on the previous ones running
// This is the case for the fan art provider which depends on the movie and tv providers having run before them
if (provider.RequiresInternet && item.DontFetchMeta && provider.EnforceDontFetchMetadata)
2013-02-20 20:33:05 -05:00
{
continue;
}
2013-12-06 15:07:34 -05:00
var providerInfo = providerHistories.FirstOrDefault(i => i.ProviderId == provider.Id);
if (providerInfo == null)
{
providerInfo = new BaseProviderInfo
{
ProviderId = provider.Id
};
providerHistories.Add(providerInfo);
}
2013-06-11 14:31:28 -04:00
try
{
2013-12-06 15:07:34 -05:00
if (!force && !provider.NeedsRefresh(item, providerInfo))
2013-06-11 14:31:28 -04:00
{
continue;
}
}
catch (Exception ex)
{
_logger.Error("Error determining NeedsRefresh for {0}", ex, item.Path);
}
2013-12-06 15:07:34 -05:00
var updateType = await FetchAsync(provider, item, providerInfo, force, cancellationToken).ConfigureAwait(false);
2013-02-20 20:33:05 -05:00
if (updateType.HasValue)
{
if (result.HasValue)
{
result = result.Value | updateType.Value;
}
else
{
result = updateType;
}
}
2013-02-20 20:33:05 -05:00
}
2013-12-06 15:07:34 -05:00
if (result.HasValue || force)
{
await _itemRepo.SaveProviderHistory(item.Id, providerHistories, cancellationToken);
}
2013-05-22 00:21:36 -04:00
return result;
2013-02-20 20:33:05 -05:00
}
/// <summary>
/// Providers the supports item.
/// </summary>
/// <param name="provider">The provider.</param>
/// <param name="item">The item.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
private bool ProviderSupportsItem(BaseMetadataProvider provider, BaseItem item)
{
try
{
return provider.Supports(item);
}
catch (Exception ex)
{
_logger.ErrorException("{0} failed in Supports for type {1}", ex, provider.GetType().Name, item.GetType().Name);
return false;
}
}
2013-02-20 20:33:05 -05:00
/// <summary>
/// Fetches metadata and returns true or false indicating if any work that requires persistence was done
/// </summary>
/// <param name="provider">The provider.</param>
/// <param name="item">The item.</param>
2013-12-06 15:07:34 -05:00
/// <param name="providerInfo">The provider information.</param>
/// <param name="force">if set to <c>true</c> [force].</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task{System.Boolean}.</returns>
2013-12-06 15:07:34 -05:00
/// <exception cref="System.ArgumentNullException">item</exception>
private async Task<ItemUpdateType?> FetchAsync(BaseMetadataProvider provider, BaseItem item, BaseProviderInfo providerInfo, bool force, CancellationToken cancellationToken)
{
if (item == null)
{
throw new ArgumentNullException("item");
}
cancellationToken.ThrowIfCancellationRequested();
// Don't clog up the log with these providers
if (!(provider is IDynamicInfoProvider))
{
_logger.Debug("Running {0} for {1}", provider.GetType().Name, item.Path ?? item.Name ?? "--Unknown--");
}
try
{
2013-12-06 15:07:34 -05:00
var changed = await provider.FetchAsync(item, force, providerInfo, cancellationToken).ConfigureAwait(false);
if (changed)
{
return provider.ItemUpdateType;
}
return null;
}
catch (OperationCanceledException ex)
{
_logger.Debug("{0} canceled for {1}", provider.GetType().Name, item.Name);
// If the outer cancellation token is the one that caused the cancellation, throw it
if (cancellationToken.IsCancellationRequested && ex.CancellationToken == cancellationToken)
{
throw;
}
return null;
}
catch (Exception ex)
{
_logger.ErrorException("{0} failed refreshing {1} {2}", ex, provider.GetType().Name, item.Name, item.Path ?? string.Empty);
2013-12-06 15:07:34 -05:00
provider.SetLastRefreshed(item, DateTime.UtcNow, providerInfo, ProviderRefreshStatus.Failure);
return ItemUpdateType.Unspecified;
}
2013-02-20 20:33:05 -05:00
}
/// <summary>
/// Saves to library filesystem.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="path">The path.</param>
/// <param name="dataToSave">The data to save.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
/// <exception cref="System.ArgumentNullException"></exception>
public async Task SaveToLibraryFilesystem(BaseItem item, string path, Stream dataToSave, CancellationToken cancellationToken)
{
if (item == null)
{
throw new ArgumentNullException();
}
if (string.IsNullOrEmpty(path))
{
throw new ArgumentNullException();
}
if (dataToSave == null)
{
throw new ArgumentNullException();
}
2013-04-20 18:19:55 -04:00
if (cancellationToken.IsCancellationRequested)
{
dataToSave.Dispose();
cancellationToken.ThrowIfCancellationRequested();
}
//Tell the watchers to ignore
_directoryWatchers.TemporarilyIgnore(path);
2013-04-20 18:19:55 -04:00
if (dataToSave.CanSeek)
{
dataToSave.Position = 0;
}
try
{
2013-05-10 13:51:10 -04:00
using (dataToSave)
{
using (var fs = _fileSystem.GetFileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, true))
2013-04-20 15:20:19 -04:00
{
2013-05-07 14:57:27 -04:00
await dataToSave.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, cancellationToken).ConfigureAwait(false);
2013-04-20 15:20:19 -04:00
}
}
// If this is ever used for something other than metadata we can add a file type param
item.ResolveArgs.AddMetadataFile(path);
}
finally
{
//Remove the ignore
_directoryWatchers.RemoveTempIgnore(path);
}
}
/// <summary>
/// Saves the image.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="url">The URL.</param>
/// <param name="resourcePool">The resource pool.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public async Task SaveImage(BaseItem item, string url, SemaphoreSlim resourcePool, ImageType type, int? imageIndex, CancellationToken cancellationToken)
{
var response = await _httpClient.GetResponse(new HttpRequestOptions
{
CancellationToken = cancellationToken,
ResourcePool = resourcePool,
Url = url
}).ConfigureAwait(false);
await SaveImage(item, response.Content, response.ContentType, type, imageIndex, url, cancellationToken)
.ConfigureAwait(false);
}
/// <summary>
/// Saves the image.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="source">The source.</param>
/// <param name="mimeType">Type of the MIME.</param>
/// <param name="type">The type.</param>
/// <param name="imageIndex">Index of the image.</param>
/// <param name="sourceUrl">The source URL.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <returns>Task.</returns>
public Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, string sourceUrl, CancellationToken cancellationToken)
{
2013-11-08 10:35:11 -05:00
return new ImageSaver(ConfigurationManager, _directoryWatchers, _fileSystem, _logger).SaveImage(item, source, mimeType, type, imageIndex, sourceUrl, cancellationToken);
}
2013-10-30 17:33:27 -04:00
/// <summary>
/// Gets the available remote images.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="providerName">Name of the provider.</param>
/// <param name="type">The type.</param>
2013-10-30 17:33:27 -04:00
/// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
public async Task<IEnumerable<RemoteImageInfo>> GetAvailableRemoteImages(BaseItem item, CancellationToken cancellationToken, string providerName = null, ImageType? type = null)
2013-10-30 17:33:27 -04:00
{
var providers = GetImageProviders(item);
if (!string.IsNullOrEmpty(providerName))
{
providers = providers.Where(i => string.Equals(i.Name, providerName, StringComparison.OrdinalIgnoreCase));
}
var preferredLanguage = item.GetPreferredMetadataLanguage();
2013-10-30 17:33:27 -04:00
var tasks = providers.Select(i => Task.Run(async () =>
{
try
{
if (type.HasValue)
{
var result = await i.GetImages(item, type.Value, cancellationToken).ConfigureAwait(false);
return FilterImages(result, preferredLanguage);
}
else
{
var result = await i.GetAllImages(item, cancellationToken).ConfigureAwait(false);
return FilterImages(result, preferredLanguage);
}
2013-10-30 17:33:27 -04:00
}
catch (Exception ex)
{
_logger.ErrorException("{0} failed in GetImages for type {1}", ex, i.GetType().Name, item.GetType().Name);
2013-10-30 17:33:27 -04:00
return new List<RemoteImageInfo>();
}
}, cancellationToken));
2013-10-30 17:33:27 -04:00
var results = await Task.WhenAll(tasks).ConfigureAwait(false);
return results.SelectMany(i => i);
}
private IEnumerable<RemoteImageInfo> FilterImages(IEnumerable<RemoteImageInfo> images, string preferredLanguage)
{
if (string.Equals(preferredLanguage, "en", StringComparison.OrdinalIgnoreCase))
{
images = images.Where(i => string.IsNullOrEmpty(i.Language) ||
string.Equals(i.Language, "en", StringComparison.OrdinalIgnoreCase));
}
return images;
}
2013-10-30 17:33:27 -04:00
/// <summary>
/// Gets the supported image providers.
/// </summary>
/// <param name="item">The item.</param>
/// <returns>IEnumerable{IImageProvider}.</returns>
public IEnumerable<IImageProvider> GetImageProviders(BaseItem item)
2013-10-30 17:33:27 -04:00
{
return ImageProviders.Where(i =>
{
try
{
return i.Supports(item);
2013-10-30 17:33:27 -04:00
}
catch (Exception ex)
{
_logger.ErrorException("{0} failed in Supports for type {1}", ex, i.GetType().Name, item.GetType().Name);
return false;
}
});
}
2013-02-20 20:33:05 -05:00
}
}