| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338 | 
							- using MediaBrowser.Common.Configuration;
 
- using MediaBrowser.Common.Extensions;
 
- using MediaBrowser.Controller.Drawing;
 
- using MediaBrowser.Controller.Entities;
 
- using MediaBrowser.Controller.Library;
 
- using MediaBrowser.Controller.Playlists;
 
- using MediaBrowser.Controller.Providers;
 
- using MediaBrowser.Model.Entities;
 
- using System;
 
- using System.Collections.Generic;
 
- using System.IO;
 
- using System.Linq;
 
- using System.Threading;
 
- using System.Threading.Tasks;
 
- using MediaBrowser.Model.IO;
 
- using MediaBrowser.Controller.Entities.Audio;
 
- using MediaBrowser.Controller.IO;
 
- using MediaBrowser.Model.Configuration;
 
- using MediaBrowser.Model.Net;
 
- namespace Emby.Server.Implementations.Images
 
- {
 
-     public abstract class BaseDynamicImageProvider<T> : IHasItemChangeMonitor, IForcedProvider, ICustomMetadataProvider<T>, IHasOrder
 
-         where T : IHasMetadata
 
-     {
 
-         protected IFileSystem FileSystem { get; private set; }
 
-         protected IProviderManager ProviderManager { get; private set; }
 
-         protected IApplicationPaths ApplicationPaths { get; private set; }
 
-         protected IImageProcessor ImageProcessor { get; set; }
 
-         protected BaseDynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor)
 
-         {
 
-             ApplicationPaths = applicationPaths;
 
-             ProviderManager = providerManager;
 
-             FileSystem = fileSystem;
 
-             ImageProcessor = imageProcessor;
 
-         }
 
-         protected virtual bool Supports(IHasMetadata item)
 
-         {
 
-             return true;
 
-         }
 
-         public virtual IEnumerable<ImageType> GetSupportedImages(IHasMetadata item)
 
-         {
 
-             return new List<ImageType>
 
-             {
 
-                 ImageType.Primary,
 
-                 ImageType.Thumb
 
-             };
 
-         }
 
-         private IEnumerable<ImageType> GetEnabledImages(IHasMetadata item)
 
-         {
 
-             //var options = ProviderManager.GetMetadataOptions(item);
 
-             return GetSupportedImages(item);
 
-             //return GetSupportedImages(item).Where(i => IsEnabled(options, i, item)).ToList();
 
-         }
 
-         public async Task<ItemUpdateType> FetchAsync(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
 
-         {
 
-             if (!Supports(item))
 
-             {
 
-                 return ItemUpdateType.None;
 
-             }
 
-             var updateType = ItemUpdateType.None;
 
-             var supportedImages = GetEnabledImages(item).ToList();
 
-             if (supportedImages.Contains(ImageType.Primary))
 
-             {
 
-                 var primaryResult = await FetchAsync(item, ImageType.Primary, options, cancellationToken).ConfigureAwait(false);
 
-                 updateType = updateType | primaryResult;
 
-             }
 
-             if (supportedImages.Contains(ImageType.Thumb))
 
-             {
 
-                 var thumbResult = await FetchAsync(item, ImageType.Thumb, options, cancellationToken).ConfigureAwait(false);
 
-                 updateType = updateType | thumbResult;
 
-             }
 
-             return updateType;
 
-         }
 
-         protected async Task<ItemUpdateType> FetchAsync(IHasMetadata item, ImageType imageType, MetadataRefreshOptions options, CancellationToken cancellationToken)
 
-         {
 
-             var image = item.GetImageInfo(imageType, 0);
 
-             if (image != null)
 
-             {
 
-                 if (!image.IsLocalFile)
 
-                 {
 
-                     return ItemUpdateType.None;
 
-                 }
 
-                 if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path))
 
-                 {
 
-                     return ItemUpdateType.None;
 
-                 }
 
-             }
 
-             var items = GetItemsWithImages(item);
 
-             return await FetchToFileInternal(item, items, imageType, cancellationToken).ConfigureAwait(false);
 
-         }
 
