using MediaBrowser.Common.Extensions; using MediaBrowser.Controller.Configuration; using MediaBrowser.Controller.Entities; using MediaBrowser.Controller.IO; using MediaBrowser.Controller.Library; using MediaBrowser.Controller.Providers; using MediaBrowser.Model.Logging; using System; using System.IO; using System.Linq; using System.Threading; using System.Threading.Tasks; namespace MediaBrowser.Providers { /// /// Provides images for generic types by looking for standard images in the IBN /// public class ImagesByNameProvider : ImageFromMediaLocationProvider { public ImagesByNameProvider(ILogManager logManager, IServerConfigurationManager configurationManager) : base(logManager, configurationManager) { } public override ItemUpdateType ItemUpdateType { get { return ItemUpdateType.ImageUpdate; } } /// /// Supportses the specified item. /// /// The item. /// true if XXXX, false otherwise public override bool Supports(BaseItem item) { //only run for these generic types since we are expensive in file i/o return item is IndexFolder || item is BasePluginFolder || item is CollectionFolder; } /// /// Gets the priority. /// /// The priority. public override MetadataProviderPriority Priority { get { return MetadataProviderPriority.Last; } } /// /// Needses the refresh internal. /// /// The item. /// The provider info. /// true if XXXX, false otherwise protected override bool NeedsRefreshInternal(BaseItem item, BaseProviderInfo providerInfo) { // Force a refresh if the IBN path changed if (providerInfo.FileStamp != ConfigurationManager.ApplicationPaths.ItemsByNamePath.GetMD5()) { return true; } return base.NeedsRefreshInternal(item, providerInfo); } /// /// Gets a value indicating whether [refresh on file system stamp change]. /// /// true if [refresh on file system stamp change]; otherwise, false. protected override bool RefreshOnFileSystemStampChange { get { return false; } } /// /// Override this to return the date that should be compared to the last refresh date /// to determine if this provider should be re-fetched. /// /// The item. /// DateTime. protected override DateTime CompareDate(BaseItem item) { // If the IBN location exists return the last modified date of any file in it var location = GetLocation(item); var directoryInfo = new DirectoryInfo(location); if (!directoryInfo.Exists) { return DateTime.MinValue; } var files = directoryInfo.EnumerateFiles().ToList(); if (files.Count == 0) { return DateTime.MinValue; } return files.Select(f => { var lastWriteTime = FileSystem.GetLastWriteTimeUtc(f, Logger); var creationTime = FileSystem.GetCreationTimeUtc(f, Logger); return creationTime > lastWriteTime ? creationTime : lastWriteTime; }).Max(); } /// /// Fetches metadata and returns true or false indicating if any work that requires persistence was done /// /// The item. /// if set to true [force]. /// The cancellation token. /// Task{System.Boolean}. public override async Task FetchAsync(BaseItem item, bool force, CancellationToken cancellationToken) { var result = await base.FetchAsync(item, force, cancellationToken).ConfigureAwait(false); BaseProviderInfo data; if (!item.ProviderData.TryGetValue(Id, out data)) { data = new BaseProviderInfo(); item.ProviderData[Id] = data; } data.FileStamp = ConfigurationManager.ApplicationPaths.ItemsByNamePath.GetMD5(); SetLastRefreshed(item, DateTime.UtcNow); return result; } /// /// Gets the location. /// /// The item. /// System.String. protected string GetLocation(BaseItem item) { var name = FileSystem.GetValidFilename(item.Name); return Path.Combine(ConfigurationManager.ApplicationPaths.GeneralPath, name); } /// /// Gets the image. /// /// The item. /// The args. /// The filename without extension. /// FileSystemInfo. protected override FileSystemInfo GetImage(BaseItem item, ItemResolveArgs args, string filenameWithoutExtension) { var location = GetLocation(item); var directoryInfo = new DirectoryInfo(location); if (!directoryInfo.Exists) { return null; } var files = directoryInfo.EnumerateFiles("*", SearchOption.TopDirectoryOnly).ToList(); var file = files.FirstOrDefault(i => string.Equals(i.Name, filenameWithoutExtension + ".png", StringComparison.OrdinalIgnoreCase)); if (file != null) { return file; } file = files.FirstOrDefault(i => string.Equals(i.Name, filenameWithoutExtension + ".jpg", StringComparison.OrdinalIgnoreCase)); if (file != null) { return file; } return null; } } }