2019-01-13 12:54:44 -07:00
|
|
|
using System;
|
2019-01-13 12:20:16 -07:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using Emby.Server.Implementations.Images;
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2015-04-08 07:38:02 -07:00
|
|
|
using MediaBrowser.Controller.Drawing;
|
2015-01-22 23:15:15 -07: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;
|
2019-01-13 12:20:16 -07:00
|
|
|
using MediaBrowser.Model.IO;
|
2015-01-22 23:15:15 -07:00
|
|
|
|
2016-11-03 00:14:14 -07:00
|
|
|
namespace Emby.Server.Implementations.Collections
|
2015-01-22 23:15:15 -07:00
|
|
|
{
|
2015-03-13 12:16:34 -07:00
|
|
|
public class CollectionImageProvider : BaseDynamicImageProvider<BoxSet>
|
2015-01-22 23:15:15 -07:00
|
|
|
{
|
2019-02-06 12:38:42 -07:00
|
|
|
public CollectionImageProvider(
|
|
|
|
IFileSystem fileSystem,
|
|
|
|
IProviderManager providerManager,
|
|
|
|
IApplicationPaths applicationPaths,
|
|
|
|
IImageProcessor imageProcessor)
|
|
|
|
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2015-01-22 23:15:15 -07:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
protected override bool Supports(BaseItem item)
|
2015-10-13 22:02:30 -07:00
|
|
|
{
|
|
|
|
// 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);
|
|
|
|
}
|
|
|
|
|
2019-03-07 07:54:30 -07:00
|
|
|
protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item)
|
2015-01-22 23:15:15 -07:00
|
|
|
{
|
|
|
|
var playlist = (BoxSet)item;
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
return playlist.Children.Concat(playlist.GetLinkedChildren())
|
2015-01-22 23:15:15 -07:00
|
|
|
.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;
|
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
var parent = subItem.GetOwner() ?? subItem.GetParent();
|
2015-01-22 23:15:15 -07:00
|
|
|
|
|
|
|
if (parent != null && parent.HasImage(ImageType.Primary))
|
|
|
|
{
|
|
|
|
if (parent is MusicAlbum)
|
|
|
|
{
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
})
|
|
|
|
.Where(i => i != null)
|
2019-02-02 04:27:06 -07:00
|
|
|
.GroupBy(x => x.Id)
|
|
|
|
.Select(x => x.First())
|
2018-09-12 10:26:21 -07:00
|
|
|
.OrderBy(i => Guid.NewGuid())
|
2015-01-22 23:15:15 -07:00
|
|
|
.ToList();
|
2015-10-25 22:29:32 -07:00
|
|
|
}
|
|
|
|
|
2019-03-07 07:54:30 -07:00
|
|
|
protected override string CreateImage(BaseItem item, IReadOnlyCollection<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
|
2015-10-25 22:29:32 -07:00
|
|
|
{
|
2015-11-14 09:58:01 -07:00
|
|
|
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
|
2015-01-22 23:15:15 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|