-         protected async Task<ItemUpdateType> FetchToFileInternal(IHasMetadata item,
 
-             List<BaseItem> itemsWithImages,
 
-             ImageType imageType,
 
-             CancellationToken cancellationToken)
 
-         {
 
-             var outputPathWithoutExtension = Path.Combine(ApplicationPaths.TempDirectory, Guid.NewGuid().ToString("N"));
 
-             FileSystem.CreateDirectory(FileSystem.GetDirectoryName(outputPathWithoutExtension));
 
-             string outputPath = CreateImage(item, itemsWithImages, outputPathWithoutExtension, imageType, 0);
 
-             if (string.IsNullOrWhiteSpace(outputPath))
 
-             {
 
-                 return ItemUpdateType.None;
 
-             }
 
-             var mimeType = MimeTypes.GetMimeType(outputPath);
 
-             if (string.Equals(mimeType, "application/octet-stream", StringComparison.OrdinalIgnoreCase))
 
-             {
 
-                 mimeType = "image/png";
 
-             }
 
-             await ProviderManager.SaveImage(item, outputPath, mimeType, imageType, null, false, cancellationToken).ConfigureAwait(false);
 
-             return ItemUpdateType.ImageUpdate;
 
-         }
 
-         protected abstract List<BaseItem> GetItemsWithImages(IHasMetadata item);
 
-         protected string CreateThumbCollage(IHasMetadata primaryItem, List<BaseItem> items, string outputPath)
 
-         {
 
-             return CreateCollage(primaryItem, items, outputPath, 640, 360);
 
-         }
 
-         protected virtual IEnumerable<string> GetStripCollageImagePaths(IHasMetadata primaryItem, IEnumerable<BaseItem> items)
 
-         {
 
-             return items
 
-                 .Select(i =>
 
-                 {
 
-                     var image = i.GetImageInfo(ImageType.Primary, 0);
 
-                     if (image != null && image.IsLocalFile)
 
-                     {
 
-                         return image.Path;
 
-                     }
 
-                     image = i.GetImageInfo(ImageType.Thumb, 0);
 
-                     if (image != null && image.IsLocalFile)
 
-                     {
 
-                         return image.Path;
 
-                     }
 
-                     return null;
 
-                 })
 
-                 .Where(i => !string.IsNullOrWhiteSpace(i));
 
-         }
 
-         protected string CreatePosterCollage(IHasMetadata primaryItem, List<BaseItem> items, string outputPath)
 
-         {
 
-             return CreateCollage(primaryItem, items, outputPath, 400, 600);
 
-         }
 
-         protected string CreateSquareCollage(IHasMetadata primaryItem, List<BaseItem> items, string outputPath)
 
-         {
 
-             return CreateCollage(primaryItem, items, outputPath, 600, 600);
 
-         }
 
-         protected string CreateThumbCollage(IHasMetadata primaryItem, List<BaseItem> items, string outputPath, int width, int height)
 
-         {
 
-             return CreateCollage(primaryItem, items, outputPath, width, height);
 
-         }
 
-         private string CreateCollage(IHasMetadata primaryItem, List<BaseItem> items, string outputPath, int width, int height)
 
-         {
 
-             FileSystem.CreateDirectory(FileSystem.GetDirectoryName(outputPath));
 
-             var options = new ImageCollageOptions
 
-             {
 
-                 Height = height,
 
-                 Width = width,
 
-                 OutputPath = outputPath,
 
-                 InputPaths = GetStripCollageImagePaths(primaryItem, items).ToArray()
 
-             };
 
-             if (options.InputPaths.Length == 0)
 
-             {
 
-                 return null;
 
-             }
 
-             if (!ImageProcessor.SupportsImageCollageCreation)
 
-             {
 
-                 return null;
 
-             }
 
-             ImageProcessor.CreateImageCollage(options);
 
-             return outputPath;
 
-         }
 
-         public string Name
 
-         {
 
-             get { return "Dynamic Image Provider"; }
 
-         }
 
