2015-02-20 02:12:33 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2015-04-08 14:38:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Drawing;
|
2015-01-23 06:15:15 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
|
|
|
|
using MediaBrowser.Controller.Entities.Movies;
|
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-11-03 07:14:14 +00:00
|
|
|
|
using Emby.Server.Implementations.Images;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-22 02:08:34 +00:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2015-01-23 06:15:15 +00:00
|
|
|
|
|
2016-11-03 07:14:14 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Collections
|
2015-01-23 06:15:15 +00:00
|
|
|
|
{
|
2015-03-13 19:16:34 +00:00
|
|
|
|
public class CollectionImageProvider : BaseDynamicImageProvider<BoxSet>
|
2015-01-23 06:15:15 +00:00
|
|
|
|
{
|
2015-04-08 14:38:02 +00:00
|
|
|
|
public CollectionImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor) : base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2015-01-23 06:15:15 +00:00
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2015-10-14 05:02:30 +00:00
|
|
|
|
protected override bool Supports(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
// Right now this is the only way to prevent this image from getting created ahead of internet image providers
|
|
|
|
|
if (!item.IsLocked)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return base.Supports(item);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-23 06:15:15 +00:00
|
|
|
|
protected override Task<List<BaseItem>> GetItemsWithImages(IHasImages item)
|
|
|
|
|
{
|
|
|
|
|
var playlist = (BoxSet)item;
|
|
|
|
|
|
|
|
|
|
var items = playlist.Children.Concat(playlist.GetLinkedChildren())
|
|
|
|
|
.Select(i =>
|
|
|
|
|
{
|
|
|
|
|
var subItem = i;
|
|
|
|
|
|
|
|
|
|
var episode = subItem as Episode;
|
|
|
|
|
|
|
|
|
|
if (episode != null)
|
|
|
|
|
{
|
|
|
|
|
var series = episode.Series;
|
|
|
|
|
if (series != null && series.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
return series;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (subItem.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
return subItem;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-11 14:56:31 +00:00
|
|
|
|
var parent = subItem.GetParent();
|
2015-01-23 06:15:15 +00:00
|
|
|
|
|
|
|
|
|
if (parent != null && parent.HasImage(ImageType.Primary))
|
|
|
|
|
{
|
|
|
|
|
if (parent is MusicAlbum)
|
|
|
|
|
{
|
|
|
|
|
return parent;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
})
|
|
|
|
|
.Where(i => i != null)
|
|
|
|
|
.DistinctBy(i => i.Id)
|
|
|
|
|
.ToList();
|
|
|
|
|
|
2015-10-26 05:29:32 +00:00
|
|
|
|
return Task.FromResult(GetFinalItems(items, 2));
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-19 17:09:37 +00:00
|
|
|
|
protected string CreateImage(IHasImages item, List<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
|
2015-10-26 05:29:32 +00:00
|
|
|
|
{
|
2015-11-14 16:58:01 +00:00
|
|
|
|
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
|
2015-01-23 06:15:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|