2013-05-22 04:21:36 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-02 16:59:14 +00:00
|
|
|
|
using MediaBrowser.Controller.LiveTv;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2013-06-23 17:48:30 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2013-02-21 21:39:53 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-11-01 01:48:14 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
using System.Collections.Concurrent;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2014-01-28 18:37:01 +00:00
|
|
|
|
namespace MediaBrowser.Providers.Manager
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ProviderManager
|
|
|
|
|
/// </summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
public class ProviderManager : IProviderManager
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-02-21 21:39:53 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _logger
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly ILogger _logger;
|
2013-02-25 00:13:45 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _HTTP client
|
|
|
|
|
/// </summary>
|
|
|
|
|
private readonly IHttpClient _httpClient;
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The _directory watchers
|
|
|
|
|
/// </summary>
|
2014-01-28 21:25:10 +00:00
|
|
|
|
private readonly ILibraryMonitor _libraryMonitor;
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets or sets the configuration manager.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The configuration manager.</value>
|
2013-03-04 05:43:06 +00:00
|
|
|
|
private IServerConfigurationManager ConfigurationManager { get; set; }
|
2013-03-07 05:34:00 +00:00
|
|
|
|
|
2013-10-30 21:33:27 +00:00
|
|
|
|
private IImageProvider[] ImageProviders { get; set; }
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2013-10-31 14:03:23 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2013-10-30 21:33:27 +00:00
|
|
|
|
|
2014-01-29 05:17:58 +00:00
|
|
|
|
private readonly IProviderRepository _providerRepo;
|
2013-12-06 20:07:34 +00:00
|
|
|
|
|
2014-01-28 21:25:10 +00:00
|
|
|
|
private IMetadataService[] _metadataServices = { };
|
2014-01-31 19:55:21 +00:00
|
|
|
|
private IMetadataProvider[] _metadataProviders = { };
|
2014-02-02 13:36:31 +00:00
|
|
|
|
private IEnumerable<IMetadataSaver> _savers;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Initializes a new instance of the <see cref="ProviderManager" /> class.
|
|
|
|
|
/// </summary>
|
2013-02-25 00:13:45 +00:00
|
|
|
|
/// <param name="httpClient">The HTTP client.</param>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <param name="configurationManager">The configuration manager.</param>
|
2014-01-28 21:25:10 +00:00
|
|
|
|
/// <param name="libraryMonitor">The directory watchers.</param>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// <param name="logManager">The log manager.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2014-01-29 05:17:58 +00:00
|
|
|
|
/// <param name="providerRepo">The provider repo.</param>
|
|
|
|
|
public ProviderManager(IHttpClient httpClient, IServerConfigurationManager configurationManager, ILibraryMonitor libraryMonitor, ILogManager logManager, IFileSystem fileSystem, IProviderRepository providerRepo)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-03-08 05:08:27 +00:00
|
|
|
|
_logger = logManager.GetLogger("ProviderManager");
|
2013-02-25 00:13:45 +00:00
|
|
|
|
_httpClient = httpClient;
|
2013-03-04 05:43:06 +00:00
|
|
|
|
ConfigurationManager = configurationManager;
|
2014-01-28 21:25:10 +00:00
|
|
|
|
_libraryMonitor = libraryMonitor;
|
2013-10-31 14:03:23 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-01-29 05:17:58 +00:00
|
|
|
|
_providerRepo = providerRepo;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2013-03-08 05:08:27 +00:00
|
|
|
|
/// Adds the metadata providers.
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// </summary>
|
2013-10-30 21:33:27 +00:00
|
|
|
|
/// <param name="imageProviders">The image providers.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <param name="metadataServices">The metadata services.</param>
|
|
|
|
|
/// <param name="metadataProviders">The metadata providers.</param>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
/// <param name="metadataSavers">The metadata savers.</param>
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public void AddParts(IEnumerable<IImageProvider> imageProviders, IEnumerable<IMetadataService> metadataServices, IEnumerable<IMetadataProvider> metadataProviders, IEnumerable<IMetadataSaver> metadataSavers)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-01-31 19:55:21 +00:00
|
|
|
|
ImageProviders = imageProviders.ToArray();
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
|
|
|
|
_metadataServices = metadataServices.OrderBy(i => i.Order).ToArray();
|
2014-01-31 19:55:21 +00:00
|
|
|
|
_metadataProviders = metadataProviders.ToArray();
|
2014-02-02 13:36:31 +00:00
|
|
|
|
_savers = metadataSavers.ToArray();
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Task RefreshMetadata(IHasMetadata item, MetadataRefreshOptions options, CancellationToken cancellationToken)
|
|
|
|
|
{
|
|
|
|
|
var service = _metadataServices.FirstOrDefault(i => i.CanRefresh(item));
|
|
|
|
|
|
|
|
|
|
if (service != null)
|
|
|
|
|
{
|
|
|
|
|
return service.RefreshMetadata(item, options, cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
_logger.Error("Unable to find a metadata service for item of type " + item.GetType().Name);
|
|
|
|
|
return Task.FromResult(true);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 05:08:27 +00: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 22:19:55 +00:00
|
|
|
|
if (cancellationToken.IsCancellationRequested)
|
|
|
|
|
{
|
|
|
|
|
dataToSave.Dispose();
|
|
|
|
|
cancellationToken.ThrowIfCancellationRequested();
|
|
|
|
|
}
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
|
|
|
|
//Tell the watchers to ignore
|
2014-01-28 21:25:10 +00:00
|
|
|
|
_libraryMonitor.ReportFileSystemChangeBeginning(path);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
|
2013-04-20 22:19:55 +00:00
|
|
|
|
if (dataToSave.CanSeek)
|
|
|
|
|
{
|
|
|
|
|
dataToSave.Position = 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 05:08:27 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-05-10 17:51:10 +00:00
|
|
|
|
using (dataToSave)
|
2013-05-10 17:49:29 +00:00
|
|
|
|
{
|
2013-10-31 14:03:23 +00:00
|
|
|
|
using (var fs = _fileSystem.GetFileStream(path, FileMode.Create, FileAccess.Write, FileShare.Read, true))
|
2013-04-20 19:20:19 +00:00
|
|
|
|
{
|
2013-05-07 18:57:27 +00:00
|
|
|
|
await dataToSave.CopyToAsync(fs, StreamDefaults.DefaultCopyToBufferSize, cancellationToken).ConfigureAwait(false);
|
2013-04-20 19:20:19 +00:00
|
|
|
|
}
|
2013-03-08 05:08:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
//Remove the ignore
|
2014-01-28 21:25:10 +00:00
|
|
|
|
_libraryMonitor.ReportFileSystemChangeComplete(path, false);
|
2013-03-08 05:08:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2013-06-28 20:25:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <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);
|
|
|
|
|
|
2014-02-03 17:44:13 +00:00
|
|
|
|
await SaveImage(item, response.Content, response.ContentType, type, imageIndex, cancellationToken)
|
2013-06-28 20:25:58 +00:00
|
|
|
|
.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="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-03 17:44:13 +00:00
|
|
|
|
public Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, CancellationToken cancellationToken)
|
2013-06-28 20:25:58 +00:00
|
|
|
|
{
|
2014-02-03 17:44:13 +00:00
|
|
|
|
return new ImageSaver(ConfigurationManager, _libraryMonitor, _fileSystem, _logger).SaveImage(item, source, mimeType, type, imageIndex, cancellationToken);
|
2013-06-28 20:25:58 +00:00
|
|
|
|
}
|
2013-10-30 21:33:27 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the available remote images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
2013-11-01 01:48:14 +00:00
|
|
|
|
/// <param name="providerName">Name of the provider.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
2013-10-30 21:33:27 +00:00
|
|
|
|
/// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
|
2014-01-31 19:55:21 +00:00
|
|
|
|
public async Task<IEnumerable<RemoteImageInfo>> GetAvailableRemoteImages(IHasImages item, CancellationToken cancellationToken, string providerName = null, ImageType? type = null)
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
2014-01-28 18:37:01 +00:00
|
|
|
|
var providers = GetRemoteImageProviders(item);
|
2013-11-01 01:48:14 +00:00
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(providerName))
|
|
|
|
|
{
|
|
|
|
|
providers = providers.Where(i => string.Equals(i.Name, providerName, StringComparison.OrdinalIgnoreCase));
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-27 00:23:58 +00:00
|
|
|
|
var preferredLanguage = item.GetPreferredMetadataLanguage();
|
2013-10-30 21:33:27 +00:00
|
|
|
|
|
2013-12-30 02:41:22 +00:00
|
|
|
|
var tasks = providers.Select(i => GetImages(item, cancellationToken, i, preferredLanguage, type));
|
|
|
|
|
|
|
|
|
|
var results = await Task.WhenAll(tasks).ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
return results.SelectMany(i => i);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the images.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="cancellationToken">The cancellation token.</param>
|
|
|
|
|
/// <param name="i">The i.</param>
|
|
|
|
|
/// <param name="preferredLanguage">The preferred language.</param>
|
|
|
|
|
/// <param name="type">The type.</param>
|
|
|
|
|
/// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
|
2014-01-31 19:55:21 +00:00
|
|
|
|
private async Task<IEnumerable<RemoteImageInfo>> GetImages(IHasImages item, CancellationToken cancellationToken, IRemoteImageProvider i, string preferredLanguage, ImageType? type = null)
|
2013-12-30 02:41:22 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
2013-12-30 02:41:22 +00:00
|
|
|
|
if (type.HasValue)
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
2013-12-30 02:41:22 +00:00
|
|
|
|
var result = await i.GetImages(item, type.Value, cancellationToken).ConfigureAwait(false);
|
2013-11-01 01:48:14 +00:00
|
|
|
|
|
2013-12-30 02:41:22 +00:00
|
|
|
|
return FilterImages(result, preferredLanguage);
|
2013-10-30 21:33:27 +00:00
|
|
|
|
}
|
2013-12-30 02:41:22 +00:00
|
|
|
|
else
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
2013-12-30 02:41:22 +00:00
|
|
|
|
var result = await i.GetAllImages(item, cancellationToken).ConfigureAwait(false);
|
|
|
|
|
return FilterImages(result, preferredLanguage);
|
2013-10-30 21:33:27 +00:00
|
|
|
|
}
|
2013-12-30 02:41:22 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
2014-01-28 18:37:01 +00:00
|
|
|
|
_logger.ErrorException("{0} failed in GetImageInfos for type {1}", ex, i.GetType().Name, item.GetType().Name);
|
2013-12-30 02:41:22 +00:00
|
|
|
|
return new List<RemoteImageInfo>();
|
|
|
|
|
}
|
2013-10-30 21:33:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-11-01 01:48:14 +00:00
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the supported image providers.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <returns>IEnumerable{IImageProvider}.</returns>
|
2014-02-09 21:11:11 +00:00
|
|
|
|
public IEnumerable<ImageProviderInfo> GetRemoteImageProviderInfo(IHasImages item)
|
2014-01-31 19:55:21 +00:00
|
|
|
|
{
|
|
|
|
|
return GetRemoteImageProviders(item).Select(i => new ImageProviderInfo
|
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Order = GetOrder(item, i)
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<IImageProvider> GetImageProviders(IHasImages item)
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
2014-01-31 19:55:21 +00:00
|
|
|
|
return ImageProviders.Where(i =>
|
2013-10-30 21:33:27 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-11-01 01:48:14 +00:00
|
|
|
|
return i.Supports(item);
|
2013-10-30 21:33:27 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("{0} failed in Supports for type {1}", ex, i.GetType().Name, item.GetType().Name);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-01-31 19:55:21 +00:00
|
|
|
|
}).OrderBy(i => GetOrder(item, i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<IMetadataProvider<T>> GetMetadataProviders<T>(IHasMetadata item)
|
|
|
|
|
where T : IHasMetadata
|
2014-02-02 13:36:31 +00:00
|
|
|
|
{
|
|
|
|
|
return GetMetadataProvidersInternal<T>(item, false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<IMetadataProvider<T>> GetMetadataProvidersInternal<T>(IHasMetadata item, bool includeDisabled)
|
|
|
|
|
where T : IHasMetadata
|
2014-01-31 19:55:21 +00:00
|
|
|
|
{
|
|
|
|
|
return _metadataProviders.OfType<IMetadataProvider<T>>()
|
2014-02-02 13:36:31 +00:00
|
|
|
|
.Where(i => CanRefresh(i, item, includeDisabled))
|
2014-01-31 19:55:21 +00:00
|
|
|
|
.OrderBy(i => GetOrder(item, i));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private IEnumerable<IRemoteImageProvider> GetRemoteImageProviders(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
return GetImageProviders(item).OfType<IRemoteImageProvider>();
|
2014-01-28 18:37:01 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// Determines whether this instance can refresh the specified provider.
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// </summary>
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// <param name="provider">The provider.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
/// <param name="item">The item.</param>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
/// <param name="includeDisabled">if set to <c>true</c> [include disabled].</param>
|
2014-01-31 19:55:21 +00:00
|
|
|
|
/// <returns><c>true</c> if this instance can refresh the specified provider; otherwise, <c>false</c>.</returns>
|
2014-02-02 13:36:31 +00:00
|
|
|
|
private bool CanRefresh(IMetadataProvider provider, IHasMetadata item, bool includeDisabled)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2014-02-02 13:36:31 +00:00
|
|
|
|
if (!includeDisabled && !ConfigurationManager.Configuration.EnableInternetProviders && provider is IRemoteMetadataProvider)
|
2014-01-28 18:37:01 +00:00
|
|
|
|
{
|
2014-01-31 19:55:21 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
2014-01-31 19:55:21 +00:00
|
|
|
|
if (item.LocationType != LocationType.FileSystem && provider is ILocalMetadataProvider)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
// If this restriction is ever lifted, movie xml providers will have to be updated to prevent owned items like trailers from reading those files
|
|
|
|
|
if (item.IsOwnedItem)
|
|
|
|
|
{
|
|
|
|
|
if (provider is ILocalMetadataProvider || provider is IRemoteMetadataProvider)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-01-31 19:55:21 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the order.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
|
/// <returns>System.Int32.</returns>
|
|
|
|
|
private int GetOrder(IHasImages item, IImageProvider provider)
|
|
|
|
|
{
|
|
|
|
|
var hasOrder = provider as IHasOrder;
|
|
|
|
|
|
|
|
|
|
if (hasOrder == null)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasOrder.Order;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the order.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="provider">The provider.</param>
|
|
|
|
|
/// <returns>System.Int32.</returns>
|
|
|
|
|
private int GetOrder(IHasMetadata item, IMetadataProvider provider)
|
|
|
|
|
{
|
|
|
|
|
var hasOrder = provider as IHasOrder;
|
|
|
|
|
|
|
|
|
|
if (hasOrder == null)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return hasOrder.Order;
|
2013-10-30 21:33:27 +00:00
|
|
|
|
}
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
|
|
|
|
public IEnumerable<MetadataPluginSummary> GetAllMetadataPlugins()
|
|
|
|
|
{
|
2014-02-07 20:30:41 +00:00
|
|
|
|
var list = new List<MetadataPluginSummary>
|
|
|
|
|
{
|
|
|
|
|
GetPluginSummary<Game>(),
|
|
|
|
|
GetPluginSummary<GameSystem>(),
|
|
|
|
|
GetPluginSummary<Movie>(),
|
|
|
|
|
GetPluginSummary<Trailer>(),
|
|
|
|
|
GetPluginSummary<BoxSet>(),
|
|
|
|
|
GetPluginSummary<Book>(),
|
|
|
|
|
GetPluginSummary<Series>(),
|
|
|
|
|
GetPluginSummary<Season>(),
|
|
|
|
|
GetPluginSummary<Episode>(),
|
|
|
|
|
GetPluginSummary<Person>(),
|
|
|
|
|
GetPluginSummary<MusicAlbum>(),
|
|
|
|
|
GetPluginSummary<MusicArtist>(),
|
|
|
|
|
GetPluginSummary<Audio>(),
|
|
|
|
|
GetPluginSummary<Genre>(),
|
|
|
|
|
GetPluginSummary<Studio>(),
|
|
|
|
|
GetPluginSummary<GameGenre>(),
|
|
|
|
|
GetPluginSummary<MusicGenre>(),
|
|
|
|
|
GetPluginSummary<AdultVideo>(),
|
|
|
|
|
GetPluginSummary<MusicVideo>(),
|
|
|
|
|
GetPluginSummary<Video>(),
|
|
|
|
|
GetPluginSummary<LiveTvChannel>(),
|
|
|
|
|
GetPluginSummary<LiveTvProgram>(),
|
|
|
|
|
GetPluginSummary<LiveTvVideoRecording>(),
|
|
|
|
|
GetPluginSummary<LiveTvAudioRecording>()
|
|
|
|
|
};
|
2014-02-02 16:59:14 +00:00
|
|
|
|
|
2014-02-02 13:36:31 +00:00
|
|
|
|
return list;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private MetadataPluginSummary GetPluginSummary<T>()
|
|
|
|
|
where T : BaseItem, new()
|
|
|
|
|
{
|
|
|
|
|
// Give it a dummy path just so that it looks like a file system item
|
|
|
|
|
var dummy = new T()
|
|
|
|
|
{
|
|
|
|
|
Path = "C:\\",
|
|
|
|
|
|
|
|
|
|
// Dummy this up to fool the local trailer check
|
|
|
|
|
Parent = new Folder()
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var summary = new MetadataPluginSummary
|
|
|
|
|
{
|
|
|
|
|
ItemType = typeof(T).Name
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var imageProviders = GetImageProviders(dummy).ToList();
|
|
|
|
|
|
|
|
|
|
AddMetadataPlugins(summary.Plugins, dummy);
|
|
|
|
|
AddImagePlugins(summary.Plugins, dummy, imageProviders);
|
|
|
|
|
|
|
|
|
|
summary.SupportedImageTypes = imageProviders.OfType<IRemoteImageProvider>()
|
|
|
|
|
.SelectMany(i => i.GetSupportedImages(dummy))
|
|
|
|
|
.Distinct()
|
|
|
|
|
.ToList();
|
|
|
|
|
|
|
|
|
|
return summary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AddMetadataPlugins<T>(List<MetadataPlugin> list, T item)
|
|
|
|
|
where T : IHasMetadata
|
|
|
|
|
{
|
|
|
|
|
var providers = GetMetadataProvidersInternal<T>(item, true).ToList();
|
|
|
|
|
|
|
|
|
|
// Locals
|
|
|
|
|
list.AddRange(providers.Where(i => (i is ILocalMetadataProvider)).Select(i => new MetadataPlugin
|
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Type = MetadataPluginType.LocalMetadataProvider
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
// Fetchers
|
2014-02-04 20:19:29 +00:00
|
|
|
|
list.AddRange(providers.Where(i => (i is IRemoteMetadataProvider)).Select(i => new MetadataPlugin
|
2014-02-02 13:36:31 +00:00
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Type = MetadataPluginType.MetadataFetcher
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
// Savers
|
2014-02-08 20:02:35 +00:00
|
|
|
|
list.AddRange(_savers.Where(i => IsSaverEnabledForItem(i, item, ItemUpdateType.MetadataEdit)).OrderBy(i => i.Name).Select(i => new MetadataPlugin
|
2014-02-02 13:36:31 +00:00
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Type = MetadataPluginType.MetadataSaver
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void AddImagePlugins<T>(List<MetadataPlugin> list, T item, List<IImageProvider> imageProviders)
|
|
|
|
|
where T : IHasImages
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
// Locals
|
|
|
|
|
list.AddRange(imageProviders.Where(i => (i is ILocalImageProvider)).Select(i => new MetadataPlugin
|
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Type = MetadataPluginType.LocalImageProvider
|
|
|
|
|
}));
|
|
|
|
|
|
|
|
|
|
// Fetchers
|
|
|
|
|
list.AddRange(imageProviders.Where(i => !(i is ILocalImageProvider)).Select(i => new MetadataPlugin
|
|
|
|
|
{
|
|
|
|
|
Name = i.Name,
|
|
|
|
|
Type = MetadataPluginType.ImageFetcher
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly ConcurrentDictionary<string, SemaphoreSlim> _fileLocks = new ConcurrentDictionary<string, SemaphoreSlim>();
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Saves the metadata.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="updateType">Type of the update.</param>
|
|
|
|
|
/// <returns>Task.</returns>
|
|
|
|
|
public async Task SaveMetadata(IHasMetadata item, ItemUpdateType updateType)
|
|
|
|
|
{
|
2014-02-08 20:02:35 +00:00
|
|
|
|
foreach (var saver in _savers.Where(i => IsSaverEnabledForItem(i, item, updateType)))
|
2014-02-02 13:36:31 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
_logger.Debug("Saving {0} to {1}.", item.Path ?? item.Name, saver.Name);
|
|
|
|
|
|
2014-02-02 16:59:14 +00:00
|
|
|
|
var fileSaver = saver as IMetadataFileSaver;
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
2014-02-02 16:59:14 +00:00
|
|
|
|
if (fileSaver != null)
|
|
|
|
|
{
|
2014-02-08 20:02:35 +00:00
|
|
|
|
string path = null;
|
|
|
|
|
|
|
|
|
|
try
|
2014-02-02 16:59:14 +00:00
|
|
|
|
{
|
2014-02-08 20:02:35 +00:00
|
|
|
|
path = fileSaver.GetSavePath(item);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error in {0} GetSavePath", ex, saver.Name);
|
|
|
|
|
continue;
|
2014-02-02 16:59:14 +00:00
|
|
|
|
}
|
2014-02-02 13:36:31 +00:00
|
|
|
|
|
2014-02-02 16:59:14 +00:00
|
|
|
|
var semaphore = _fileLocks.GetOrAdd(path, key => new SemaphoreSlim(1, 1));
|
|
|
|
|
|
|
|
|
|
await semaphore.WaitAsync().ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_libraryMonitor.ReportFileSystemChangeBeginning(path);
|
|
|
|
|
saver.Save(item, CancellationToken.None);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error in metadata saver", ex);
|
|
|
|
|
}
|
|
|
|
|
finally
|
|
|
|
|
{
|
|
|
|
|
_libraryMonitor.ReportFileSystemChangeComplete(path, false);
|
|
|
|
|
semaphore.Release();
|
|
|
|
|
}
|
2014-02-02 13:36:31 +00:00
|
|
|
|
}
|
2014-02-02 16:59:14 +00:00
|
|
|
|
else
|
2014-02-02 13:36:31 +00:00
|
|
|
|
{
|
2014-02-02 16:59:14 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
saver.Save(item, CancellationToken.None);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error in metadata saver", ex);
|
|
|
|
|
}
|
2014-02-02 13:36:31 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-02-08 20:02:35 +00:00
|
|
|
|
|
|
|
|
|
private bool IsSaverEnabledForItem(IMetadataSaver saver, IHasMetadata item, ItemUpdateType updateType)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
return saver.IsEnabledFor(item, updateType);
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
_logger.ErrorException("Error in {0}.IsEnabledFor", ex, saver.Name);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|