jellyfin/MediaBrowser.Server.Implementations/Photos/BaseDynamicImageProvider.cs

339 lines
11 KiB
C#
Raw Normal View History

using MediaBrowser.Common.Configuration;
using MediaBrowser.Common.Extensions;
2014-10-29 23:01:02 +01:00
using MediaBrowser.Common.IO;
2015-04-08 16:38:02 +02:00
using MediaBrowser.Controller.Drawing;
2014-10-29 23:01:02 +01:00
using MediaBrowser.Controller.Entities;
2015-03-14 18:02:51 +01:00
using MediaBrowser.Controller.Library;
2015-04-02 19:44:44 +02:00
using MediaBrowser.Controller.Playlists;
2014-10-29 23:01:02 +01:00
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;
2015-10-04 06:23:11 +02:00
using CommonIO;
2014-10-29 23:01:02 +01:00
namespace MediaBrowser.Server.Implementations.Photos
{
2015-03-14 18:02:51 +01:00
public abstract class BaseDynamicImageProvider<T> : IHasChangeMonitor, IForcedProvider, ICustomMetadataProvider<T>, IHasOrder
2015-03-13 20:16:34 +01:00
where T : IHasMetadata
2014-10-29 23:01:02 +01:00
{
protected IFileSystem FileSystem { get; private set; }
protected IProviderManager ProviderManager { get; private set; }
protected IApplicationPaths ApplicationPaths { get; private set; }
2015-04-08 16:38:02 +02:00
protected IImageProcessor ImageProcessor { get; set; }
2014-10-29 23:01:02 +01:00
2015-04-08 16:38:02 +02:00
protected BaseDynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor)
2014-10-29 23:01:02 +01:00
{
ApplicationPaths = applicationPaths;
2014-10-29 23:01:02 +01:00
ProviderManager = providerManager;
FileSystem = fileSystem;
2015-04-08 16:38:02 +02:00
ImageProcessor = imageProcessor;
2014-10-29 23:01:02 +01:00
}
2015-10-14 07:02:30 +02:00
protected virtual bool Supports(IHasImages item)
2014-10-29 23:01:02 +01:00
{
2015-03-14 18:02:51 +01:00
return true;
2014-10-29 23:01:02 +01:00
}
2015-03-14 05:50:23 +01:00
public virtual IEnumerable<ImageType> GetSupportedImages(IHasImages item)
2014-10-29 23:01:02 +01:00
{
2015-03-13 20:37:19 +01:00
return new List<ImageType>
{
ImageType.Primary,
ImageType.Thumb
};
2014-10-29 23:01:02 +01:00
}
2015-03-14 18:02:51 +01:00
public async Task<ItemUpdateType> FetchAsync(T item, MetadataRefreshOptions options, CancellationToken cancellationToken)
{
if (!Supports(item))
{
return ItemUpdateType.None;
}
2015-07-27 07:03:34 +02:00
var updateType = ItemUpdateType.None;
var supportedImages = GetSupportedImages(item).ToList();
2015-03-14 18:02:51 +01:00
2015-07-27 07:03:34 +02:00
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;
2015-03-14 18:02:51 +01:00
}
protected async Task<ItemUpdateType> FetchAsync(IHasImages item, ImageType imageType, MetadataRefreshOptions options, CancellationToken cancellationToken)
{
var items = await GetItemsWithImages(item).ConfigureAwait(false);
2015-03-16 02:48:25 +01:00
var cacheKey = GetConfigurationCacheKey(items, item.Name);
2015-03-14 18:02:51 +01:00
if (!HasChanged(item, imageType, cacheKey))
{
return ItemUpdateType.None;
}
return await FetchToFileInternal(item, items, imageType, cacheKey, cancellationToken).ConfigureAwait(false);
}
protected async Task<ItemUpdateType> FetchToFileInternal(IHasImages item,
List<BaseItem> itemsWithImages,
ImageType imageType,
string cacheKey,
CancellationToken cancellationToken)
{
2015-04-08 17:45:30 +02:00
var outputPath = Path.Combine(ApplicationPaths.TempDirectory, Guid.NewGuid() + ".png");
2015-09-13 23:32:02 +02:00
FileSystem.CreateDirectory(Path.GetDirectoryName(outputPath));
var imageCreated = await CreateImage(item, itemsWithImages, outputPath, imageType, 0).ConfigureAwait(false);
2015-03-14 18:02:51 +01:00
2015-04-08 17:45:30 +02:00
if (!imageCreated)
2015-03-14 18:02:51 +01:00
{
return ItemUpdateType.None;
}
2015-04-08 17:45:30 +02:00
await ProviderManager.SaveImage(item, outputPath, "image/png", imageType, null, cacheKey, cancellationToken).ConfigureAwait(false);
2015-03-14 18:02:51 +01:00
return ItemUpdateType.ImageUpdate;
}
2015-03-13 20:37:19 +01:00
protected abstract Task<List<BaseItem>> GetItemsWithImages(IHasImages item);
2015-04-17 06:53:47 +02:00
private const string Version = "32";
2015-03-16 02:48:25 +01:00
protected string GetConfigurationCacheKey(List<BaseItem> items, string itemName)
2015-03-13 20:37:19 +01:00
{
2015-03-24 03:26:19 +01:00
var parts = Version + "_" + (itemName ?? string.Empty) + "_" +
string.Join(",", items.Select(i => i.Id.ToString("N")).ToArray());
return parts.GetMD5().ToString("N");
2014-10-29 23:01:02 +01:00
}
2015-08-14 19:24:07 +02:00
protected Task<bool> CreateThumbCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath)
2014-10-29 23:01:02 +01:00
{
2015-08-14 19:24:07 +02:00
return CreateCollage(primaryItem, items, outputPath, 640, 360);
2014-10-29 23:01:02 +01:00
}
2015-04-08 17:45:30 +02:00
protected virtual IEnumerable<string> GetStripCollageImagePaths(IHasImages primaryItem, IEnumerable<BaseItem> items)
2014-10-29 23:01:02 +01:00
{
2015-04-02 18:58:52 +02:00
return items
2015-10-16 19:06:31 +02:00
.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;
})
2015-04-02 18:58:52 +02:00
.Where(i => !string.IsNullOrWhiteSpace(i));
}
2015-05-11 18:32:15 +02:00
protected Task<bool> CreatePosterCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath)
2015-04-02 19:44:44 +02:00
{
2015-08-14 19:24:07 +02:00
return CreateCollage(primaryItem, items, outputPath, 400, 600);
2015-04-08 16:38:02 +02:00
}
2015-08-14 19:24:07 +02:00
protected Task<bool> CreateSquareCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath)
2015-04-08 16:38:02 +02:00
{
2015-08-14 19:24:07 +02:00
return CreateCollage(primaryItem, items, outputPath, 600, 600);
2015-04-08 16:38:02 +02:00
}
2015-04-02 19:44:44 +02:00
2015-08-14 19:24:07 +02:00
protected Task<bool> CreateThumbCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath, int width, int height)
2015-04-08 16:38:02 +02:00
{
2015-08-14 19:24:07 +02:00
return CreateCollage(primaryItem, items, outputPath, width, height);
2015-04-02 19:44:44 +02:00
}
2015-08-14 19:24:07 +02:00
private Task<bool> CreateCollage(IHasImages primaryItem, List<BaseItem> items, string outputPath, int width, int height)
2015-04-02 18:58:52 +02:00
{
2015-09-13 23:32:02 +02:00
FileSystem.CreateDirectory(Path.GetDirectoryName(outputPath));
2015-04-08 16:38:02 +02:00
var options = new ImageCollageOptions
{
Height = height,
Width = width,
OutputPath = outputPath,
InputPaths = GetStripCollageImagePaths(primaryItem, items).ToArray()
};
2015-05-11 18:32:15 +02:00
if (options.InputPaths.Length == 0)
{
return Task.FromResult(false);
}
ImageProcessor.CreateImageCollage(options);
return Task.FromResult(true);
2014-10-29 23:01:02 +01:00
}
public string Name
{
get { return "Dynamic Image Provider"; }
}
protected virtual async Task<bool> CreateImage(IHasImages item,
2014-10-29 23:01:02 +01:00
List<BaseItem> itemsWithImages,
2015-04-08 17:45:30 +02:00
string outputPath,
2015-03-13 20:37:19 +01:00
ImageType imageType,
2014-10-29 23:01:02 +01:00
int imageIndex)
{
if (itemsWithImages.Count == 0)
{
2015-04-08 17:45:30 +02:00
return false;
2014-10-29 23:01:02 +01:00
}
2015-04-02 19:44:44 +02:00
if (imageType == ImageType.Thumb)
{
2015-08-14 19:24:07 +02:00
return await CreateThumbCollage(item, itemsWithImages, outputPath).ConfigureAwait(false);
2015-04-02 19:44:44 +02:00
}
if (imageType == ImageType.Primary)
{
2015-04-16 16:59:39 +02:00
if (item is UserView)
{
2015-08-14 19:24:07 +02:00
return await CreateSquareCollage(item, itemsWithImages, outputPath).ConfigureAwait(false);
2015-04-16 16:59:39 +02:00
}
2015-07-27 07:03:34 +02:00
if (item is PhotoAlbum || item is Playlist)
2015-04-08 17:45:30 +02:00
{
2015-08-14 19:24:07 +02:00
return await CreateSquareCollage(item, itemsWithImages, outputPath).ConfigureAwait(false);
2015-04-08 17:45:30 +02:00
}
2015-07-27 07:03:34 +02:00
return await CreatePosterCollage(item, itemsWithImages, outputPath).ConfigureAwait(false);
2015-04-02 19:44:44 +02:00
}
throw new ArgumentException("Unexpected image type");
2014-10-29 23:01:02 +01:00
}
2015-05-05 17:25:00 +02:00
private const int MaxImageAgeDays = 7;
2014-10-29 23:01:02 +01:00
public bool HasChanged(IHasMetadata item, IDirectoryService directoryService, DateTime date)
{
if (!Supports(item))
{
return false;
}
2015-07-27 07:03:34 +02:00
var supportedImages = GetSupportedImages(item).ToList();
if (item is UserView || item is ICollectionFolder)
2015-05-05 17:25:00 +02:00
{
2015-07-27 07:03:34 +02:00
if (supportedImages.Contains(ImageType.Primary) && HasChanged(item, ImageType.Primary))
{
return true;
}
if (supportedImages.Contains(ImageType.Thumb) && HasChanged(item, ImageType.Thumb))
{
return true;
}
return false;
2015-05-05 17:25:00 +02:00
}
2014-10-29 23:01:02 +01:00
var items = GetItemsWithImages(item).Result;
2015-03-16 02:48:25 +01:00
var cacheKey = GetConfigurationCacheKey(items, item.Name);
2014-10-29 23:01:02 +01:00
2015-07-27 07:03:34 +02:00
if (supportedImages.Contains(ImageType.Primary) && HasChanged(item, ImageType.Primary, cacheKey))
{
return true;
}
if (supportedImages.Contains(ImageType.Thumb) && HasChanged(item, ImageType.Thumb, cacheKey))
{
return true;
}
return false;
2014-10-29 23:01:02 +01:00
}
protected bool HasChanged(IHasImages item, ImageType type, string cacheKey)
{
var image = item.GetImageInfo(type, 0);
if (image != null)
{
2015-10-15 17:51:00 +02:00
if (!image.IsLocalFile)
{
return false;
}
2014-10-29 23:01:02 +01:00
if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path))
{
return false;
}
var currentPathCacheKey = (Path.GetFileNameWithoutExtension(image.Path) ?? string.Empty).Split('_').LastOrDefault();
if (string.Equals(cacheKey, currentPathCacheKey, StringComparison.OrdinalIgnoreCase))
{
return false;
}
}
return true;
}
2015-05-05 17:25:00 +02:00
protected bool HasChanged(IHasImages item, ImageType type)
{
var image = item.GetImageInfo(type, 0);
if (image != null)
{
2015-10-15 17:51:00 +02:00
if (!image.IsLocalFile)
{
return false;
}
2015-05-05 17:25:00 +02:00
if (!FileSystem.ContainsSubPath(item.GetInternalMetadataPath(), image.Path))
{
return false;
}
var age = DateTime.UtcNow - image.DateModified;
if (age.TotalDays <= MaxImageAgeDays)
{
return false;
}
}
return true;
}
2014-10-29 23:01:02 +01:00
protected List<BaseItem> GetFinalItems(List<BaseItem> items)
2015-03-13 20:52:49 +01:00
{
return GetFinalItems(items, 4);
}
2015-03-14 18:02:51 +01:00
protected virtual List<BaseItem> GetFinalItems(List<BaseItem> items, int limit)
2014-10-29 23:01:02 +01:00
{
2015-03-27 00:10:34 +01:00
// Rotate the images once every x days
2015-05-05 17:25:00 +02:00
var random = DateTime.Now.DayOfYear % MaxImageAgeDays;
2014-10-29 23:01:02 +01:00
return items
2015-03-24 03:26:19 +01:00
.OrderBy(i => (random + "" + items.IndexOf(i)).GetMD5())
2015-03-13 20:52:49 +01:00
.Take(limit)
2014-10-29 23:01:02 +01:00
.OrderBy(i => i.Name)
.ToList();
}
2015-03-13 20:37:19 +01:00
public int Order
{
get
{
// Run before the default image provider which will download placeholders
return 0;
}
}
2014-10-29 23:01:02 +01:00
}
}