jellyfin/MediaBrowser.Providers/Manager/ProviderManager.cs

1197 lines
45 KiB
C#
Raw Normal View History

using System;
2020-02-23 10:53:51 +01:00
using System.Collections.Concurrent;
2018-12-31 00:28:23 +01:00
using System.Collections.Generic;
2020-02-23 10:53:51 +01:00
using System.Globalization;
2018-12-31 00:28:23 +01:00
using System.IO;
using System.Linq;
using System.Net;
using System.Net.Http;
using System.Net.Mime;
2018-12-31 00:28:23 +01:00
using System.Threading;
using System.Threading.Tasks;
2020-05-13 04:10:35 +02:00
using Jellyfin.Data.Entities;
using Jellyfin.Data.Events;
2018-12-31 00:28:23 +01:00
using MediaBrowser.Common.Net;
using MediaBrowser.Common.Progress;
2015-01-24 05:50:45 +01:00
using MediaBrowser.Controller;
2013-03-04 06:43:06 +01:00
using MediaBrowser.Controller.Configuration;
2018-12-31 00:28:23 +01:00
using MediaBrowser.Controller.Dto;
2013-02-21 02:33:05 +01:00
using MediaBrowser.Controller.Entities;
2014-02-02 14:36:31 +01:00
using MediaBrowser.Controller.Entities.Audio;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Providers;
2018-12-31 00:28:23 +01:00
using MediaBrowser.Controller.Subtitles;
2014-02-02 14:36:31 +01:00
using MediaBrowser.Model.Configuration;
using MediaBrowser.Model.Entities;
2018-12-31 00:28:23 +01:00
using MediaBrowser.Model.IO;
using MediaBrowser.Model.Net;
2018-12-31 00:28:23 +01:00
using MediaBrowser.Model.Providers;
using Microsoft.Extensions.Logging;
2017-04-30 04:37:51 +02:00
using Priority_Queue;
2020-05-13 04:10:35 +02:00
using Book = MediaBrowser.Controller.Entities.Book;
using Episode = MediaBrowser.Controller.Entities.TV.Episode;
using Movie = MediaBrowser.Controller.Entities.Movies.Movie;
using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum;
using Season = MediaBrowser.Controller.Entities.TV.Season;
using Series = MediaBrowser.Controller.Entities.TV.Series;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Providers.Manager
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Class ProviderManager.
2013-02-21 02:33:05 +01:00
/// </summary>
2015-03-14 05:50:23 +01:00
public class ProviderManager : IProviderManager, IDisposable
2013-02-21 02:33:05 +01:00
{
2020-07-03 20:02:04 +02:00
private readonly object _refreshQueueLock = new object();
2020-06-06 02:15:56 +02:00
private readonly ILogger<ProviderManager> _logger;
private readonly IHttpClientFactory _httpClientFactory;
private readonly ILibraryMonitor _libraryMonitor;
2020-04-04 20:56:50 +02:00
private readonly IFileSystem _fileSystem;
private readonly IServerApplicationPaths _appPaths;
private readonly ILibraryManager _libraryManager;
private readonly ISubtitleManager _subtitleManager;
private readonly IServerConfigurationManager _configurationManager;
2020-07-03 20:02:04 +02:00
private readonly ConcurrentDictionary<Guid, double> _activeRefreshes = new ConcurrentDictionary<Guid, double>();
private readonly CancellationTokenSource _disposeCancellationTokenSource = new CancellationTokenSource();
private readonly SimplePriorityQueue<Tuple<Guid, MetadataRefreshOptions>> _refreshQueue =
new SimplePriorityQueue<Tuple<Guid, MetadataRefreshOptions>>();
2013-03-07 06:34:00 +01:00
2020-07-03 20:02:04 +02:00
private IMetadataService[] _metadataServices = Array.Empty<IMetadataService>();
private IMetadataProvider[] _metadataProviders = Array.Empty<IMetadataProvider>();
2014-02-02 14:36:31 +01:00
private IEnumerable<IMetadataSaver> _savers;
2014-02-21 19:48:15 +01:00
private IExternalId[] _externalIds;
2020-07-03 20:02:04 +02:00
private bool _isProcessingRefreshQueue;
private bool _disposed;
2017-06-23 18:04:45 +02:00
2013-02-21 02:33:05 +01:00
/// <summary>
2020-07-03 20:02:04 +02:00
/// Initializes a new instance of the <see cref="ProviderManager"/> class.
2013-02-21 02:33:05 +01:00
/// </summary>
/// <param name="httpClientFactory">The Http client factory.</param>
2020-07-03 20:02:04 +02:00
/// <param name="subtitleManager">The subtitle manager.</param>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="libraryMonitor">The library monitor.</param>
/// <param name="logger">The logger.</param>
/// <param name="fileSystem">The filesystem.</param>
/// <param name="appPaths">The server application paths.</param>
/// <param name="libraryManager">The library manager.</param>
2020-04-04 20:56:50 +02:00
public ProviderManager(
IHttpClientFactory httpClientFactory,
2020-04-04 20:56:50 +02:00
ISubtitleManager subtitleManager,
IServerConfigurationManager configurationManager,
ILibraryMonitor libraryMonitor,
ILogger<ProviderManager> logger,
IFileSystem fileSystem,
IServerApplicationPaths appPaths,
2020-07-03 20:02:04 +02:00
ILibraryManager libraryManager)
2013-02-21 02:33:05 +01:00
{
2020-04-04 20:56:50 +02:00
_logger = logger;
_httpClientFactory = httpClientFactory;
2020-04-04 20:56:50 +02:00
_configurationManager = configurationManager;
_libraryMonitor = libraryMonitor;
_fileSystem = fileSystem;
2015-01-24 05:50:45 +01:00
_appPaths = appPaths;
2020-04-04 20:56:50 +02:00
_libraryManager = libraryManager;
2018-09-12 19:26:21 +02:00
_subtitleManager = subtitleManager;
2013-02-21 02:33:05 +01:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
public event EventHandler<GenericEventArgs<BaseItem>> RefreshStarted;
/// <inheritdoc/>
public event EventHandler<GenericEventArgs<BaseItem>> RefreshCompleted;
/// <inheritdoc/>
public event EventHandler<GenericEventArgs<Tuple<BaseItem, double>>> RefreshProgress;
private IImageProvider[] ImageProviders { get; set; }
/// <inheritdoc/>
public void AddParts(
IEnumerable<IImageProvider> imageProviders,
IEnumerable<IMetadataService> metadataServices,
IEnumerable<IMetadataProvider> metadataProviders,
IEnumerable<IMetadataSaver> metadataSavers,
IEnumerable<IExternalId> externalIds)
2013-02-21 02:33:05 +01:00
{
2014-01-31 20:55:21 +01:00
ImageProviders = imageProviders.ToArray();
_metadataServices = metadataServices.OrderBy(i => i.Order).ToArray();
2014-01-31 20:55:21 +01:00
_metadataProviders = metadataProviders.ToArray();
2020-05-17 23:35:43 +02:00
_externalIds = externalIds.OrderBy(i => i.ProviderName).ToArray();
2015-08-02 21:08:55 +02:00
2020-07-03 20:02:04 +02:00
_savers = metadataSavers
.Where(i => !(i is IConfigurableProvider configurable) || configurable.IsEnabled)
.ToArray();
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public Task<ItemUpdateType> RefreshSingleItem(BaseItem item, MetadataRefreshOptions options, CancellationToken cancellationToken)
{
2017-10-06 17:49:22 +02:00
var type = item.GetType();
2020-07-03 20:02:04 +02:00
var service = _metadataServices.FirstOrDefault(current => current.CanRefreshPrimary(type));
2017-10-06 17:49:22 +02:00
if (service == null)
{
foreach (var current in _metadataServices)
{
if (current.CanRefresh(item))
{
service = current;
break;
}
}
}
if (service != null)
{
return service.RefreshMetadata(item, options, cancellationToken);
}
2018-12-20 13:11:26 +01:00
_logger.LogError("Unable to find a metadata service for item of type {TypeName}", item.GetType().Name);
return Task.FromResult(ItemUpdateType.None);
2013-02-21 02:33:05 +01:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public async Task SaveImage(BaseItem item, string url, ImageType type, int? imageIndex, CancellationToken cancellationToken)
{
var httpClient = _httpClientFactory.CreateClient();
using var response = await httpClient.GetAsync(url, cancellationToken).ConfigureAwait(false);
var contentType = response.Content.Headers.ContentType.MediaType;
2020-07-03 20:02:04 +02:00
// Workaround for tvheadend channel icons
// TODO: Isolate this hack into the tvh plugin
if (string.IsNullOrEmpty(contentType))
2017-10-20 18:16:56 +02:00
{
2020-07-03 20:02:04 +02:00
if (url.IndexOf("/imagecache/", StringComparison.OrdinalIgnoreCase) != -1)
2018-09-12 19:26:21 +02:00
{
contentType = "image/png";
2018-09-12 19:26:21 +02:00
}
2017-10-20 18:16:56 +02:00
}
2020-07-03 20:02:04 +02:00
// thetvdb will sometimes serve a rubbish 404 html page with a 200 OK code, because reasons...
if (contentType.Equals(MediaTypeNames.Text.Html, StringComparison.OrdinalIgnoreCase))
{
throw new HttpException("Invalid image received.")
{
StatusCode = HttpStatusCode.NotFound
};
}
2020-08-17 21:22:42 +02:00
await using var stream = await response.Content.ReadAsStreamAsync().ConfigureAwait(false);
await SaveImage(
item,
2020-08-17 21:22:42 +02:00
stream,
contentType,
type,
imageIndex,
cancellationToken).ConfigureAwait(false);
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, CancellationToken cancellationToken)
{
2020-04-04 20:56:50 +02:00
return new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger).SaveImage(item, source, mimeType, type, imageIndex, cancellationToken);
}
2013-10-30 22:33:27 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public Task SaveImage(BaseItem item, string source, string mimeType, ImageType type, int? imageIndex, bool? saveLocallyWithMedia, CancellationToken cancellationToken)
2015-04-08 17:45:30 +02:00
{
2015-06-21 23:31:21 +02:00
if (string.IsNullOrWhiteSpace(source))
{
throw new ArgumentNullException(nameof(source));
2015-06-21 23:31:21 +02:00
}
2020-01-08 17:52:50 +01:00
var fileStream = new FileStream(source, FileMode.Open, FileAccess.Read, FileShare.ReadWrite, IODefaults.FileStreamBufferSize, true);
2015-04-08 17:45:30 +02:00
2020-04-04 20:56:50 +02:00
return new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger).SaveImage(item, fileStream, mimeType, type, imageIndex, saveLocallyWithMedia, cancellationToken);
2015-04-08 17:45:30 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2020-08-07 19:26:28 +02:00
public Task SaveImage(Stream source, string mimeType, string path)
2020-05-13 04:10:35 +02:00
{
return new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger)
2020-08-07 19:26:28 +02:00
.SaveImage(source, path);
2020-05-13 04:10:35 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public async Task<IEnumerable<RemoteImageInfo>> GetAvailableRemoteImages(BaseItem item, RemoteImageQuery query, CancellationToken cancellationToken)
2013-10-30 22:33:27 +01:00
{
2014-02-12 04:46:27 +01:00
var providers = GetRemoteImageProviders(item, query.IncludeDisabledProviders);
2014-02-12 04:46:27 +01:00
if (!string.IsNullOrEmpty(query.ProviderName))
{
2014-02-12 04:46:27 +01:00
var providerName = query.ProviderName;
providers = providers.Where(i => string.Equals(i.Name, providerName, StringComparison.OrdinalIgnoreCase));
}
var preferredLanguage = item.GetPreferredMetadataLanguage();
2013-10-30 22:33:27 +01:00
2014-06-24 06:18:02 +02:00
var languages = new List<string>();
if (!query.IncludeAllLanguages && !string.IsNullOrWhiteSpace(preferredLanguage))
{
languages.Add(preferredLanguage);
}
2014-02-12 04:46:27 +01:00
2020-07-03 20:02:04 +02:00
var tasks = providers.Select(i => GetImages(item, i, languages, cancellationToken, query.ImageType));
2013-12-30 03:41:22 +01:00
var results = await Task.WhenAll(tasks).ConfigureAwait(false);
return results.SelectMany(i => i.ToList());
2013-12-30 03:41:22 +01:00
}
/// <summary>
/// Gets the images.
/// </summary>
/// <param name="item">The item.</param>
2014-02-13 06:11:54 +01:00
/// <param name="provider">The provider.</param>
2014-06-24 06:18:02 +02:00
/// <param name="preferredLanguages">The preferred languages.</param>
2020-07-03 20:02:04 +02:00
/// <param name="cancellationToken">The cancellation token.</param>
2013-12-30 03:41:22 +01:00
/// <param name="type">The type.</param>
/// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns>
2020-07-03 20:02:04 +02:00
private async Task<IEnumerable<RemoteImageInfo>> GetImages(
BaseItem item,
IRemoteImageProvider provider,
IReadOnlyCollection<string> preferredLanguages,
CancellationToken cancellationToken,
ImageType? type = null)
2013-12-30 03:41:22 +01:00
{
try
2013-10-30 22:33:27 +01:00
{
2014-02-13 06:11:54 +01:00
var result = await provider.GetImages(item, cancellationToken).ConfigureAwait(false);
2013-12-30 03:41:22 +01:00
if (type.HasValue)
2013-10-30 22:33:27 +01:00
{
2014-02-13 06:11:54 +01:00
result = result.Where(i => i.Type == type.Value);
2013-10-30 22:33:27 +01:00
}
2014-02-12 04:46:27 +01:00
2014-06-24 06:18:02 +02:00
if (preferredLanguages.Count > 0)
2014-02-19 06:21:03 +01:00
{
result = result.Where(i => string.IsNullOrEmpty(i.Language) ||
preferredLanguages.Contains(i.Language, StringComparer.OrdinalIgnoreCase) ||
string.Equals(i.Language, "en", StringComparison.OrdinalIgnoreCase));
2014-02-19 06:21:03 +01:00
}
return result;
2013-12-30 03:41:22 +01:00
}
2014-02-26 05:38:21 +01:00
catch (OperationCanceledException)
{
return new List<RemoteImageInfo>();
}
2013-12-30 03:41:22 +01:00
catch (Exception ex)
{
_logger.LogError(ex, "{ProviderName} failed in GetImageInfos for type {ItemType} at {ItemPath}", provider.GetType().Name, item.GetType().Name, item.Path);
2013-12-30 03:41:22 +01:00
return new List<RemoteImageInfo>();
}
2013-10-30 22:33:27 +01:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public IEnumerable<ImageProviderInfo> GetRemoteImageProviderInfo(BaseItem item)
2014-01-31 20:55:21 +01:00
{
return GetRemoteImageProviders(item, true).Select(i => new ImageProviderInfo(i.Name, i.GetSupportedImages(item).ToArray()));
2014-01-31 20:55:21 +01:00
}
2020-07-20 04:30:25 +02:00
/// <summary>
/// Gets the image providers for the provided item.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="refreshOptions">The image refresh options.</param>
/// <returns>The image providers for the item.</returns>
2018-09-12 19:26:21 +02:00
public IEnumerable<IImageProvider> GetImageProviders(BaseItem item, ImageRefreshOptions refreshOptions)
2013-10-30 22:33:27 +01:00
{
2020-04-04 20:56:50 +02:00
return GetImageProviders(item, _libraryManager.GetLibraryOptions(item), GetMetadataOptions(item), refreshOptions, false);
2014-02-11 05:55:01 +01:00
}
2018-09-12 19:26:21 +02:00
private IEnumerable<IImageProvider> GetImageProviders(BaseItem item, LibraryOptions libraryOptions, MetadataOptions options, ImageRefreshOptions refreshOptions, bool includeDisabled)
2014-02-11 05:55:01 +01:00
{
2014-02-19 06:21:03 +01:00
// Avoid implicitly captured closure
var currentOptions = options;
2018-09-12 19:26:21 +02:00
var typeOptions = libraryOptions.GetTypeOptions(item.GetType().Name);
2019-08-29 09:14:50 +02:00
var typeFetcherOrder = typeOptions?.ImageFetcherOrder;
2014-02-11 05:55:01 +01:00
2020-07-03 20:02:04 +02:00
return ImageProviders.Where(i => CanRefresh(i, item, libraryOptions, refreshOptions, includeDisabled))
2018-09-12 19:26:21 +02:00
.OrderBy(i =>
{
// See if there's a user-defined order
if (!(i is ILocalImageProvider))
2014-02-11 05:55:01 +01:00
{
2018-09-12 19:26:21 +02:00
var fetcherOrder = typeFetcherOrder ?? currentOptions.ImageFetcherOrder;
var index = Array.IndexOf(fetcherOrder, i.Name);
if (index != -1)
{
return index;
}
2014-02-11 05:55:01 +01:00
}
2018-09-12 19:26:21 +02:00
// Not configured. Just return some high number to put it at the end.
return 100;
})
2014-02-11 05:55:01 +01:00
.ThenBy(GetOrder);
2014-01-31 20:55:21 +01:00
}
2020-07-20 04:30:25 +02:00
/// <summary>
/// Gets the metadata providers for the provided item.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="libraryOptions">The library options.</param>
/// <typeparam name="T">The type of metadata provider.</typeparam>
/// <returns>The metadata providers.</returns>
2018-09-12 19:26:21 +02:00
public IEnumerable<IMetadataProvider<T>> GetMetadataProviders<T>(BaseItem item, LibraryOptions libraryOptions)
where T : BaseItem
2014-02-02 14:36:31 +01:00
{
2018-09-12 19:26:21 +02:00
var globalMetadataOptions = GetMetadataOptions(item);
2014-02-10 19:39:41 +01:00
2018-09-12 19:26:21 +02:00
return GetMetadataProvidersInternal<T>(item, libraryOptions, globalMetadataOptions, false, false);
2014-02-02 14:36:31 +01:00
}
2018-09-12 19:26:21 +02:00
private IEnumerable<IMetadataProvider<T>> GetMetadataProvidersInternal<T>(BaseItem item, LibraryOptions libraryOptions, MetadataOptions globalMetadataOptions, bool includeDisabled, bool forceEnableInternetMetadata)
where T : BaseItem
2014-01-31 20:55:21 +01:00
{
2014-02-19 06:21:03 +01:00
// Avoid implicitly captured closure
2018-09-12 19:26:21 +02:00
var currentOptions = globalMetadataOptions;
2014-02-12 04:46:27 +01:00
2014-02-19 06:21:03 +01:00
return _metadataProviders.OfType<IMetadataProvider<T>>()
2020-07-03 20:02:04 +02:00
.Where(i => CanRefresh(i, item, libraryOptions, includeDisabled, forceEnableInternetMetadata))
2018-09-12 19:26:21 +02:00
.OrderBy(i => GetConfiguredOrder(item, i, libraryOptions, globalMetadataOptions))
2014-02-19 06:21:03 +01:00
.ThenBy(GetDefaultOrder);
2014-01-31 20:55:21 +01:00
}
2018-09-12 19:26:21 +02:00
private IEnumerable<IRemoteImageProvider> GetRemoteImageProviders(BaseItem item, bool includeDisabled)
2014-01-31 20:55:21 +01:00
{
2014-02-11 05:55:01 +01:00
var options = GetMetadataOptions(item);
2020-04-04 20:56:50 +02:00
var libraryOptions = _libraryManager.GetLibraryOptions(item);
2014-02-11 05:55:01 +01:00
2020-07-03 20:02:04 +02:00
return GetImageProviders(
item,
libraryOptions,
options,
new ImageRefreshOptions(new DirectoryService(_fileSystem)),
includeDisabled).OfType<IRemoteImageProvider>();
}
2020-07-03 20:02:04 +02:00
private bool CanRefresh(
IMetadataProvider provider,
BaseItem item,
LibraryOptions libraryOptions,
bool includeDisabled,
bool forceEnableInternetMetadata)
{
2014-02-11 05:55:01 +01:00
if (!includeDisabled)
{
2014-02-19 06:21:03 +01:00
// If locked only allow local providers
if (item.IsLocked && !(provider is ILocalMetadataProvider) && !(provider is IForcedProvider))
{
return false;
}
2014-02-11 05:55:01 +01:00
if (provider is IRemoteMetadataProvider)
{
2018-09-12 19:26:21 +02:00
if (!forceEnableInternetMetadata && !item.IsMetadataFetcherEnabled(libraryOptions, provider.Name))
2014-02-11 05:55:01 +01:00
{
return false;
}
}
2014-01-31 20:55:21 +01:00
}
2014-02-10 21:11:46 +01:00
if (!item.SupportsLocalMetadata && provider is ILocalMetadataProvider)
2014-01-31 20:55:21 +01:00
{
return false;
}
// If this restriction is ever lifted, movie xml providers will have to be updated to prevent owned items like trailers from reading those files
2018-09-12 19:26:21 +02:00
if (!item.OwnerId.Equals(Guid.Empty))
{
if (provider is ILocalMetadataProvider || provider is IRemoteMetadataProvider)
{
return false;
}
}
2014-01-31 20:55:21 +01:00
return true;
}
2020-07-03 20:02:04 +02:00
private bool CanRefresh(
IImageProvider provider,
BaseItem item,
LibraryOptions libraryOptions,
ImageRefreshOptions refreshOptions,
bool includeDisabled)
2014-02-11 05:55:01 +01:00
{
if (!includeDisabled)
{
2014-02-19 06:21:03 +01:00
// If locked only allow local providers
if (item.IsLocked && !(provider is ILocalImageProvider))
{
2018-09-12 19:26:21 +02:00
if (refreshOptions.ImageRefreshMode != MetadataRefreshMode.FullRefresh)
2017-01-21 21:27:07 +01:00
{
return false;
}
2014-02-19 06:21:03 +01:00
}
2014-02-19 17:24:06 +01:00
if (provider is IRemoteImageProvider || provider is IDynamicImageProvider)
2014-02-11 05:55:01 +01:00
{
2018-09-12 19:26:21 +02:00
if (!item.IsImageFetcherEnabled(libraryOptions, provider.Name))
2014-02-27 04:57:37 +01:00
{
return false;
}
2014-02-11 05:55:01 +01:00
}
}
try
{
return provider.Supports(item);
}
catch (Exception ex)
{
_logger.LogError(ex, "{ProviderName} failed in Supports for type {ItemType} at {ItemPath}", provider.GetType().Name, item.GetType().Name, item.Path);
2014-02-11 05:55:01 +01:00
return false;
}
}
2014-01-31 20:55:21 +01:00
/// <summary>
/// Gets the order.
/// </summary>
/// <param name="provider">The provider.</param>
/// <returns>System.Int32.</returns>
2014-02-10 19:39:41 +01:00
private int GetOrder(IImageProvider provider)
2014-01-31 20:55:21 +01:00
{
2020-07-03 20:02:04 +02:00
if (!(provider is IHasOrder hasOrder))
2014-01-31 20:55:21 +01:00
{
return 0;
}
return hasOrder.Order;
}
2018-09-12 19:26:21 +02:00
private int GetConfiguredOrder(BaseItem item, IMetadataProvider provider, LibraryOptions libraryOptions, MetadataOptions globalMetadataOptions)
2014-02-19 06:21:03 +01:00
{
// See if there's a user-defined order
if (provider is ILocalMetadataProvider)
{
2018-09-12 19:26:21 +02:00
var configuredOrder = libraryOptions.LocalMetadataReaderOrder ?? globalMetadataOptions.LocalMetadataReaderOrder;
var index = Array.IndexOf(configuredOrder, provider.Name);
2014-02-19 06:21:03 +01:00
if (index != -1)
{
return index;
}
}
// See if there's a user-defined order
if (provider is IRemoteMetadataProvider)
{
2018-09-12 19:26:21 +02:00
var typeOptions = libraryOptions.GetTypeOptions(item.GetType().Name);
2020-07-03 20:02:04 +02:00
var typeFetcherOrder = typeOptions?.MetadataFetcherOrder;
2018-09-12 19:26:21 +02:00
var fetcherOrder = typeFetcherOrder ?? globalMetadataOptions.MetadataFetcherOrder;
var index = Array.IndexOf(fetcherOrder, provider.Name);
2014-02-19 06:21:03 +01:00
if (index != -1)
{
return index;
}
}
// Not configured. Just return some high number to put it at the end.
return 100;
}
2014-02-19 17:24:06 +01:00
2014-02-19 06:21:03 +01:00
private int GetDefaultOrder(IMetadataProvider provider)
2014-01-31 20:55:21 +01:00
{
2020-07-03 20:02:04 +02:00
if (provider is IHasOrder hasOrder)
2014-01-31 20:55:21 +01:00
{
2014-02-10 19:39:41 +01:00
return hasOrder.Order;
2014-01-31 20:55:21 +01:00
}
2014-02-10 19:39:41 +01:00
return 0;
2013-10-30 22:33:27 +01:00
}
2014-02-02 14:36:31 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-08-19 21:43:35 +02:00
public MetadataPluginSummary[] GetAllMetadataPlugins()
2014-02-02 14:36:31 +01:00
{
2020-07-03 20:02:04 +02:00
return new[]
2014-02-07 21:30:41 +01:00
{
GetPluginSummary<Movie>(),
GetPluginSummary<BoxSet>(),
GetPluginSummary<Book>(),
GetPluginSummary<Series>(),
GetPluginSummary<Season>(),
GetPluginSummary<Episode>(),
GetPluginSummary<MusicAlbum>(),
GetPluginSummary<MusicArtist>(),
GetPluginSummary<Audio>(),
2017-10-06 17:49:22 +02:00
GetPluginSummary<AudioBook>(),
2014-02-07 21:30:41 +01:00
GetPluginSummary<Studio>(),
GetPluginSummary<MusicVideo>(),
2018-09-12 19:26:21 +02:00
GetPluginSummary<Video>()
2014-02-07 21:30:41 +01:00
};
2014-02-02 14:36:31 +01:00
}
private MetadataPluginSummary GetPluginSummary<T>()
where T : BaseItem, new()
{
// Give it a dummy path just so that it looks like a file system item
2020-07-03 20:02:04 +02:00
var dummy = new T
2014-02-02 14:36:31 +01:00
{
2015-09-06 18:02:41 +02:00
Path = Path.Combine(_appPaths.InternalMetadataPath, "dummy"),
ParentId = Guid.NewGuid()
2014-02-02 14:36:31 +01:00
};
2014-02-10 19:39:41 +01:00
var options = GetMetadataOptions(dummy);
2014-02-02 14:36:31 +01:00
var summary = new MetadataPluginSummary
{
ItemType = typeof(T).Name
};
2018-09-12 19:26:21 +02:00
var libraryOptions = new LibraryOptions();
2020-07-03 20:02:04 +02:00
var imageProviders = GetImageProviders(
dummy,
libraryOptions,
options,
new ImageRefreshOptions(new DirectoryService(_fileSystem)),
true).ToList();
2014-02-02 14:36:31 +01:00
2017-08-19 21:43:35 +02:00
var pluginList = summary.Plugins.ToList();
2018-09-12 19:26:21 +02:00
AddMetadataPlugins(pluginList, dummy, libraryOptions, options);
2020-08-07 19:26:28 +02:00
AddImagePlugins(pluginList, imageProviders);
2017-08-19 21:43:35 +02:00
2018-09-12 19:26:21 +02:00
var subtitleProviders = _subtitleManager.GetSupportedProviders(dummy);
// Subtitle fetchers
pluginList.AddRange(subtitleProviders.Select(i => new MetadataPlugin
{
Name = i.Name,
Type = MetadataPluginType.SubtitleFetcher
}));
2018-12-28 16:48:26 +01:00
summary.Plugins = pluginList.ToArray();
2014-02-02 14:36:31 +01:00
2014-02-24 04:27:13 +01:00
var supportedImageTypes = imageProviders.OfType<IRemoteImageProvider>()
2014-02-02 14:36:31 +01:00
.SelectMany(i => i.GetSupportedImages(dummy))
.ToList();
2014-02-24 04:27:13 +01:00
supportedImageTypes.AddRange(imageProviders.OfType<IDynamicImageProvider>()
.SelectMany(i => i.GetSupportedImages(dummy)));
2017-08-19 21:43:35 +02:00
summary.SupportedImageTypes = supportedImageTypes.Distinct().ToArray();
2014-02-02 14:36:31 +01:00
return summary;
}
2018-09-12 19:26:21 +02:00
private void AddMetadataPlugins<T>(List<MetadataPlugin> list, T item, LibraryOptions libraryOptions, MetadataOptions options)
where T : BaseItem
2014-02-02 14:36:31 +01:00
{
2018-09-12 19:26:21 +02:00
var providers = GetMetadataProvidersInternal<T>(item, libraryOptions, options, true, true).ToList();
2014-02-02 14:36:31 +01:00
// Locals
2020-08-07 19:26:28 +02:00
list.AddRange(providers.Where(i => i is ILocalMetadataProvider).Select(i => new MetadataPlugin
2014-02-02 14:36:31 +01:00
{
Name = i.Name,
Type = MetadataPluginType.LocalMetadataProvider
}));
// Fetchers
2020-08-07 19:26:28 +02:00
list.AddRange(providers.Where(i => i is IRemoteMetadataProvider).Select(i => new MetadataPlugin
2014-02-02 14:36:31 +01:00
{
Name = i.Name,
Type = MetadataPluginType.MetadataFetcher
}));
2014-03-02 16:42:21 +01:00
// Savers
2018-09-12 19:26:21 +02:00
list.AddRange(_savers.Where(i => IsSaverEnabledForItem(i, item, libraryOptions, ItemUpdateType.MetadataEdit, true)).OrderBy(i => i.Name).Select(i => new MetadataPlugin
2014-02-02 14:36:31 +01:00
{
Name = i.Name,
Type = MetadataPluginType.MetadataSaver
}));
2014-02-02 14:36:31 +01:00
}
2020-08-07 19:26:28 +02:00
private void AddImagePlugins(List<MetadataPlugin> list, List<IImageProvider> imageProviders)
2014-02-02 14:36:31 +01:00
{
// Locals
2020-08-07 19:26:28 +02:00
list.AddRange(imageProviders.Where(i => i is ILocalImageProvider).Select(i => new MetadataPlugin
2014-02-02 14:36:31 +01:00
{
Name = i.Name,
Type = MetadataPluginType.LocalImageProvider
}));
// Fetchers
2018-09-12 19:26:21 +02:00
list.AddRange(imageProviders.Where(i => i is IDynamicImageProvider || (i is IRemoteImageProvider)).Select(i => new MetadataPlugin
2014-02-02 14:36:31 +01:00
{
Name = i.Name,
Type = MetadataPluginType.ImageFetcher
}));
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public MetadataOptions GetMetadataOptions(BaseItem item)
{
var type = item.GetType().Name;
2014-02-10 19:39:41 +01:00
2020-04-04 20:56:50 +02:00
return _configurationManager.Configuration.MetadataOptions
.FirstOrDefault(i => string.Equals(i.ItemType, type, StringComparison.OrdinalIgnoreCase)) ??
new MetadataOptions();
}
2014-02-10 19:39:41 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public void SaveMetadata(BaseItem item, ItemUpdateType updateType)
2014-02-02 14:36:31 +01:00
{
2017-05-26 08:48:54 +02:00
SaveMetadata(item, updateType, _savers);
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public void SaveMetadata(BaseItem item, ItemUpdateType updateType, IEnumerable<string> savers)
{
2017-05-26 08:48:54 +02:00
SaveMetadata(item, updateType, _savers.Where(i => savers.Contains(i.Name, StringComparer.OrdinalIgnoreCase)));
}
/// <summary>
/// Saves the metadata.
/// </summary>
/// <param name="item">The item.</param>
/// <param name="updateType">Type of the update.</param>
/// <param name="savers">The savers.</param>
2018-09-12 19:26:21 +02:00
private void SaveMetadata(BaseItem item, ItemUpdateType updateType, IEnumerable<IMetadataSaver> savers)
{
2020-04-04 20:56:50 +02:00
var libraryOptions = _libraryManager.GetLibraryOptions(item);
2018-09-12 19:26:21 +02:00
foreach (var saver in savers.Where(i => IsSaverEnabledForItem(i, item, libraryOptions, updateType, false)))
2014-02-02 14:36:31 +01:00
{
_logger.LogDebug("Saving {0} to {1}.", item.Path ?? item.Name, saver.Name);
2014-02-10 19:39:41 +01:00
2020-07-03 20:02:04 +02:00
if (saver is IMetadataFileSaver fileSaver)
{
2020-07-03 20:02:04 +02:00
string path;
2014-02-08 21:02:35 +01:00
try
{
2014-02-08 21:02:35 +01:00
path = fileSaver.GetSavePath(item);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error in {0} GetSavePath", saver.Name);
2014-02-08 21:02:35 +01:00
continue;
}
2014-02-02 14:36:31 +01:00
try
{
_libraryMonitor.ReportFileSystemChangeBeginning(path);
saver.Save(item, CancellationToken.None);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error in metadata saver");
}
finally
{
_libraryMonitor.ReportFileSystemChangeComplete(path, false);
}
2014-02-02 14:36:31 +01:00
}
else
2014-02-02 14:36:31 +01:00
{
try
{
saver.Save(item, CancellationToken.None);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error in metadata saver");
}
2014-02-02 14:36:31 +01:00
}
}
}
2014-02-08 21:02:35 +01:00
/// <summary>
/// Determines whether [is saver enabled for item] [the specified saver].
/// </summary>
2018-09-12 19:26:21 +02:00
private bool IsSaverEnabledForItem(IMetadataSaver saver, BaseItem item, LibraryOptions libraryOptions, ItemUpdateType updateType, bool includeDisabled)
2014-02-08 21:02:35 +01:00
{
var options = GetMetadataOptions(item);
2014-02-08 21:02:35 +01:00
try
{
2018-09-12 19:26:21 +02:00
if (!saver.IsEnabledFor(item, updateType))
{
return false;
}
2014-06-04 05:34:36 +02:00
2014-02-27 04:57:37 +01:00
if (!includeDisabled)
{
2018-09-12 19:26:21 +02:00
if (libraryOptions.MetadataSavers == null)
2014-02-27 04:57:37 +01:00
{
2018-09-12 19:26:21 +02:00
if (options.DisabledMetadataSavers.Contains(saver.Name, StringComparer.OrdinalIgnoreCase))
{
return false;
}
2014-06-04 05:34:36 +02:00
2018-09-12 19:26:21 +02:00
if (!item.IsSaveLocalMetadataEnabled())
2014-04-08 06:17:18 +02:00
{
2018-09-12 19:26:21 +02:00
if (updateType >= ItemUpdateType.MetadataEdit)
{
// Manual edit occurred
// Even if save local is off, save locally anyway if the metadata file already exists
2020-07-03 20:02:04 +02:00
if (!(saver is IMetadataFileSaver fileSaver) || !File.Exists(fileSaver.GetSavePath(item)))
2018-09-12 19:26:21 +02:00
{
return false;
}
}
else
2014-04-08 06:17:18 +02:00
{
2018-09-12 19:26:21 +02:00
// Manual edit did not occur
// Since local metadata saving is disabled, consider it disabled
2014-04-08 06:17:18 +02:00
return false;
}
}
2018-09-12 19:26:21 +02:00
}
else
{
if (!libraryOptions.MetadataSavers.Contains(saver.Name, StringComparer.OrdinalIgnoreCase))
2014-04-08 06:17:18 +02:00
{
return false;
}
2014-02-27 04:57:37 +01:00
}
}
2018-09-12 19:26:21 +02:00
return true;
2014-02-08 21:02:35 +01:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error in {0}.IsEnabledFor", saver.Name);
2014-02-08 21:02:35 +01:00
return false;
}
}
2014-02-19 06:21:03 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2018-09-12 19:26:21 +02:00
public Task<IEnumerable<RemoteSearchResult>> GetRemoteSearchResults<TItemType, TLookupType>(RemoteSearchQuery<TLookupType> searchInfo, CancellationToken cancellationToken)
2014-02-19 17:24:06 +01:00
where TItemType : BaseItem, new()
where TLookupType : ItemLookupInfo
{
2018-09-12 19:26:21 +02:00
BaseItem referenceItem = null;
if (!searchInfo.ItemId.Equals(Guid.Empty))
2014-02-19 17:24:06 +01:00
{
2020-04-04 20:56:50 +02:00
referenceItem = _libraryManager.GetItemById(searchInfo.ItemId);
2018-09-12 19:26:21 +02:00
}
2014-02-19 17:24:06 +01:00
2018-09-12 19:26:21 +02:00
return GetRemoteSearchResults<TItemType, TLookupType>(searchInfo, referenceItem, cancellationToken);
}
2015-07-09 07:52:25 +02:00
2020-07-03 20:02:04 +02:00
private async Task<IEnumerable<RemoteSearchResult>> GetRemoteSearchResults<TItemType, TLookupType>(RemoteSearchQuery<TLookupType> searchInfo, BaseItem referenceItem, CancellationToken cancellationToken)
2018-09-12 19:26:21 +02:00
where TItemType : BaseItem, new()
where TLookupType : ItemLookupInfo
{
LibraryOptions libraryOptions;
2014-02-19 17:24:06 +01:00
2018-09-12 19:26:21 +02:00
if (referenceItem == null)
{
// Give it a dummy path just so that it looks like a file system item
var dummy = new TItemType
{
Path = Path.Combine(_appPaths.InternalMetadataPath, "dummy"),
ParentId = Guid.NewGuid()
};
dummy.SetParent(new Folder());
referenceItem = dummy;
libraryOptions = new LibraryOptions();
}
else
{
2020-04-04 20:56:50 +02:00
libraryOptions = _libraryManager.GetLibraryOptions(referenceItem);
2018-09-12 19:26:21 +02:00
}
var options = GetMetadataOptions(referenceItem);
var providers = GetMetadataProvidersInternal<TItemType>(referenceItem, libraryOptions, options, searchInfo.IncludeDisabledProviders, false)
2014-02-19 17:24:06 +01:00
.OfType<IRemoteSearchProvider<TLookupType>>();
2014-02-19 06:21:03 +01:00
2014-02-19 17:24:06 +01:00
if (!string.IsNullOrEmpty(searchInfo.SearchProviderName))
{
providers = providers.Where(i => string.Equals(i.Name, searchInfo.SearchProviderName, StringComparison.OrdinalIgnoreCase));
}
2014-03-01 23:34:27 +01:00
if (string.IsNullOrWhiteSpace(searchInfo.SearchInfo.MetadataLanguage))
{
2020-04-04 20:56:50 +02:00
searchInfo.SearchInfo.MetadataLanguage = _configurationManager.Configuration.PreferredMetadataLanguage;
2014-03-01 23:34:27 +01:00
}
2020-06-15 23:43:52 +02:00
2014-03-01 23:34:27 +01:00
if (string.IsNullOrWhiteSpace(searchInfo.SearchInfo.MetadataCountryCode))
{
2020-04-04 20:56:50 +02:00
searchInfo.SearchInfo.MetadataCountryCode = _configurationManager.Configuration.MetadataCountryCode;
2014-03-01 23:34:27 +01:00
}
var resultList = new List<RemoteSearchResult>();
2014-02-19 17:24:06 +01:00
foreach (var provider in providers)
{
2014-11-05 04:41:14 +01:00
try
{
var results = await GetSearchResults(provider, searchInfo.SearchInfo, cancellationToken).ConfigureAwait(false);
2014-02-19 17:24:06 +01:00
foreach (var result in results)
2014-11-05 04:41:14 +01:00
{
2016-04-25 02:36:10 +02:00
var existingMatch = resultList.FirstOrDefault(i => i.ProviderIds.Any(p => string.Equals(result.GetProviderId(p.Key), p.Value, StringComparison.OrdinalIgnoreCase)));
2016-04-25 02:36:10 +02:00
if (existingMatch == null)
{
2016-04-25 02:36:10 +02:00
resultList.Add(result);
}
else
{
foreach (var providerId in result.ProviderIds)
{
2016-04-25 02:36:10 +02:00
if (!existingMatch.ProviderIds.ContainsKey(providerId.Key))
{
2016-04-25 02:36:10 +02:00
existingMatch.ProviderIds.Add(providerId.Key, providerId.Value);
}
}
2016-04-25 02:36:10 +02:00
if (string.IsNullOrWhiteSpace(existingMatch.ImageUrl))
{
existingMatch.ImageUrl = result.ImageUrl;
}
}
2014-11-05 04:41:14 +01:00
}
}
2018-12-31 00:28:23 +01:00
catch (Exception)
2014-02-19 17:24:06 +01:00
{
2014-11-05 04:41:14 +01:00
// Logged at lower levels
2014-02-19 17:24:06 +01:00
}
}
2020-06-14 11:11:11 +02:00
// _logger.LogDebug("Returning search results {0}", _json.SerializeToString(resultList));
2016-04-25 02:36:10 +02:00
return resultList;
2014-02-19 17:24:06 +01:00
}
2014-02-21 19:48:15 +01:00
2020-07-03 20:02:04 +02:00
private async Task<IEnumerable<RemoteSearchResult>> GetSearchResults<TLookupType>(
IRemoteSearchProvider<TLookupType> provider,
TLookupType searchInfo,
2014-03-02 16:42:21 +01:00
CancellationToken cancellationToken)
where TLookupType : ItemLookupInfo
{
var results = await provider.GetSearchResults(searchInfo, cancellationToken).ConfigureAwait(false);
var list = results.ToList();
foreach (var item in list)
{
item.SearchProviderName = provider.Name;
}
return list;
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2020-08-17 21:10:02 +02:00
public Task<HttpResponseMessage> GetSearchImage(string providerName, string url, CancellationToken cancellationToken)
2014-03-01 23:34:27 +01:00
{
var provider = _metadataProviders.OfType<IRemoteSearchProvider>().FirstOrDefault(i => string.Equals(i.Name, providerName, StringComparison.OrdinalIgnoreCase));
if (provider == null)
{
throw new ArgumentException("Search provider not found.");
}
return provider.GetImageResponse(url, cancellationToken);
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2014-02-21 19:48:15 +01:00
public IEnumerable<IExternalId> GetExternalIds(IHasProviderIds item)
{
return _externalIds.Where(i =>
{
try
{
return i.Supports(item);
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error in {0}.Suports", i.GetType().Name);
2014-02-21 19:48:15 +01:00
return false;
}
});
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2016-05-29 08:03:09 +02:00
public IEnumerable<ExternalUrl> GetExternalUrls(BaseItem item)
2014-02-21 19:48:15 +01:00
{
return GetExternalIds(item)
.Select(i =>
{
if (string.IsNullOrEmpty(i.UrlFormatString))
{
return null;
}
2014-02-21 22:44:10 +01:00
2014-02-21 19:48:15 +01:00
var value = item.GetProviderId(i.Key);
if (string.IsNullOrEmpty(value))
{
return null;
}
return new ExternalUrl
{
2020-05-17 23:35:43 +02:00
Name = i.ProviderName,
2020-02-23 10:53:51 +01:00
Url = string.Format(
CultureInfo.InvariantCulture,
i.UrlFormatString,
value)
2014-02-21 19:48:15 +01:00
};
2016-05-29 08:03:09 +02:00
}).Where(i => i != null).Concat(item.GetRelatedUrls());
2014-02-21 19:48:15 +01:00
}
2014-02-21 22:44:10 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2014-02-21 22:44:10 +01:00
public IEnumerable<ExternalIdInfo> GetExternalIdInfos(IHasProviderIds item)
{
return GetExternalIds(item)
.Select(i => new ExternalIdInfo
{
2020-05-17 23:35:43 +02:00
Name = i.ProviderName,
2014-02-21 22:44:10 +01:00
Key = i.Key,
Type = i.Type,
2014-02-21 22:44:10 +01:00
UrlFormatString = i.UrlFormatString
});
}
2015-03-14 05:50:23 +01:00
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-06-23 18:04:45 +02:00
public Dictionary<Guid, Guid> GetRefreshQueue()
{
lock (_refreshQueueLock)
{
var dict = new Dictionary<Guid, Guid>();
foreach (var item in _refreshQueue)
{
dict[item.Item1] = item.Item1;
}
2020-02-23 10:53:51 +01:00
2017-06-23 18:04:45 +02:00
return dict;
}
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-06-23 18:04:45 +02:00
public void OnRefreshStart(BaseItem item)
{
_logger.LogDebug("OnRefreshStart {0}", item.Id.ToString("N", CultureInfo.InvariantCulture));
2020-02-23 10:53:51 +01:00
_activeRefreshes[item.Id] = 0;
2019-03-13 22:32:52 +01:00
RefreshStarted?.Invoke(this, new GenericEventArgs<BaseItem>(item));
2017-06-23 18:04:45 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-06-23 18:04:45 +02:00
public void OnRefreshComplete(BaseItem item)
{
_logger.LogDebug("OnRefreshComplete {0}", item.Id.ToString("N", CultureInfo.InvariantCulture));
2020-02-23 10:53:51 +01:00
_activeRefreshes.Remove(item.Id, out _);
2017-06-23 18:04:45 +02:00
2019-03-13 22:32:52 +01:00
RefreshCompleted?.Invoke(this, new GenericEventArgs<BaseItem>(item));
2017-06-23 18:04:45 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-06-23 18:04:45 +02:00
public double? GetRefreshProgress(Guid id)
{
2020-02-23 10:53:51 +01:00
if (_activeRefreshes.TryGetValue(id, out double value))
2017-06-23 18:04:45 +02:00
{
2020-02-23 10:53:51 +01:00
return value;
2017-06-23 18:04:45 +02:00
}
2020-02-23 10:53:51 +01:00
return null;
2017-06-23 18:04:45 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-06-23 18:04:45 +02:00
public void OnRefreshProgress(BaseItem item, double progress)
{
var id = item.Id;
2020-04-04 21:08:04 +02:00
_logger.LogDebug("OnRefreshProgress {0} {1}", id.ToString("N", CultureInfo.InvariantCulture), progress);
2017-06-23 18:04:45 +02:00
2020-02-28 20:34:10 +01:00
// TODO: Need to hunt down the conditions for this happening
_activeRefreshes.AddOrUpdate(
id,
(_) => throw new Exception(
2020-02-23 10:53:51 +01:00
string.Format(
CultureInfo.InvariantCulture,
2020-04-01 19:05:41 +02:00
"Cannot update refresh progress of item '{0}' ({1}) because a refresh for this item is not running",
2020-02-23 10:53:51 +01:00
item.GetType().Name,
2020-02-28 20:34:10 +01:00
item.Id.ToString("N", CultureInfo.InvariantCulture))),
2020-04-01 19:05:41 +02:00
(_, __) => progress);
2020-02-28 20:34:10 +01:00
RefreshProgress?.Invoke(this, new GenericEventArgs<Tuple<BaseItem, double>>(new Tuple<BaseItem, double>(item, progress)));
2017-06-23 18:04:45 +02:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2017-04-30 04:37:51 +02:00
public void QueueRefresh(Guid id, MetadataRefreshOptions options, RefreshPriority priority)
2015-03-14 05:50:23 +01:00
{
if (_disposed)
{
return;
}
2017-04-30 04:37:51 +02:00
_refreshQueue.Enqueue(new Tuple<Guid, MetadataRefreshOptions>(id, options), (int)priority);
2015-03-14 05:50:23 +01:00
2016-10-27 09:58:33 +02:00
lock (_refreshQueueLock)
2015-03-14 05:50:23 +01:00
{
2016-10-27 09:58:33 +02:00
if (!_isProcessingRefreshQueue)
2015-03-14 05:50:23 +01:00
{
2016-10-27 09:58:33 +02:00
_isProcessingRefreshQueue = true;
2017-05-27 09:19:09 +02:00
Task.Run(StartProcessingRefreshQueue);
2015-03-14 05:50:23 +01:00
}
}
}
2016-10-27 09:58:33 +02:00
private async Task StartProcessingRefreshQueue()
2015-03-14 05:50:23 +01:00
{
2020-04-04 20:56:50 +02:00
var libraryManager = _libraryManager;
2015-03-14 05:50:23 +01:00
2017-06-06 08:13:49 +02:00
if (_disposed)
{
return;
}
var cancellationToken = _disposeCancellationTokenSource.Token;
while (_refreshQueue.TryDequeue(out Tuple<Guid, MetadataRefreshOptions> refreshItem))
2015-03-14 05:50:23 +01:00
{
if (_disposed)
{
return;
}
2015-10-04 20:10:50 +02:00
try
2015-03-14 05:50:23 +01:00
{
2015-10-04 20:10:50 +02:00
var item = libraryManager.GetItemById(refreshItem.Item1);
if (item != null)
2015-03-14 16:38:16 +01:00
{
2015-07-18 04:52:27 +02:00
// Try to throttle this a little bit.
2020-07-03 20:02:04 +02:00
await Task.Delay(100, cancellationToken).ConfigureAwait(false);
2015-07-18 04:52:27 +02:00
2020-02-23 10:53:51 +01:00
var task = item is MusicArtist artist
? RefreshArtist(artist, refreshItem.Item2, cancellationToken)
: RefreshItem(item, refreshItem.Item2, cancellationToken);
2015-03-14 16:38:16 +01:00
await task.ConfigureAwait(false);
}
2015-10-04 20:10:50 +02:00
}
2017-06-06 08:13:49 +02:00
catch (OperationCanceledException)
{
break;
}
2015-10-04 20:10:50 +02:00
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error refreshing item");
2015-03-14 05:50:23 +01:00
}
2015-03-14 16:38:16 +01:00
}
2016-10-27 09:58:33 +02:00
lock (_refreshQueueLock)
{
_isProcessingRefreshQueue = false;
}
2015-03-14 16:38:16 +01:00
}
private async Task RefreshItem(BaseItem item, MetadataRefreshOptions options, CancellationToken cancellationToken)
{
2017-06-06 08:13:49 +02:00
await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false);
2015-03-14 16:38:16 +01:00
2017-01-06 05:38:03 +01:00
// Collection folders don't validate their children so we'll have to simulate that here
2020-07-03 20:02:04 +02:00
switch (item)
2017-01-06 05:38:03 +01:00
{
2020-07-03 20:02:04 +02:00
case CollectionFolder collectionFolder:
await RefreshCollectionFolderChildren(options, collectionFolder, cancellationToken).ConfigureAwait(false);
break;
case Folder folder:
2017-06-23 18:04:45 +02:00
await folder.ValidateChildren(new SimpleProgress<double>(), cancellationToken, options).ConfigureAwait(false);
2020-07-03 20:02:04 +02:00
break;
2015-03-14 05:50:23 +01:00
}
2015-03-14 16:38:16 +01:00
}
2015-03-14 05:50:23 +01:00
2017-06-06 08:13:49 +02:00
private async Task RefreshCollectionFolderChildren(MetadataRefreshOptions options, CollectionFolder collectionFolder, CancellationToken cancellationToken)
2015-03-14 16:38:16 +01:00
{
2019-03-13 22:32:52 +01:00
foreach (var child in collectionFolder.GetPhysicalFolders())
2015-03-14 16:38:16 +01:00
{
2017-06-06 08:13:49 +02:00
await child.RefreshMetadata(options, cancellationToken).ConfigureAwait(false);
2015-03-14 16:38:16 +01:00
2020-07-03 20:02:04 +02:00
await child.ValidateChildren(new SimpleProgress<double>(), cancellationToken, options).ConfigureAwait(false);
2015-03-14 16:38:16 +01:00
}
}
2017-06-06 08:13:49 +02:00
private async Task RefreshArtist(MusicArtist item, MetadataRefreshOptions options, CancellationToken cancellationToken)
2015-03-14 16:38:16 +01:00
{
2020-04-04 20:56:50 +02:00
var albums = _libraryManager
2017-01-21 21:27:07 +01:00
.GetItemList(new InternalItemsQuery
{
2019-03-13 22:32:52 +01:00
IncludeItemTypes = new[] { nameof(MusicAlbum) },
2018-09-12 19:26:21 +02:00
ArtistIds = new[] { item.Id },
2017-05-21 09:25:49 +02:00
DtoOptions = new DtoOptions(false)
{
EnableImages = false
}
2017-01-21 21:27:07 +01:00
})
2019-03-13 22:32:52 +01:00
.OfType<MusicAlbum>();
2015-03-14 16:38:16 +01:00
var musicArtists = albums
2016-03-14 02:34:24 +01:00
.Select(i => i.MusicArtist)
2019-03-13 22:32:52 +01:00
.Where(i => i != null);
2015-03-14 16:38:16 +01:00
2017-06-23 18:04:45 +02:00
var musicArtistRefreshTasks = musicArtists.Select(i => i.ValidateChildren(new SimpleProgress<double>(), cancellationToken, options, true));
2015-03-14 16:38:16 +01:00
await Task.WhenAll(musicArtistRefreshTasks).ConfigureAwait(false);
try
{
2017-06-06 08:13:49 +02:00
await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false);
2015-03-14 16:38:16 +01:00
}
catch (Exception ex)
{
2018-12-20 13:11:26 +01:00
_logger.LogError(ex, "Error refreshing library");
2015-03-14 16:38:16 +01:00
}
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2020-02-23 10:53:51 +01:00
public Task RefreshFullItem(BaseItem item, MetadataRefreshOptions options, CancellationToken cancellationToken)
2015-03-14 16:38:16 +01:00
{
2018-09-12 19:26:21 +02:00
return RefreshItem(item, options, cancellationToken);
2015-03-14 05:50:23 +01:00
}
2020-07-03 20:02:04 +02:00
/// <inheritdoc/>
2015-03-14 05:50:23 +01:00
public void Dispose()
{
2020-08-07 19:26:28 +02:00
Dispose(true);
GC.SuppressFinalize(this);
}
/// <summary>
/// Releases unmanaged and optionally managed resources.
/// </summary>
/// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
protected virtual void Dispose(bool disposing)
{
if (_disposed)
{
return;
}
2017-06-06 08:13:49 +02:00
if (!_disposeCancellationTokenSource.IsCancellationRequested)
{
_disposeCancellationTokenSource.Cancel();
}
2020-08-07 19:26:28 +02:00
if (disposing)
{
_disposeCancellationTokenSource.Dispose();
}
_disposed = true;
2015-03-14 05:50:23 +01:00
}
2013-02-21 02:33:05 +01:00
}
2018-12-28 16:48:26 +01:00
}