123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229 |
- using MediaBrowser.Controller.Entities;
- using MediaBrowser.Controller.IO;
- using MediaBrowser.Model.Entities;
- using System;
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Threading;
- using System.Threading.Tasks;
- namespace MediaBrowser.Controller.Providers
- {
- /// <summary>
- /// Provides images for all types by looking for standard images - folder, backdrop, logo, etc.
- /// </summary>
- public class ImageFromMediaLocationProvider : BaseMetadataProvider
- {
- /// <summary>
- /// Supportses the specified item.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
- public override bool Supports(BaseItem item)
- {
- return item.ResolveArgs.IsDirectory && item.LocationType == LocationType.FileSystem;
- }
- /// <summary>
- /// Gets the priority.
- /// </summary>
- /// <value>The priority.</value>
- public override MetadataProviderPriority Priority
- {
- get { return MetadataProviderPriority.First; }
- }
- /// <summary>
- /// Returns true or false indicating if the provider should refresh when the contents of it's directory changes
- /// </summary>
- /// <value><c>true</c> if [refresh on file system stamp change]; otherwise, <c>false</c>.</value>
- protected override bool RefreshOnFileSystemStampChange
- {
- get
- {
- return true;
- }
- }
- /// <summary>
- /// Fetches metadata and returns true or false indicating if any work that requires persistence was done
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="force">if set to <c>true</c> [force].</param>
- /// <param name="cancellationToken">The cancellation token.</param>
- /// <returns>Task{System.Boolean}.</returns>
- protected override Task<bool> FetchAsyncInternal(BaseItem item, bool force, CancellationToken cancellationToken)
- {
- cancellationToken.ThrowIfCancellationRequested();
-
- // Make sure current image paths still exist
- ValidateImages(item);
- cancellationToken.ThrowIfCancellationRequested();
- // Make sure current backdrop paths still exist
- ValidateBackdrops(item);
- cancellationToken.ThrowIfCancellationRequested();
-
- PopulateBaseItemImages(item);
- SetLastRefreshed(item, DateTime.UtcNow);
- return TrueTaskResult;
- }
- /// <summary>
- /// Validates that images within the item are still on the file system
- /// </summary>
- /// <param name="item">The item.</param>
- private void ValidateImages(BaseItem item)
- {
- if (item.Images == null)
- {
- return;
- }
- // Only validate paths from the same directory - need to copy to a list because we are going to potentially modify the collection below
- var deletedKeys = item.Images.Keys.Where(image =>
- {
- var path = item.Images[image];
- return IsInSameDirectory(item, path) && !item.ResolveArgs.GetMetaFileByPath(path).HasValue;
- }).ToList();
- // Now remove them from the dictionary
- foreach(var key in deletedKeys)
- {
- item.Images.Remove(key);
- }
- }
- /// <summary>
- /// Validates that backdrops within the item are still on the file system
- /// </summary>
- /// <param name="item">The item.</param>
- private void ValidateBackdrops(BaseItem item)
- {
- if (item.BackdropImagePaths == null)
- {
- return;
- }
- // Only validate paths from the same directory - need to copy to a list because we are going to potentially modify the collection below
- var deletedImages = item.BackdropImagePaths.Where(path => IsInSameDirectory(item, path) && !item.ResolveArgs.GetMetaFileByPath(path).HasValue).ToList();
- // Now remove them from the dictionary
- foreach (var path in deletedImages)
- {
- item.BackdropImagePaths.Remove(path);
- }
- }
- /// <summary>
- /// Determines whether [is in same directory] [the specified item].
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="path">The path.</param>
- /// <returns><c>true</c> if [is in same directory] [the specified item]; otherwise, <c>false</c>.</returns>
- private bool IsInSameDirectory(BaseItem item, string path)
- {
- return string.Equals(Path.GetDirectoryName(path), item.Path, StringComparison.OrdinalIgnoreCase);
- }
- /// <summary>
- /// Gets the image.
- /// </summary>
- /// <param name="item">The item.</param>
- /// <param name="filenameWithoutExtension">The filename without extension.</param>
- /// <returns>System.Nullable{WIN32_FIND_DATA}.</returns>
- protected virtual WIN32_FIND_DATA? GetImage(BaseItem item, string filenameWithoutExtension)
- {
- return item.ResolveArgs.GetMetaFileByPath(Path.Combine(item.ResolveArgs.Path, filenameWithoutExtension + ".png")) ?? item.ResolveArgs.GetMetaFileByPath(Path.Combine(item.ResolveArgs.Path, filenameWithoutExtension + ".jpg"));
- }
- /// <summary>
- /// Fills in image paths based on files win the folder
- /// </summary>
- /// <param name="item">The item.</param>
- private void PopulateBaseItemImages(BaseItem item)
- {
- var backdropFiles = new List<string>();
- // Primary Image
- var image = GetImage(item, "folder");
- if (image.HasValue)
- {
- item.SetImage(ImageType.Primary, image.Value.Path);
- }
- // Logo Image
- image = GetImage(item, "logo");
- if (image.HasValue)
- {
- item.SetImage(ImageType.Logo, image.Value.Path);
- }
- // Banner Image
- image = GetImage(item, "banner");
- if (image.HasValue)
- {
- item.SetImage(ImageType.Banner, image.Value.Path);
- }
- // Clearart
- image = GetImage(item, "clearart");
- if (image.HasValue)
- {
- item.SetImage(ImageType.Art, image.Value.Path);
- }
- // Thumbnail Image
- image = GetImage(item, "thumb");
- if (image.HasValue)
- {
- item.SetImage(ImageType.Thumb, image.Value.Path);
- }
- // Backdrop Image
- image = GetImage(item, "backdrop");
- if (image.HasValue)
- {
- backdropFiles.Add(image.Value.Path);
- }
- var unfound = 0;
- for (var i = 1; i <= 20; i++)
- {
- // Backdrop Image
- image = GetImage(item, "backdrop" + i);
- if (image.HasValue)
- {
- backdropFiles.Add(image.Value.Path);
- }
- else
- {
- unfound++;
- if (unfound >= 3)
- {
- break;
- }
- }
- }
- if (backdropFiles.Count > 0)
- {
- item.BackdropImagePaths = backdropFiles;
- }
- }
- }
- }
|