-         protected virtual string CreateImage(IHasMetadata item,
 
-             List<BaseItem> itemsWithImages,
 
-             string outputPathWithoutExtension,
 
-             ImageType imageType,
 
-             int imageIndex)
 
-         {
 
-             if (itemsWithImages.Count == 0)
 
-             {
 
-                 return null;
 
-             }
 
-             string outputPath = Path.ChangeExtension(outputPathWithoutExtension, ".png");
 
-             if (imageType == ImageType.Thumb)
 
-             {
 
-                 return CreateThumbCollage(item, itemsWithImages, outputPath);
 
-             }
 
-             if (imageType == ImageType.Primary)
 
-             {
 
-                 if (item is UserView)
 
-                 {
 
-                     return CreateSquareCollage(item, itemsWithImages, outputPath);
 
-                 }
 
-                 if (item is Playlist || item is MusicGenre || item is Genre || item is GameGenre || item is PhotoAlbum)
 
-                 {
 
-                     return CreateSquareCollage(item, itemsWithImages, outputPath);
 
-                 }
 
-                 return CreatePosterCollage(item, itemsWithImages, outputPath);
 
-             }
 
-             throw new ArgumentException("Unexpected image type");
 
-         }
 
-         protected virtual int MaxImageAgeDays
 
-         {
 
-             get { return 7; }
 
-         }
 
-         public bool HasChanged(IHasMetadata item, IDirectoryService directoryServicee)
 
-         {
 
-             if (!Supports(item))
 
-             {
 
-                 return false;
 
-             }
 
-             var supportedImages = GetEnabledImages(item).ToList();
 
-             if (supportedImages.Contains(ImageType.Primary) && HasChanged(item, ImageType.Primary))
 
-             {
 
-                 return true;
 
-             }
 
-             if (supportedImages.Contains(ImageType.Thumb) && HasChanged(item, ImageType.Thumb))
 
-             {
 
-                 return true;
 
-             }
 
-             return false;
 
-         }
 
-         protected bool HasChanged(IHasMetadata item, ImageType type)
 
-         {
 
-             var image = item.GetImageInfo(type, 0);
 
-             if (image != null)
 
-             {
 
-                 if (!image.IsLocalFile)
 
-                 {
 
-                     return false;
 
-                 }
 
-                 if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path))
 
-                 {
 
-                     return false;
 
-                 }
 
-                 var age = DateTime.UtcNow - image.DateModified;
 
-                 if (age.TotalDays <= MaxImageAgeDays)
 
-                 {
 
-                     return false;
 
-                 }
 
-             }
 
-             return true;
 
-         }
 
-         protected List<BaseItem> GetFinalItems(IEnumerable<BaseItem> items)
 
-         {
 
-             return GetFinalItems(items, 4);
 
-         }
 
-         protected virtual List<BaseItem> GetFinalItems(IEnumerable<BaseItem> items, int limit)
 
-         {
 
-             return items
 
-                 .OrderBy(i => Guid.NewGuid())
 
-                 .Take(limit)
 
-                 .ToList();
 
-         }
 
-         public int Order
 
-         {
 
-             get
 
-             {
 
-                 // Run before the default image provider which will download placeholders
 
-                 return 0;
 
-             }
 
-         }
 
-         protected string CreateSingleImage(List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType)
 
-         {
 
-             var image = itemsWithImages
 
-                 .Where(i => i.HasImage(imageType) && i.GetImageInfo(imageType, 0).IsLocalFile && Path.HasExtension(i.GetImagePath(imageType)))
 
-                 .Select(i => i.GetImagePath(imageType))
 
-                 .FirstOrDefault();
 
-             if (string.IsNullOrWhiteSpace(image))
 
-             {
 
-                 return null;
 
-             }
 
-             var ext = Path.GetExtension(image);
 
-             var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ext);
 
-             FileSystem.CopyFile(image, outputPath, true);
 
-             return outputPath;
 
-         }
 
-     }
 
- }
 
 
  |