2019-01-13 19:20:16 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using Emby.Server.Implementations.Images;
|
|
|
|
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;
|
2019-01-13 19:20:16 +00:00
|
|
|
using MediaBrowser.Model.IO;
|
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
|
|
|
{
|
2020-04-14 19:50:48 +00:00
|
|
|
/// <summary>
|
|
|
|
/// A collection image provider.
|
|
|
|
/// </summary>
|
2015-03-13 19:16:34 +00:00
|
|
|
public class CollectionImageProvider : BaseDynamicImageProvider<BoxSet>
|
2015-01-23 06:15:15 +00:00
|
|
|
{
|
2020-04-14 19:50:48 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="CollectionImageProvider"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="fileSystem">The filesystem.</param>
|
|
|
|
/// <param name="providerManager">The provider manager.</param>
|
|
|
|
/// <param name="applicationPaths">The application paths.</param>
|
|
|
|
/// <param name="imageProcessor">The image processor.</param>
|
2019-02-06 19:38:42 +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
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2020-04-14 23:34:38 +00:00
|
|
|
/// <inheritdoc />
|
2018-09-12 17:26:21 +00:00
|
|
|
protected override bool Supports(BaseItem item)
|
2015-10-14 05:02:30 +00: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);
|
|
|
|
}
|
|
|
|
|
2020-04-14 23:34:38 +00:00
|
|
|
/// <inheritdoc />
|
2019-03-07 14:54:30 +00:00
|
|
|
protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item)
|
2015-01-23 06:15:15 +00:00
|
|
|
{
|
|
|
|
var playlist = (BoxSet)item;
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
return playlist.Children.Concat(playlist.GetLinkedChildren())
|
2015-01-23 06:15:15 +00:00
|
|
|
.Select(i =>
|
|
|
|
{
|
|
|
|
var subItem = i;
|
|
|
|
|
|
|
|
var episode = subItem as Episode;
|
|
|
|
|
2020-04-14 19:50:48 +00:00
|
|
|
var series = episode?.Series;
|
2022-12-05 14:01:13 +00:00
|
|
|
if (series is not null && series.HasImage(ImageType.Primary))
|
2015-01-23 06:15:15 +00:00
|
|
|
{
|
2020-04-14 19:50:48 +00:00
|
|
|
return series;
|
2015-01-23 06:15:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (subItem.HasImage(ImageType.Primary))
|
|
|
|
{
|
|
|
|
return subItem;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
var parent = subItem.GetOwner() ?? subItem.GetParent();
|
2015-01-23 06:15:15 +00:00
|
|
|
|
2022-12-05 14:01:13 +00:00
|
|
|
if (parent is not null && parent.HasImage(ImageType.Primary))
|
2015-01-23 06:15:15 +00:00
|
|
|
{
|
|
|
|
if (parent is MusicAlbum)
|
|
|
|
{
|
|
|
|
return parent;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return null;
|
|
|
|
})
|
2022-12-05 14:01:13 +00:00
|
|
|
.Where(i => i is not null)
|
2021-05-20 19:28:18 +00:00
|
|
|
.GroupBy(x => x!.Id) // We removed the null values
|
2019-02-02 11:27:06 +00:00
|
|
|
.Select(x => x.First())
|
2021-05-20 19:28:18 +00:00
|
|
|
.ToList()!; // Again... the list doesn't contain any null values
|
2015-10-26 05:29:32 +00:00
|
|
|
}
|
|
|
|
|
2020-04-14 23:34:38 +00:00
|
|
|
/// <inheritdoc />
|
2019-03-07 14:54:30 +00:00
|
|
|
protected override string CreateImage(BaseItem item, IReadOnlyCollection<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
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|