| | 1 | | using System; |
| | 2 | | using System.Collections.Concurrent; |
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Globalization; |
| | 5 | | using System.IO; |
| | 6 | | using System.Linq; |
| | 7 | | using System.Net; |
| | 8 | | using System.Net.Http; |
| | 9 | | using System.Net.Mime; |
| | 10 | | using System.Runtime.ExceptionServices; |
| | 11 | | using System.Threading; |
| | 12 | | using System.Threading.Tasks; |
| | 13 | | using AsyncKeyedLock; |
| | 14 | | using Jellyfin.Data.Enums; |
| | 15 | | using Jellyfin.Data.Events; |
| | 16 | | using Jellyfin.Extensions; |
| | 17 | | using MediaBrowser.Common.Net; |
| | 18 | | using MediaBrowser.Controller; |
| | 19 | | using MediaBrowser.Controller.BaseItemManager; |
| | 20 | | using MediaBrowser.Controller.Configuration; |
| | 21 | | using MediaBrowser.Controller.Dto; |
| | 22 | | using MediaBrowser.Controller.Entities; |
| | 23 | | using MediaBrowser.Controller.Entities.Audio; |
| | 24 | | using MediaBrowser.Controller.Entities.Movies; |
| | 25 | | using MediaBrowser.Controller.Library; |
| | 26 | | using MediaBrowser.Controller.Lyrics; |
| | 27 | | using MediaBrowser.Controller.Providers; |
| | 28 | | using MediaBrowser.Controller.Subtitles; |
| | 29 | | using MediaBrowser.Model.Configuration; |
| | 30 | | using MediaBrowser.Model.Entities; |
| | 31 | | using MediaBrowser.Model.Extensions; |
| | 32 | | using MediaBrowser.Model.IO; |
| | 33 | | using MediaBrowser.Model.Net; |
| | 34 | | using MediaBrowser.Model.Providers; |
| | 35 | | using Microsoft.Extensions.Caching.Memory; |
| | 36 | | using Microsoft.Extensions.Logging; |
| | 37 | | using Book = MediaBrowser.Controller.Entities.Book; |
| | 38 | | using Episode = MediaBrowser.Controller.Entities.TV.Episode; |
| | 39 | | using Movie = MediaBrowser.Controller.Entities.Movies.Movie; |
| | 40 | | using MusicAlbum = MediaBrowser.Controller.Entities.Audio.MusicAlbum; |
| | 41 | | using Season = MediaBrowser.Controller.Entities.TV.Season; |
| | 42 | | using Series = MediaBrowser.Controller.Entities.TV.Series; |
| | 43 | |
|
| | 44 | | namespace MediaBrowser.Providers.Manager |
| | 45 | | { |
| | 46 | | /// <summary> |
| | 47 | | /// Class ProviderManager. |
| | 48 | | /// </summary> |
| | 49 | | public class ProviderManager : IProviderManager, IDisposable |
| | 50 | | { |
| 91 | 51 | | private readonly Lock _refreshQueueLock = new(); |
| | 52 | | private readonly ILogger<ProviderManager> _logger; |
| | 53 | | private readonly IHttpClientFactory _httpClientFactory; |
| | 54 | | private readonly ILibraryMonitor _libraryMonitor; |
| | 55 | | private readonly IFileSystem _fileSystem; |
| | 56 | | private readonly IServerApplicationPaths _appPaths; |
| | 57 | | private readonly ILibraryManager _libraryManager; |
| | 58 | | private readonly ISubtitleManager _subtitleManager; |
| | 59 | | private readonly ILyricManager _lyricManager; |
| | 60 | | private readonly IServerConfigurationManager _configurationManager; |
| | 61 | | private readonly IBaseItemManager _baseItemManager; |
| 91 | 62 | | private readonly ConcurrentDictionary<Guid, double> _activeRefreshes = new(); |
| 91 | 63 | | private readonly CancellationTokenSource _disposeCancellationTokenSource = new(); |
| 91 | 64 | | private readonly PriorityQueue<(Guid ItemId, MetadataRefreshOptions RefreshOptions), RefreshPriority> _refreshQu |
| | 65 | | private readonly IMemoryCache _memoryCache; |
| | 66 | | private readonly IMediaSegmentManager _mediaSegmentManager; |
| 91 | 67 | | private readonly AsyncKeyedLocker<string> _imageSaveLock = new(o => |
| 91 | 68 | | { |
| 91 | 69 | | o.PoolSize = 20; |
| 91 | 70 | | o.PoolInitialFill = 1; |
| 91 | 71 | | }); |
| | 72 | |
|
| 91 | 73 | | private IImageProvider[] _imageProviders = []; |
| 91 | 74 | | private IMetadataService[] _metadataServices = []; |
| 91 | 75 | | private IMetadataProvider[] _metadataProviders = []; |
| 91 | 76 | | private IMetadataSaver[] _savers = []; |
| 91 | 77 | | private IExternalId[] _externalIds = []; |
| 91 | 78 | | private IExternalUrlProvider[] _externalUrlProviders = []; |
| | 79 | | private bool _isProcessingRefreshQueue; |
| | 80 | | private bool _disposed; |
| | 81 | |
|
| | 82 | | /// <summary> |
| | 83 | | /// Initializes a new instance of the <see cref="ProviderManager"/> class. |
| | 84 | | /// </summary> |
| | 85 | | /// <param name="httpClientFactory">The Http client factory.</param> |
| | 86 | | /// <param name="subtitleManager">The subtitle manager.</param> |
| | 87 | | /// <param name="configurationManager">The configuration manager.</param> |
| | 88 | | /// <param name="libraryMonitor">The library monitor.</param> |
| | 89 | | /// <param name="logger">The logger.</param> |
| | 90 | | /// <param name="fileSystem">The filesystem.</param> |
| | 91 | | /// <param name="appPaths">The server application paths.</param> |
| | 92 | | /// <param name="libraryManager">The library manager.</param> |
| | 93 | | /// <param name="baseItemManager">The BaseItem manager.</param> |
| | 94 | | /// <param name="lyricManager">The lyric manager.</param> |
| | 95 | | /// <param name="memoryCache">The memory cache.</param> |
| | 96 | | /// <param name="mediaSegmentManager">The media segment manager.</param> |
| | 97 | | public ProviderManager( |
| | 98 | | IHttpClientFactory httpClientFactory, |
| | 99 | | ISubtitleManager subtitleManager, |
| | 100 | | IServerConfigurationManager configurationManager, |
| | 101 | | ILibraryMonitor libraryMonitor, |
| | 102 | | ILogger<ProviderManager> logger, |
| | 103 | | IFileSystem fileSystem, |
| | 104 | | IServerApplicationPaths appPaths, |
| | 105 | | ILibraryManager libraryManager, |
| | 106 | | IBaseItemManager baseItemManager, |
| | 107 | | ILyricManager lyricManager, |
| | 108 | | IMemoryCache memoryCache, |
| | 109 | | IMediaSegmentManager mediaSegmentManager) |
| | 110 | | { |
| 91 | 111 | | _logger = logger; |
| 91 | 112 | | _httpClientFactory = httpClientFactory; |
| 91 | 113 | | _configurationManager = configurationManager; |
| 91 | 114 | | _libraryMonitor = libraryMonitor; |
| 91 | 115 | | _fileSystem = fileSystem; |
| 91 | 116 | | _appPaths = appPaths; |
| 91 | 117 | | _libraryManager = libraryManager; |
| 91 | 118 | | _subtitleManager = subtitleManager; |
| 91 | 119 | | _baseItemManager = baseItemManager; |
| 91 | 120 | | _lyricManager = lyricManager; |
| 91 | 121 | | _memoryCache = memoryCache; |
| 91 | 122 | | _mediaSegmentManager = mediaSegmentManager; |
| 91 | 123 | | } |
| | 124 | |
|
| | 125 | | /// <inheritdoc/> |
| | 126 | | public event EventHandler<GenericEventArgs<BaseItem>>? RefreshStarted; |
| | 127 | |
|
| | 128 | | /// <inheritdoc/> |
| | 129 | | public event EventHandler<GenericEventArgs<BaseItem>>? RefreshCompleted; |
| | 130 | |
|
| | 131 | | /// <inheritdoc/> |
| | 132 | | public event EventHandler<GenericEventArgs<Tuple<BaseItem, double>>>? RefreshProgress; |
| | 133 | |
|
| | 134 | | /// <inheritdoc/> |
| | 135 | | public void AddParts( |
| | 136 | | IEnumerable<IImageProvider> imageProviders, |
| | 137 | | IEnumerable<IMetadataService> metadataServices, |
| | 138 | | IEnumerable<IMetadataProvider> metadataProviders, |
| | 139 | | IEnumerable<IMetadataSaver> metadataSavers, |
| | 140 | | IEnumerable<IExternalId> externalIds, |
| | 141 | | IEnumerable<IExternalUrlProvider> externalUrlProviders) |
| | 142 | | { |
| 91 | 143 | | _imageProviders = imageProviders.ToArray(); |
| 91 | 144 | | _metadataServices = metadataServices.OrderBy(i => i.Order).ToArray(); |
| 91 | 145 | | _metadataProviders = metadataProviders.ToArray(); |
| 91 | 146 | | _externalIds = externalIds.OrderBy(i => i.ProviderName).ToArray(); |
| 91 | 147 | | _externalUrlProviders = externalUrlProviders.OrderBy(i => i.Name).ToArray(); |
| | 148 | |
|
| 91 | 149 | | _savers = metadataSavers.ToArray(); |
| 91 | 150 | | } |
| | 151 | |
|
| | 152 | | /// <inheritdoc/> |
| | 153 | | public Task<ItemUpdateType> RefreshSingleItem(BaseItem item, MetadataRefreshOptions options, CancellationToken c |
| | 154 | | { |
| 59 | 155 | | var type = item.GetType(); |
| | 156 | |
|
| 59 | 157 | | var service = _metadataServices.FirstOrDefault(current => current.CanRefreshPrimary(type)) |
| 59 | 158 | | ?? _metadataServices.FirstOrDefault(current => current.CanRefresh(item)); |
| | 159 | |
|
| 59 | 160 | | if (service is null) |
| | 161 | | { |
| 1 | 162 | | _logger.LogError("Unable to find a metadata service for item of type {TypeName}", type.Name); |
| 1 | 163 | | return Task.FromResult(ItemUpdateType.None); |
| | 164 | | } |
| | 165 | |
|
| 58 | 166 | | return service.RefreshMetadata(item, options, cancellationToken); |
| | 167 | | } |
| | 168 | |
|
| | 169 | | /// <inheritdoc/> |
| | 170 | | public async Task SaveImage(BaseItem item, string url, ImageType type, int? imageIndex, CancellationToken cancel |
| | 171 | | { |
| | 172 | | using (await _imageSaveLock.LockAsync(url, cancellationToken).ConfigureAwait(false)) |
| | 173 | | { |
| | 174 | | if (_memoryCache.TryGetValue(url, out (string ContentType, byte[] ImageContents)? cachedValue) |
| | 175 | | && cachedValue is not null) |
| | 176 | | { |
| | 177 | | var imageContents = cachedValue.Value.ImageContents; |
| | 178 | | var cacheStream = new MemoryStream(imageContents, 0, imageContents.Length, false); |
| | 179 | | await using (cacheStream.ConfigureAwait(false)) |
| | 180 | | { |
| | 181 | | await SaveImage( |
| | 182 | | item, |
| | 183 | | cacheStream, |
| | 184 | | cachedValue.Value.ContentType, |
| | 185 | | type, |
| | 186 | | imageIndex, |
| | 187 | | cancellationToken).ConfigureAwait(false); |
| | 188 | | return; |
| | 189 | | } |
| | 190 | | } |
| | 191 | |
|
| | 192 | | var httpClient = _httpClientFactory.CreateClient(NamedClient.Default); |
| | 193 | | using var response = await httpClient.GetAsync(url, cancellationToken).ConfigureAwait(false); |
| | 194 | |
|
| | 195 | | response.EnsureSuccessStatusCode(); |
| | 196 | |
|
| | 197 | | var contentType = response.Content.Headers.ContentType?.MediaType; |
| | 198 | |
|
| | 199 | | // Workaround for tvheadend channel icons |
| | 200 | | // TODO: Isolate this hack into the tvh plugin |
| | 201 | | if (string.IsNullOrEmpty(contentType)) |
| | 202 | | { |
| | 203 | | // Special case for imagecache |
| | 204 | | if (url.Contains("/imagecache/", StringComparison.OrdinalIgnoreCase)) |
| | 205 | | { |
| | 206 | | contentType = MediaTypeNames.Image.Png; |
| | 207 | | } |
| | 208 | | } |
| | 209 | |
|
| | 210 | | // some providers don't correctly report media type, extract from url if no extension found |
| | 211 | | if (contentType is null || contentType.Equals(MediaTypeNames.Application.Octet, StringComparison.Ordinal |
| | 212 | | { |
| | 213 | | // Strip query parameters from url to get actual path. |
| | 214 | | contentType = MimeTypes.GetMimeType(new Uri(url).GetLeftPart(UriPartial.Path)); |
| | 215 | | } |
| | 216 | |
|
| | 217 | | if (!contentType.StartsWith("image/", StringComparison.OrdinalIgnoreCase)) |
| | 218 | | { |
| | 219 | | throw new HttpRequestException($"Request returned '{contentType}' instead of an image type", null, H |
| | 220 | | } |
| | 221 | |
|
| | 222 | | var responseBytes = await response.Content.ReadAsByteArrayAsync(cancellationToken).ConfigureAwait(false) |
| | 223 | | var stream = new MemoryStream(responseBytes, 0, responseBytes.Length, false); |
| | 224 | | await using (stream.ConfigureAwait(false)) |
| | 225 | | { |
| | 226 | | _memoryCache.Set(url, (contentType, responseBytes), TimeSpan.FromSeconds(10)); |
| | 227 | |
|
| | 228 | | await SaveImage( |
| | 229 | | item, |
| | 230 | | stream, |
| | 231 | | contentType, |
| | 232 | | type, |
| | 233 | | imageIndex, |
| | 234 | | cancellationToken).ConfigureAwait(false); |
| | 235 | | } |
| | 236 | | } |
| | 237 | | } |
| | 238 | |
|
| | 239 | | /// <inheritdoc/> |
| | 240 | | public Task SaveImage(BaseItem item, Stream source, string mimeType, ImageType type, int? imageIndex, Cancellati |
| | 241 | | { |
| 0 | 242 | | return new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger).SaveImage(item, source, |
| | 243 | | } |
| | 244 | |
|
| | 245 | | /// <inheritdoc/> |
| | 246 | | public async Task SaveImage(BaseItem item, string source, string mimeType, ImageType type, int? imageIndex, bool |
| | 247 | | { |
| | 248 | | if (string.IsNullOrWhiteSpace(source)) |
| | 249 | | { |
| | 250 | | throw new ArgumentNullException(nameof(source)); |
| | 251 | | } |
| | 252 | |
|
| | 253 | | try |
| | 254 | | { |
| | 255 | | var fileStream = AsyncFile.OpenRead(source); |
| | 256 | | await new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger) |
| | 257 | | .SaveImage(item, fileStream, mimeType, type, imageIndex, saveLocallyWithMedia, cancellationToken) |
| | 258 | | .ConfigureAwait(false); |
| | 259 | | } |
| | 260 | | finally |
| | 261 | | { |
| | 262 | | try |
| | 263 | | { |
| | 264 | | File.Delete(source); |
| | 265 | | } |
| | 266 | | catch (Exception ex) |
| | 267 | | { |
| | 268 | | _logger.LogError(ex, "Source file {Source} not found or in use, skip removing", source); |
| | 269 | | } |
| | 270 | | } |
| | 271 | | } |
| | 272 | |
|
| | 273 | | /// <inheritdoc/> |
| | 274 | | public Task SaveImage(Stream source, string mimeType, string path) |
| | 275 | | { |
| 0 | 276 | | return new ImageSaver(_configurationManager, _libraryMonitor, _fileSystem, _logger) |
| 0 | 277 | | .SaveImage(source, path); |
| | 278 | | } |
| | 279 | |
|
| | 280 | | /// <inheritdoc/> |
| | 281 | | public async Task<IEnumerable<RemoteImageInfo>> GetAvailableRemoteImages(BaseItem item, RemoteImageQuery query, |
| | 282 | | { |
| | 283 | | var providers = GetRemoteImageProviders(item, query.IncludeDisabledProviders); |
| | 284 | |
|
| | 285 | | if (!string.IsNullOrEmpty(query.ProviderName)) |
| | 286 | | { |
| | 287 | | var providerName = query.ProviderName; |
| | 288 | |
|
| | 289 | | providers = providers.Where(i => string.Equals(i.Name, providerName, StringComparison.OrdinalIgnoreCase) |
| | 290 | | } |
| | 291 | |
|
| | 292 | | if (query.ImageType is not null) |
| | 293 | | { |
| | 294 | | providers = providers.Where(i => i.GetSupportedImages(item).Contains(query.ImageType.Value)); |
| | 295 | | } |
| | 296 | |
|
| | 297 | | var preferredLanguage = item.GetPreferredMetadataLanguage(); |
| | 298 | |
|
| | 299 | | var tasks = providers.Select(i => GetImages(item, i, preferredLanguage, query.IncludeAllLanguages, cancellat |
| | 300 | |
|
| | 301 | | var results = await Task.WhenAll(tasks).ConfigureAwait(false); |
| | 302 | |
|
| | 303 | | return results.SelectMany(i => i); |
| | 304 | | } |
| | 305 | |
|
| | 306 | | /// <summary> |
| | 307 | | /// Gets the images. |
| | 308 | | /// </summary> |
| | 309 | | /// <param name="item">The item.</param> |
| | 310 | | /// <param name="provider">The provider.</param> |
| | 311 | | /// <param name="preferredLanguage">The preferred language.</param> |
| | 312 | | /// <param name="includeAllLanguages">Whether to include all languages in results.</param> |
| | 313 | | /// <param name="cancellationToken">The cancellation token.</param> |
| | 314 | | /// <param name="type">The type.</param> |
| | 315 | | /// <returns>Task{IEnumerable{RemoteImageInfo}}.</returns> |
| | 316 | | private async Task<IEnumerable<RemoteImageInfo>> GetImages( |
| | 317 | | BaseItem item, |
| | 318 | | IRemoteImageProvider provider, |
| | 319 | | string preferredLanguage, |
| | 320 | | bool includeAllLanguages, |
| | 321 | | CancellationToken cancellationToken, |
| | 322 | | ImageType? type = null) |
| | 323 | | { |
| | 324 | | bool hasPreferredLanguage = !string.IsNullOrWhiteSpace(preferredLanguage); |
| | 325 | |
|
| | 326 | | try |
| | 327 | | { |
| | 328 | | var result = await provider.GetImages(item, cancellationToken).ConfigureAwait(false); |
| | 329 | |
|
| | 330 | | if (type.HasValue) |
| | 331 | | { |
| | 332 | | result = result.Where(i => i.Type == type.Value); |
| | 333 | | } |
| | 334 | |
|
| | 335 | | if (!includeAllLanguages && hasPreferredLanguage) |
| | 336 | | { |
| | 337 | | // Filter out languages that do not match the preferred languages. |
| | 338 | | // |
| | 339 | | // TODO: should exception case of "en" (English) eventually be removed? |
| | 340 | | result = result.Where(i => string.IsNullOrWhiteSpace(i.Language) || |
| | 341 | | string.Equals(preferredLanguage, i.Language, StringComparison.OrdinalIgno |
| | 342 | | string.Equals(i.Language, "en", StringComparison.OrdinalIgnoreCase)); |
| | 343 | | } |
| | 344 | |
|
| | 345 | | return result.OrderByLanguageDescending(preferredLanguage); |
| | 346 | | } |
| | 347 | | catch (OperationCanceledException) |
| | 348 | | { |
| | 349 | | return Enumerable.Empty<RemoteImageInfo>(); |
| | 350 | | } |
| | 351 | | catch (Exception ex) |
| | 352 | | { |
| | 353 | | _logger.LogError(ex, "{ProviderName} failed in GetImageInfos for type {ItemType} at {ItemPath}", provide |
| | 354 | | return Enumerable.Empty<RemoteImageInfo>(); |
| | 355 | | } |
| | 356 | | } |
| | 357 | |
|
| | 358 | | /// <inheritdoc/> |
| | 359 | | public IEnumerable<ImageProviderInfo> GetRemoteImageProviderInfo(BaseItem item) |
| | 360 | | { |
| 0 | 361 | | return GetRemoteImageProviders(item, true).Select(i => new ImageProviderInfo(i.Name, i.GetSupportedImages(it |
| | 362 | | } |
| | 363 | |
|
| | 364 | | private IEnumerable<IRemoteImageProvider> GetRemoteImageProviders(BaseItem item, bool includeDisabled) |
| | 365 | | { |
| 0 | 366 | | var options = GetMetadataOptions(item); |
| 0 | 367 | | var libraryOptions = _libraryManager.GetLibraryOptions(item); |
| | 368 | |
|
| 0 | 369 | | return GetImageProvidersInternal( |
| 0 | 370 | | item, |
| 0 | 371 | | libraryOptions, |
| 0 | 372 | | options, |
| 0 | 373 | | new ImageRefreshOptions(new DirectoryService(_fileSystem)), |
| 0 | 374 | | includeDisabled).OfType<IRemoteImageProvider>(); |
| | 375 | | } |
| | 376 | |
|
| | 377 | | /// <inheritdoc/> |
| | 378 | | public IEnumerable<IImageProvider> GetImageProviders(BaseItem item, ImageRefreshOptions refreshOptions) |
| | 379 | | { |
| 77 | 380 | | return GetImageProvidersInternal(item, _libraryManager.GetLibraryOptions(item), GetMetadataOptions(item), re |
| | 381 | | } |
| | 382 | |
|
| | 383 | | private IEnumerable<IImageProvider> GetImageProvidersInternal(BaseItem item, LibraryOptions libraryOptions, Meta |
| | 384 | | { |
| 77 | 385 | | var typeOptions = libraryOptions.GetTypeOptions(item.GetType().Name); |
| 77 | 386 | | var fetcherOrder = typeOptions?.ImageFetcherOrder ?? options.ImageFetcherOrder; |
| | 387 | |
|
| 77 | 388 | | return _imageProviders.Where(i => CanRefreshImages(i, item, typeOptions, refreshOptions, includeDisabled)) |
| 77 | 389 | | .OrderBy(i => GetConfiguredOrder(fetcherOrder, i.Name)) |
| 77 | 390 | | .ThenBy(GetDefaultOrder); |
| | 391 | | } |
| | 392 | |
|
| | 393 | | private bool CanRefreshImages( |
| | 394 | | IImageProvider provider, |
| | 395 | | BaseItem item, |
| | 396 | | TypeOptions? libraryTypeOptions, |
| | 397 | | ImageRefreshOptions refreshOptions, |
| | 398 | | bool includeDisabled) |
| | 399 | | { |
| | 400 | | try |
| | 401 | | { |
| 1002 | 402 | | if (!provider.Supports(item)) |
| | 403 | | { |
| 849 | 404 | | return false; |
| | 405 | | } |
| 152 | 406 | | } |
| 1 | 407 | | catch (Exception ex) |
| | 408 | | { |
| 1 | 409 | | _logger.LogError(ex, "{ProviderName} failed in Supports for type {ItemType} at {ItemPath}", provider.Get |
| 1 | 410 | | return false; |
| | 411 | | } |
| | 412 | |
|
| 152 | 413 | | if (includeDisabled || provider is ILocalImageProvider) |
| | 414 | | { |
| 145 | 415 | | return true; |
| | 416 | | } |
| | 417 | |
|
| 7 | 418 | | if (item.IsLocked && refreshOptions.ImageRefreshMode != MetadataRefreshMode.FullRefresh) |
| | 419 | | { |
| 1 | 420 | | return false; |
| | 421 | | } |
| | 422 | |
|
| 6 | 423 | | return _baseItemManager.IsImageFetcherEnabled(item, libraryTypeOptions, provider.Name); |
| 850 | 424 | | } |
| | 425 | |
|
| | 426 | | /// <inheritdoc /> |
| | 427 | | public IEnumerable<IMetadataProvider<T>> GetMetadataProviders<T>(BaseItem item, LibraryOptions libraryOptions) |
| | 428 | | where T : BaseItem |
| | 429 | | { |
| 93 | 430 | | var globalMetadataOptions = GetMetadataOptions(item); |
| | 431 | |
|
| 93 | 432 | | return GetMetadataProvidersInternal<T>(item, libraryOptions, globalMetadataOptions, false, false); |
| | 433 | | } |
| | 434 | |
|
| | 435 | | /// <inheritdoc /> |
| | 436 | | public IEnumerable<IMetadataSaver> GetMetadataSavers(BaseItem item, LibraryOptions libraryOptions) |
| | 437 | | { |
| 53 | 438 | | return _savers.Where(i => IsSaverEnabledForItem(i, item, libraryOptions, ItemUpdateType.MetadataEdit, false) |
| | 439 | | } |
| | 440 | |
|
| | 441 | | private IEnumerable<IMetadataProvider<T>> GetMetadataProvidersInternal<T>(BaseItem item, LibraryOptions libraryO |
| | 442 | | where T : BaseItem |
| | 443 | | { |
| 93 | 444 | | var localMetadataReaderOrder = libraryOptions.LocalMetadataReaderOrder ?? globalMetadataOptions.LocalMetadat |
| 93 | 445 | | var typeOptions = libraryOptions.GetTypeOptions(item.GetType().Name); |
| 93 | 446 | | var metadataFetcherOrder = typeOptions?.MetadataFetcherOrder ?? globalMetadataOptions.MetadataFetcherOrder; |
| | 447 | |
|
| 93 | 448 | | return _metadataProviders.OfType<IMetadataProvider<T>>() |
| 93 | 449 | | .Where(i => CanRefreshMetadata(i, item, typeOptions, includeDisabled, forceEnableInternetMetadata)) |
| 93 | 450 | | .OrderBy(i => |
| 93 | 451 | | // local and remote providers will be interleaved in the final order |
| 93 | 452 | | // only relative order within a type matters: consumers of the list filter to one or the other |
| 93 | 453 | | i switch |
| 93 | 454 | | { |
| 93 | 455 | | ILocalMetadataProvider => GetConfiguredOrder(localMetadataReaderOrder, i.Name), |
| 93 | 456 | | IRemoteMetadataProvider => GetConfiguredOrder(metadataFetcherOrder, i.Name), |
| 93 | 457 | | // Default to end |
| 93 | 458 | | _ => int.MaxValue |
| 93 | 459 | | }) |
| 93 | 460 | | .ThenBy(GetDefaultOrder); |
| | 461 | | } |
| | 462 | |
|
| | 463 | | private bool CanRefreshMetadata( |
| | 464 | | IMetadataProvider provider, |
| | 465 | | BaseItem item, |
| | 466 | | TypeOptions? libraryTypeOptions, |
| | 467 | | bool includeDisabled, |
| | 468 | | bool forceEnableInternetMetadata) |
| | 469 | | { |
| 160 | 470 | | if (!item.SupportsLocalMetadata && provider is ILocalMetadataProvider) |
| | 471 | | { |
| 1 | 472 | | return false; |
| | 473 | | } |
| | 474 | |
|
| 159 | 475 | | if (includeDisabled) |
| | 476 | | { |
| 0 | 477 | | return true; |
| | 478 | | } |
| | 479 | |
|
| | 480 | | // If locked only allow local providers |
| 159 | 481 | | if (item.IsLocked && provider is not ILocalMetadataProvider && provider is not IForcedProvider) |
| | 482 | | { |
| 3 | 483 | | return false; |
| | 484 | | } |
| | 485 | |
|
| 156 | 486 | | if (forceEnableInternetMetadata || provider is not IRemoteMetadataProvider) |
| | 487 | | { |
| 109 | 488 | | return true; |
| | 489 | | } |
| | 490 | |
|
| 47 | 491 | | return _baseItemManager.IsMetadataFetcherEnabled(item, libraryTypeOptions, provider.Name); |
| | 492 | | } |
| | 493 | |
|
| | 494 | | private static int GetConfiguredOrder(string[] order, string providerName) |
| | 495 | | { |
| 229 | 496 | | var index = Array.IndexOf(order, providerName); |
| | 497 | |
|
| 229 | 498 | | if (index != -1) |
| | 499 | | { |
| 54 | 500 | | return index; |
| | 501 | | } |
| | 502 | |
|
| | 503 | | // default to end |
| 175 | 504 | | return int.MaxValue; |
| | 505 | | } |
| | 506 | |
|
| | 507 | | private static int GetDefaultOrder(object provider) |
| | 508 | | { |
| 229 | 509 | | if (provider is IHasOrder hasOrder) |
| | 510 | | { |
| 131 | 511 | | return hasOrder.Order; |
| | 512 | | } |
| | 513 | |
|
| | 514 | | // after items that want to be first (~0) but before items that want to be last (~100) |
| 98 | 515 | | return 50; |
| | 516 | | } |
| | 517 | |
|
| | 518 | | /// <inheritdoc/> |
| | 519 | | public MetadataPluginSummary[] GetAllMetadataPlugins() |
| | 520 | | { |
| 0 | 521 | | return new[] |
| 0 | 522 | | { |
| 0 | 523 | | GetPluginSummary<Movie>(), |
| 0 | 524 | | GetPluginSummary<BoxSet>(), |
| 0 | 525 | | GetPluginSummary<Book>(), |
| 0 | 526 | | GetPluginSummary<Series>(), |
| 0 | 527 | | GetPluginSummary<Season>(), |
| 0 | 528 | | GetPluginSummary<Episode>(), |
| 0 | 529 | | GetPluginSummary<MusicAlbum>(), |
| 0 | 530 | | GetPluginSummary<MusicArtist>(), |
| 0 | 531 | | GetPluginSummary<Audio>(), |
| 0 | 532 | | GetPluginSummary<AudioBook>(), |
| 0 | 533 | | GetPluginSummary<Studio>(), |
| 0 | 534 | | GetPluginSummary<MusicVideo>(), |
| 0 | 535 | | GetPluginSummary<Video>() |
| 0 | 536 | | }; |
| | 537 | | } |
| | 538 | |
|
| | 539 | | private MetadataPluginSummary GetPluginSummary<T>() |
| | 540 | | where T : BaseItem, new() |
| | 541 | | { |
| | 542 | | // Give it a dummy path just so that it looks like a file system item |
| 0 | 543 | | var dummy = new T |
| 0 | 544 | | { |
| 0 | 545 | | Path = Path.Combine(_appPaths.InternalMetadataPath, "dummy"), |
| 0 | 546 | | ParentId = Guid.NewGuid() |
| 0 | 547 | | }; |
| | 548 | |
|
| 0 | 549 | | var options = GetMetadataOptions(dummy); |
| | 550 | |
|
| 0 | 551 | | var summary = new MetadataPluginSummary |
| 0 | 552 | | { |
| 0 | 553 | | ItemType = typeof(T).Name |
| 0 | 554 | | }; |
| | 555 | |
|
| 0 | 556 | | var libraryOptions = new LibraryOptions(); |
| | 557 | |
|
| 0 | 558 | | var imageProviders = GetImageProvidersInternal( |
| 0 | 559 | | dummy, |
| 0 | 560 | | libraryOptions, |
| 0 | 561 | | options, |
| 0 | 562 | | new ImageRefreshOptions(new DirectoryService(_fileSystem)), |
| 0 | 563 | | true).ToList(); |
| | 564 | |
|
| 0 | 565 | | var pluginList = summary.Plugins.ToList(); |
| | 566 | |
|
| 0 | 567 | | AddMetadataPlugins(pluginList, dummy, libraryOptions, options); |
| 0 | 568 | | AddImagePlugins(pluginList, imageProviders); |
| | 569 | |
|
| | 570 | | // Subtitle fetchers |
| 0 | 571 | | var subtitleProviders = _subtitleManager.GetSupportedProviders(dummy); |
| 0 | 572 | | pluginList.AddRange(subtitleProviders.Select(i => new MetadataPlugin |
| 0 | 573 | | { |
| 0 | 574 | | Name = i.Name, |
| 0 | 575 | | Type = MetadataPluginType.SubtitleFetcher |
| 0 | 576 | | })); |
| | 577 | |
|
| | 578 | | // Lyric fetchers |
| 0 | 579 | | var lyricProviders = _lyricManager.GetSupportedProviders(dummy); |
| 0 | 580 | | pluginList.AddRange(lyricProviders.Select(i => new MetadataPlugin |
| 0 | 581 | | { |
| 0 | 582 | | Name = i.Name, |
| 0 | 583 | | Type = MetadataPluginType.LyricFetcher |
| 0 | 584 | | })); |
| | 585 | |
|
| | 586 | | // Media segment providers |
| 0 | 587 | | var mediaSegmentProviders = _mediaSegmentManager.GetSupportedProviders(dummy); |
| 0 | 588 | | pluginList.AddRange(mediaSegmentProviders.Select(i => new MetadataPlugin |
| 0 | 589 | | { |
| 0 | 590 | | Name = i.Name, |
| 0 | 591 | | Type = MetadataPluginType.MediaSegmentProvider |
| 0 | 592 | | })); |
| | 593 | |
|
| 0 | 594 | | summary.Plugins = pluginList.ToArray(); |
| | 595 | |
|
| 0 | 596 | | var supportedImageTypes = imageProviders.OfType<IRemoteImageProvider>() |
| 0 | 597 | | .SelectMany(i => i.GetSupportedImages(dummy)) |
| 0 | 598 | | .ToList(); |
| | 599 | |
|
| 0 | 600 | | supportedImageTypes.AddRange(imageProviders.OfType<IDynamicImageProvider>() |
| 0 | 601 | | .SelectMany(i => i.GetSupportedImages(dummy))); |
| | 602 | |
|
| 0 | 603 | | summary.SupportedImageTypes = supportedImageTypes.Distinct().ToArray(); |
| | 604 | |
|
| 0 | 605 | | return summary; |
| | 606 | | } |
| | 607 | |
|
| | 608 | | private void AddMetadataPlugins<T>(List<MetadataPlugin> list, T item, LibraryOptions libraryOptions, MetadataOpt |
| | 609 | | where T : BaseItem |
| | 610 | | { |
| 0 | 611 | | var providers = GetMetadataProvidersInternal<T>(item, libraryOptions, options, true, true).ToList(); |
| | 612 | |
|
| | 613 | | // Locals |
| 0 | 614 | | list.AddRange(providers.Where(i => i is ILocalMetadataProvider).Select(i => new MetadataPlugin |
| 0 | 615 | | { |
| 0 | 616 | | Name = i.Name, |
| 0 | 617 | | Type = MetadataPluginType.LocalMetadataProvider |
| 0 | 618 | | })); |
| | 619 | |
|
| | 620 | | // Fetchers |
| 0 | 621 | | list.AddRange(providers.Where(i => i is IRemoteMetadataProvider).Select(i => new MetadataPlugin |
| 0 | 622 | | { |
| 0 | 623 | | Name = i.Name, |
| 0 | 624 | | Type = MetadataPluginType.MetadataFetcher |
| 0 | 625 | | })); |
| | 626 | |
|
| | 627 | | // Savers |
| 0 | 628 | | list.AddRange(_savers.Where(i => IsSaverEnabledForItem(i, item, libraryOptions, ItemUpdateType.MetadataEdit, |
| 0 | 629 | | { |
| 0 | 630 | | Name = i.Name, |
| 0 | 631 | | Type = MetadataPluginType.MetadataSaver |
| 0 | 632 | | })); |
| 0 | 633 | | } |
| | 634 | |
|
| | 635 | | private void AddImagePlugins(List<MetadataPlugin> list, List<IImageProvider> imageProviders) |
| | 636 | | { |
| | 637 | | // Locals |
| 0 | 638 | | list.AddRange(imageProviders.Where(i => i is ILocalImageProvider).Select(i => new MetadataPlugin |
| 0 | 639 | | { |
| 0 | 640 | | Name = i.Name, |
| 0 | 641 | | Type = MetadataPluginType.LocalImageProvider |
| 0 | 642 | | })); |
| | 643 | |
|
| | 644 | | // Fetchers |
| 0 | 645 | | list.AddRange(imageProviders.Where(i => i is IDynamicImageProvider || (i is IRemoteImageProvider)).Select(i |
| 0 | 646 | | { |
| 0 | 647 | | Name = i.Name, |
| 0 | 648 | | Type = MetadataPluginType.ImageFetcher |
| 0 | 649 | | })); |
| 0 | 650 | | } |
| | 651 | |
|
| | 652 | | /// <inheritdoc/> |
| | 653 | | public MetadataOptions GetMetadataOptions(BaseItem item) |
| 1218 | 654 | | => _configurationManager.GetMetadataOptionsForType(item.GetType().Name) ?? new MetadataOptions(); |
| | 655 | |
|
| | 656 | | /// <inheritdoc/> |
| | 657 | | public Task SaveMetadataAsync(BaseItem item, ItemUpdateType updateType) |
| 78 | 658 | | => SaveMetadataAsync(item, updateType, _savers); |
| | 659 | |
|
| | 660 | | /// <inheritdoc/> |
| | 661 | | public Task SaveMetadataAsync(BaseItem item, ItemUpdateType updateType, IEnumerable<string> savers) |
| 0 | 662 | | => SaveMetadataAsync(item, updateType, _savers.Where(i => savers.Contains(i.Name, StringComparison.OrdinalIg |
| | 663 | |
|
| | 664 | | /// <summary> |
| | 665 | | /// Saves the metadata. |
| | 666 | | /// </summary> |
| | 667 | | /// <param name="item">The item.</param> |
| | 668 | | /// <param name="updateType">Type of the update.</param> |
| | 669 | | /// <param name="savers">The savers.</param> |
| | 670 | | private async Task SaveMetadataAsync(BaseItem item, ItemUpdateType updateType, IEnumerable<IMetadataSaver> saver |
| | 671 | | { |
| | 672 | | var libraryOptions = _libraryManager.GetLibraryOptions(item); |
| | 673 | |
|
| | 674 | | foreach (var saver in savers.Where(i => IsSaverEnabledForItem(i, item, libraryOptions, updateType, false))) |
| | 675 | | { |
| | 676 | | _logger.LogDebug("Saving {Item} to {Saver}", item.Path ?? item.Name, saver.Name); |
| | 677 | |
|
| | 678 | | if (saver is IMetadataFileSaver fileSaver) |
| | 679 | | { |
| | 680 | | string path; |
| | 681 | |
|
| | 682 | | try |
| | 683 | | { |
| | 684 | | path = fileSaver.GetSavePath(item); |
| | 685 | | } |
| | 686 | | catch (Exception ex) |
| | 687 | | { |
| | 688 | | _logger.LogError(ex, "Error in {Saver} GetSavePath", saver.Name); |
| | 689 | | continue; |
| | 690 | | } |
| | 691 | |
|
| | 692 | | try |
| | 693 | | { |
| | 694 | | _libraryMonitor.ReportFileSystemChangeBeginning(path); |
| | 695 | | await saver.SaveAsync(item, CancellationToken.None).ConfigureAwait(false); |
| | 696 | | } |
| | 697 | | catch (Exception ex) |
| | 698 | | { |
| | 699 | | _logger.LogError(ex, "Error in metadata saver"); |
| | 700 | | } |
| | 701 | | finally |
| | 702 | | { |
| | 703 | | _libraryMonitor.ReportFileSystemChangeComplete(path, false); |
| | 704 | | } |
| | 705 | | } |
| | 706 | | else |
| | 707 | | { |
| | 708 | | try |
| | 709 | | { |
| | 710 | | await saver.SaveAsync(item, CancellationToken.None).ConfigureAwait(false); |
| | 711 | | } |
| | 712 | | catch (Exception ex) |
| | 713 | | { |
| | 714 | | _logger.LogError(ex, "Error in metadata saver"); |
| | 715 | | } |
| | 716 | | } |
| | 717 | | } |
| | 718 | | } |
| | 719 | |
|
| | 720 | | /// <summary> |
| | 721 | | /// Determines whether [is saver enabled for item] [the specified saver]. |
| | 722 | | /// </summary> |
| | 723 | | private bool IsSaverEnabledForItem(IMetadataSaver saver, BaseItem item, LibraryOptions libraryOptions, ItemUpdat |
| | 724 | | { |
| 1048 | 725 | | var options = GetMetadataOptions(item); |
| | 726 | |
|
| | 727 | | try |
| | 728 | | { |
| 1048 | 729 | | if (!saver.IsEnabledFor(item, updateType)) |
| | 730 | | { |
| 1048 | 731 | | return false; |
| | 732 | | } |
| | 733 | |
|
| 0 | 734 | | if (!includeDisabled) |
| | 735 | | { |
| 0 | 736 | | if (libraryOptions.MetadataSavers is null) |
| | 737 | | { |
| 0 | 738 | | if (options.DisabledMetadataSavers.Contains(saver.Name, StringComparison.OrdinalIgnoreCase)) |
| | 739 | | { |
| 0 | 740 | | return false; |
| | 741 | | } |
| | 742 | |
|
| 0 | 743 | | if (!item.IsSaveLocalMetadataEnabled()) |
| | 744 | | { |
| 0 | 745 | | if (updateType >= ItemUpdateType.MetadataEdit) |
| | 746 | | { |
| | 747 | | // Manual edit occurred |
| | 748 | | // Even if save local is off, save locally anyway if the metadata file already exists |
| 0 | 749 | | if (saver is not IMetadataFileSaver fileSaver || !File.Exists(fileSaver.GetSavePath(item |
| | 750 | | { |
| 0 | 751 | | return false; |
| | 752 | | } |
| | 753 | | } |
| | 754 | | else |
| | 755 | | { |
| | 756 | | // Manual edit did not occur |
| | 757 | | // Since local metadata saving is disabled, consider it disabled |
| 0 | 758 | | return false; |
| | 759 | | } |
| | 760 | | } |
| | 761 | | } |
| | 762 | | else |
| | 763 | | { |
| 0 | 764 | | if (!libraryOptions.MetadataSavers.Contains(saver.Name, StringComparison.OrdinalIgnoreCase)) |
| | 765 | | { |
| 0 | 766 | | return false; |
| | 767 | | } |
| | 768 | | } |
| | 769 | | } |
| | 770 | |
|
| 0 | 771 | | return true; |
| | 772 | | } |
| 0 | 773 | | catch (Exception ex) |
| | 774 | | { |
| 0 | 775 | | _logger.LogError(ex, "Error in {Saver}.IsEnabledFor", saver.Name); |
| 0 | 776 | | return false; |
| | 777 | | } |
| 1048 | 778 | | } |
| | 779 | |
|
| | 780 | | /// <inheritdoc/> |
| | 781 | | public Task<IEnumerable<RemoteSearchResult>> GetRemoteSearchResults<TItemType, TLookupType>(RemoteSearchQuery<TL |
| | 782 | | where TItemType : BaseItem, new() |
| | 783 | | where TLookupType : ItemLookupInfo |
| | 784 | | { |
| 0 | 785 | | BaseItem? referenceItem = null; |
| | 786 | |
|
| 0 | 787 | | if (!searchInfo.ItemId.IsEmpty()) |
| | 788 | | { |
| 0 | 789 | | referenceItem = _libraryManager.GetItemById(searchInfo.ItemId); |
| | 790 | | } |
| | 791 | |
|
| 0 | 792 | | return GetRemoteSearchResults<TItemType, TLookupType>(searchInfo, referenceItem, cancellationToken); |
| | 793 | | } |
| | 794 | |
|
| | 795 | | private async Task<IEnumerable<RemoteSearchResult>> GetRemoteSearchResults<TItemType, TLookupType>(RemoteSearchQ |
| | 796 | | where TItemType : BaseItem, new() |
| | 797 | | where TLookupType : ItemLookupInfo |
| | 798 | | { |
| | 799 | | LibraryOptions libraryOptions; |
| | 800 | |
|
| | 801 | | if (referenceItem is null) |
| | 802 | | { |
| | 803 | | // Give it a dummy path just so that it looks like a file system item |
| | 804 | | var dummy = new TItemType |
| | 805 | | { |
| | 806 | | Path = Path.Combine(_appPaths.InternalMetadataPath, "dummy"), |
| | 807 | | ParentId = Guid.NewGuid() |
| | 808 | | }; |
| | 809 | |
|
| | 810 | | dummy.SetParent(new Folder()); |
| | 811 | |
|
| | 812 | | referenceItem = dummy; |
| | 813 | | libraryOptions = new LibraryOptions(); |
| | 814 | | } |
| | 815 | | else |
| | 816 | | { |
| | 817 | | libraryOptions = _libraryManager.GetLibraryOptions(referenceItem); |
| | 818 | | } |
| | 819 | |
|
| | 820 | | var options = GetMetadataOptions(referenceItem); |
| | 821 | |
|
| | 822 | | var providers = GetMetadataProvidersInternal<TItemType>(referenceItem, libraryOptions, options, searchInfo.I |
| | 823 | | .OfType<IRemoteSearchProvider<TLookupType>>(); |
| | 824 | |
|
| | 825 | | if (!string.IsNullOrEmpty(searchInfo.SearchProviderName)) |
| | 826 | | { |
| | 827 | | providers = providers.Where(i => string.Equals(i.Name, searchInfo.SearchProviderName, StringComparison.O |
| | 828 | | } |
| | 829 | |
|
| | 830 | | if (string.IsNullOrWhiteSpace(searchInfo.SearchInfo.MetadataLanguage)) |
| | 831 | | { |
| | 832 | | searchInfo.SearchInfo.MetadataLanguage = _configurationManager.Configuration.PreferredMetadataLanguage; |
| | 833 | | } |
| | 834 | |
|
| | 835 | | if (string.IsNullOrWhiteSpace(searchInfo.SearchInfo.MetadataCountryCode)) |
| | 836 | | { |
| | 837 | | searchInfo.SearchInfo.MetadataCountryCode = _configurationManager.Configuration.MetadataCountryCode; |
| | 838 | | } |
| | 839 | |
|
| | 840 | | var resultList = new List<RemoteSearchResult>(); |
| | 841 | |
|
| | 842 | | foreach (var provider in providers) |
| | 843 | | { |
| | 844 | | try |
| | 845 | | { |
| | 846 | | var results = await provider.GetSearchResults(searchInfo.SearchInfo, cancellationToken).ConfigureAwa |
| | 847 | |
|
| | 848 | | foreach (var result in results) |
| | 849 | | { |
| | 850 | | result.SearchProviderName = provider.Name; |
| | 851 | |
|
| | 852 | | var existingMatch = resultList.FirstOrDefault(i => i.ProviderIds.Any(p => string.Equals(result.G |
| | 853 | |
|
| | 854 | | if (existingMatch is null) |
| | 855 | | { |
| | 856 | | resultList.Add(result); |
| | 857 | | } |
| | 858 | | else |
| | 859 | | { |
| | 860 | | foreach (var providerId in result.ProviderIds) |
| | 861 | | { |
| | 862 | | existingMatch.ProviderIds.TryAdd(providerId.Key, providerId.Value); |
| | 863 | | } |
| | 864 | |
|
| | 865 | | if (string.IsNullOrWhiteSpace(existingMatch.ImageUrl)) |
| | 866 | | { |
| | 867 | | existingMatch.ImageUrl = result.ImageUrl; |
| | 868 | | } |
| | 869 | | } |
| | 870 | | } |
| | 871 | | } |
| | 872 | | #pragma warning disable CA1031 // do not catch general exception types |
| | 873 | | catch (Exception ex) |
| | 874 | | #pragma warning restore CA1031 // do not catch general exception types |
| | 875 | | { |
| | 876 | | _logger.LogError(ex, "Provider {ProviderName} failed to retrieve search results", provider.Name); |
| | 877 | | } |
| | 878 | | } |
| | 879 | |
|
| | 880 | | return resultList; |
| | 881 | | } |
| | 882 | |
|
| | 883 | | private IEnumerable<IExternalId> GetExternalIds(IHasProviderIds item) |
| | 884 | | { |
| 0 | 885 | | return _externalIds.Where(i => |
| 0 | 886 | | { |
| 0 | 887 | | try |
| 0 | 888 | | { |
| 0 | 889 | | return i.Supports(item); |
| 0 | 890 | | } |
| 0 | 891 | | catch (Exception ex) |
| 0 | 892 | | { |
| 0 | 893 | | _logger.LogError(ex, "Error in {Type}.Supports", i.GetType().Name); |
| 0 | 894 | | return false; |
| 0 | 895 | | } |
| 0 | 896 | | }); |
| | 897 | | } |
| | 898 | |
|
| | 899 | | /// <inheritdoc/> |
| | 900 | | public IEnumerable<ExternalUrl> GetExternalUrls(BaseItem item) |
| | 901 | | { |
| 6 | 902 | | return _externalUrlProviders |
| 6 | 903 | | .SelectMany(p => p |
| 6 | 904 | | .GetExternalUrls(item) |
| 6 | 905 | | .Select(externalUrl => new ExternalUrl { Name = p.Name, Url = externalUrl })); |
| | 906 | | } |
| | 907 | |
|
| | 908 | | /// <inheritdoc/> |
| | 909 | | public IEnumerable<ExternalIdInfo> GetExternalIdInfos(IHasProviderIds item) |
| | 910 | | { |
| 0 | 911 | | return GetExternalIds(item) |
| 0 | 912 | | .Select(i => new ExternalIdInfo( |
| 0 | 913 | | name: i.ProviderName, |
| 0 | 914 | | key: i.Key, |
| 0 | 915 | | type: i.Type)); |
| | 916 | | } |
| | 917 | |
|
| | 918 | | /// <inheritdoc/> |
| | 919 | | public HashSet<Guid> GetRefreshQueue() |
| 1 | 920 | | { |
| | 921 | | lock (_refreshQueueLock) |
| | 922 | | { |
| 1 | 923 | | return _refreshQueue.UnorderedItems.Select(x => x.Element.ItemId).ToHashSet(); |
| | 924 | | } |
| 1 | 925 | | } |
| | 926 | |
|
| | 927 | | /// <inheritdoc/> |
| | 928 | | public void OnRefreshStart(BaseItem item) |
| | 929 | | { |
| 11 | 930 | | _logger.LogDebug("OnRefreshStart {Item:N}", item.Id); |
| 11 | 931 | | _activeRefreshes[item.Id] = 0; |
| | 932 | | try |
| | 933 | | { |
| 11 | 934 | | RefreshStarted?.Invoke(this, new GenericEventArgs<BaseItem>(item)); |
| 11 | 935 | | } |
| 0 | 936 | | catch (Exception ex) |
| | 937 | | { |
| | 938 | | // EventHandlers should never propagate exceptions, but we have little control over plugins... |
| 0 | 939 | | _logger.LogError(ex, "Invoking {RefreshEvent} event handlers failed", nameof(RefreshStarted)); |
| 0 | 940 | | } |
| 11 | 941 | | } |
| | 942 | |
|
| | 943 | | /// <inheritdoc/> |
| | 944 | | public void OnRefreshComplete(BaseItem item) |
| | 945 | | { |
| 11 | 946 | | _logger.LogDebug("OnRefreshComplete {Item:N}", item.Id); |
| 11 | 947 | | _activeRefreshes.TryRemove(item.Id, out _); |
| | 948 | |
|
| | 949 | | try |
| | 950 | | { |
| 11 | 951 | | RefreshCompleted?.Invoke(this, new GenericEventArgs<BaseItem>(item)); |
| 11 | 952 | | } |
| 0 | 953 | | catch (Exception ex) |
| | 954 | | { |
| | 955 | | // EventHandlers should never propagate exceptions, but we have little control over plugins... |
| 0 | 956 | | _logger.LogError(ex, "Invoking {RefreshEvent} event handlers failed", nameof(RefreshCompleted)); |
| 0 | 957 | | } |
| 11 | 958 | | } |
| | 959 | |
|
| | 960 | | /// <inheritdoc/> |
| | 961 | | public double? GetRefreshProgress(Guid id) |
| | 962 | | { |
| 0 | 963 | | if (_activeRefreshes.TryGetValue(id, out double value)) |
| | 964 | | { |
| 0 | 965 | | return value; |
| | 966 | | } |
| | 967 | |
|
| 0 | 968 | | return null; |
| | 969 | | } |
| | 970 | |
|
| | 971 | | /// <inheritdoc/> |
| | 972 | | public void OnRefreshProgress(BaseItem item, double progress) |
| | 973 | | { |
| 30 | 974 | | var id = item.Id; |
| 30 | 975 | | _logger.LogDebug("OnRefreshProgress {Id:N} {Progress}", id, progress); |
| | 976 | |
|
| 30 | 977 | | if (!_activeRefreshes.TryGetValue(id, out var current) |
| 30 | 978 | | || progress <= current |
| 30 | 979 | | || !_activeRefreshes.TryUpdate(id, progress, current)) |
| | 980 | | { |
| | 981 | | // Item isn't currently refreshing, or update was received out-of-order, so don't trigger event. |
| 0 | 982 | | return; |
| | 983 | | } |
| | 984 | |
|
| | 985 | | try |
| | 986 | | { |
| 30 | 987 | | RefreshProgress?.Invoke(this, new GenericEventArgs<Tuple<BaseItem, double>>(new Tuple<BaseItem, double>( |
| 30 | 988 | | } |
| 0 | 989 | | catch (Exception ex) |
| | 990 | | { |
| | 991 | | // EventHandlers should never propagate exceptions, but we have little control over plugins... |
| 0 | 992 | | _logger.LogError(ex, "Invoking {RefreshEvent} event handlers failed", nameof(RefreshProgress)); |
| 0 | 993 | | } |
| 30 | 994 | | } |
| | 995 | |
|
| | 996 | | /// <inheritdoc/> |
| | 997 | | public void QueueRefresh(Guid itemId, MetadataRefreshOptions options, RefreshPriority priority) |
| | 998 | | { |
| 0 | 999 | | if (itemId.IsEmpty()) |
| | 1000 | | { |
| 0 | 1001 | | throw new ArgumentException("Guid can't be empty", nameof(itemId)); |
| | 1002 | | } |
| | 1003 | |
|
| 0 | 1004 | | if (_disposed) |
| | 1005 | | { |
| 0 | 1006 | | return; |
| | 1007 | | } |
| | 1008 | |
|
| 0 | 1009 | | _refreshQueue.Enqueue((itemId, options), priority); |
| | 1010 | |
|
| | 1011 | | lock (_refreshQueueLock) |
| | 1012 | | { |
| 0 | 1013 | | if (!_isProcessingRefreshQueue) |
| | 1014 | | { |
| 0 | 1015 | | _isProcessingRefreshQueue = true; |
| 0 | 1016 | | Task.Run(StartProcessingRefreshQueue); |
| | 1017 | | } |
| 0 | 1018 | | } |
| 0 | 1019 | | } |
| | 1020 | |
|
| | 1021 | | private async Task StartProcessingRefreshQueue() |
| | 1022 | | { |
| | 1023 | | var libraryManager = _libraryManager; |
| | 1024 | |
|
| | 1025 | | if (_disposed) |
| | 1026 | | { |
| | 1027 | | return; |
| | 1028 | | } |
| | 1029 | |
|
| | 1030 | | var cancellationToken = _disposeCancellationTokenSource.Token; |
| | 1031 | |
|
| | 1032 | | while (_refreshQueue.TryDequeue(out var refreshItem, out _)) |
| | 1033 | | { |
| | 1034 | | if (_disposed) |
| | 1035 | | { |
| | 1036 | | return; |
| | 1037 | | } |
| | 1038 | |
|
| | 1039 | | try |
| | 1040 | | { |
| | 1041 | | var item = libraryManager.GetItemById(refreshItem.ItemId); |
| | 1042 | | if (item is null) |
| | 1043 | | { |
| | 1044 | | continue; |
| | 1045 | | } |
| | 1046 | |
|
| | 1047 | | var task = item is MusicArtist artist |
| | 1048 | | ? RefreshArtist(artist, refreshItem.RefreshOptions, cancellationToken) |
| | 1049 | | : RefreshItem(item, refreshItem.RefreshOptions, cancellationToken); |
| | 1050 | |
|
| | 1051 | | await task.ConfigureAwait(false); |
| | 1052 | | } |
| | 1053 | | catch (OperationCanceledException) |
| | 1054 | | { |
| | 1055 | | break; |
| | 1056 | | } |
| | 1057 | | catch (Exception ex) |
| | 1058 | | { |
| | 1059 | | _logger.LogError(ex, "Error refreshing item"); |
| | 1060 | | } |
| | 1061 | | } |
| | 1062 | |
|
| | 1063 | | lock (_refreshQueueLock) |
| | 1064 | | { |
| | 1065 | | _isProcessingRefreshQueue = false; |
| | 1066 | | } |
| | 1067 | | } |
| | 1068 | |
|
| | 1069 | | private async Task RefreshItem(BaseItem item, MetadataRefreshOptions options, CancellationToken cancellationToke |
| | 1070 | | { |
| | 1071 | | await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false); |
| | 1072 | |
|
| | 1073 | | // Collection folders don't validate their children so we'll have to simulate that here |
| | 1074 | | switch (item) |
| | 1075 | | { |
| | 1076 | | case CollectionFolder collectionFolder: |
| | 1077 | | await RefreshCollectionFolderChildren(options, collectionFolder, cancellationToken).ConfigureAwait(f |
| | 1078 | | break; |
| | 1079 | | case Folder folder: |
| | 1080 | | await folder.ValidateChildren(new Progress<double>(), options, cancellationToken: cancellationToken) |
| | 1081 | | break; |
| | 1082 | | } |
| | 1083 | | } |
| | 1084 | |
|
| | 1085 | | private async Task RefreshCollectionFolderChildren(MetadataRefreshOptions options, CollectionFolder collectionFo |
| | 1086 | | { |
| | 1087 | | foreach (var child in collectionFolder.GetPhysicalFolders()) |
| | 1088 | | { |
| | 1089 | | await child.RefreshMetadata(options, cancellationToken).ConfigureAwait(false); |
| | 1090 | |
|
| | 1091 | | await child.ValidateChildren(new Progress<double>(), options, cancellationToken: cancellationToken).Conf |
| | 1092 | | } |
| | 1093 | | } |
| | 1094 | |
|
| | 1095 | | private async Task RefreshArtist(MusicArtist item, MetadataRefreshOptions options, CancellationToken cancellatio |
| | 1096 | | { |
| | 1097 | | var albums = _libraryManager |
| | 1098 | | .GetItemList(new InternalItemsQuery |
| | 1099 | | { |
| | 1100 | | IncludeItemTypes = new[] { BaseItemKind.MusicAlbum }, |
| | 1101 | | ArtistIds = new[] { item.Id }, |
| | 1102 | | DtoOptions = new DtoOptions(false) |
| | 1103 | | { |
| | 1104 | | EnableImages = false |
| | 1105 | | } |
| | 1106 | | }) |
| | 1107 | | .OfType<MusicAlbum>(); |
| | 1108 | |
|
| | 1109 | | var musicArtists = albums |
| | 1110 | | .Select(i => i.MusicArtist) |
| | 1111 | | .Where(i => i is not null) |
| | 1112 | | .Distinct(); |
| | 1113 | |
|
| | 1114 | | var musicArtistRefreshTasks = musicArtists.Select(i => i.ValidateChildren(new Progress<double>(), options, t |
| | 1115 | |
|
| | 1116 | | await Task.WhenAll(musicArtistRefreshTasks).ConfigureAwait(false); |
| | 1117 | |
|
| | 1118 | | try |
| | 1119 | | { |
| | 1120 | | await item.RefreshMetadata(options, cancellationToken).ConfigureAwait(false); |
| | 1121 | | } |
| | 1122 | | catch (Exception ex) |
| | 1123 | | { |
| | 1124 | | _logger.LogError(ex, "Error refreshing library"); |
| | 1125 | | } |
| | 1126 | | } |
| | 1127 | |
|
| | 1128 | | /// <inheritdoc/> |
| | 1129 | | public Task RefreshFullItem(BaseItem item, MetadataRefreshOptions options, CancellationToken cancellationToken) |
| | 1130 | | { |
| 0 | 1131 | | return RefreshItem(item, options, cancellationToken); |
| | 1132 | | } |
| | 1133 | |
|
| | 1134 | | /// <inheritdoc/> |
| | 1135 | | public void Dispose() |
| | 1136 | | { |
| 91 | 1137 | | Dispose(true); |
| 91 | 1138 | | GC.SuppressFinalize(this); |
| 91 | 1139 | | } |
| | 1140 | |
|
| | 1141 | | /// <summary> |
| | 1142 | | /// Releases unmanaged and optionally managed resources. |
| | 1143 | | /// </summary> |
| | 1144 | | /// <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release |
| | 1145 | | protected virtual void Dispose(bool disposing) |
| | 1146 | | { |
| 91 | 1147 | | if (_disposed) |
| | 1148 | | { |
| 0 | 1149 | | return; |
| | 1150 | | } |
| | 1151 | |
|
| 91 | 1152 | | if (disposing) |
| | 1153 | | { |
| 91 | 1154 | | if (!_disposeCancellationTokenSource.IsCancellationRequested) |
| | 1155 | | { |
| 91 | 1156 | | _disposeCancellationTokenSource.Cancel(); |
| | 1157 | | } |
| | 1158 | |
|
| 91 | 1159 | | _disposeCancellationTokenSource.Dispose(); |
| 91 | 1160 | | _imageSaveLock.Dispose(); |
| | 1161 | | } |
| | 1162 | |
|
| 91 | 1163 | | _disposed = true; |
| 91 | 1164 | | } |
| | 1165 | | } |
| | 1166 | | } |