jellyfin/Emby.Server.Implementations/Collections/CollectionImageProvider.cs

97 lines
3.4 KiB
C#
Raw Normal View History

using System.Collections.Generic;
using System.Linq;
using Emby.Server.Implementations.Images;
using MediaBrowser.Common.Configuration;
2015-04-08 16:38:02 +02:00
using MediaBrowser.Controller.Drawing;
2015-01-23 07:15:15 +01: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 MediaBrowser.Model.IO;
2015-01-23 07:15:15 +01:00
2016-11-03 08:14:14 +01:00
namespace Emby.Server.Implementations.Collections
2015-01-23 07:15:15 +01:00
{
/// <summary>
/// A collection image provider.
/// </summary>
2015-03-13 20:16:34 +01:00
public class CollectionImageProvider : BaseDynamicImageProvider<BoxSet>
2015-01-23 07:15:15 +01: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 20:38:42 +01:00
public CollectionImageProvider(
IFileSystem fileSystem,
IProviderManager providerManager,
IApplicationPaths applicationPaths,
IImageProcessor imageProcessor)
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
2015-01-23 07:15:15 +01:00
{
}
2020-04-15 01:34:38 +02:00
/// <inheritdoc />
2018-09-12 19:26:21 +02:00
protected override bool Supports(BaseItem item)
2015-10-14 07:02:30 +02: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-15 01:34:38 +02:00
/// <inheritdoc />
protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item)
2015-01-23 07:15:15 +01:00
{
var playlist = (BoxSet)item;
2018-09-12 19:26:21 +02:00
return playlist.Children.Concat(playlist.GetLinkedChildren())
2015-01-23 07:15:15 +01:00
.Select(i =>
{
var subItem = i;
var episode = subItem as Episode;
var series = episode?.Series;
2022-12-05 15:01:13 +01:00
if (series is not null && series.HasImage(ImageType.Primary))
2015-01-23 07:15:15 +01:00
{
return series;
2015-01-23 07:15:15 +01:00
}
if (subItem.HasImage(ImageType.Primary))
{
return subItem;
}
2018-09-12 19:26:21 +02:00
var parent = subItem.GetOwner() ?? subItem.GetParent();
2015-01-23 07:15:15 +01:00
2022-12-05 15:01:13 +01:00
if (parent is not null && parent.HasImage(ImageType.Primary))
2015-01-23 07:15:15 +01:00
{
if (parent is MusicAlbum)
{
return parent;
}
}
return null;
})
2022-12-05 15:01:13 +01:00
.Where(i => i is not null)
.GroupBy(x => x!.Id) // We removed the null values
2019-02-02 12:27:06 +01:00
.Select(x => x.First())
.ToList()!; // Again... the list doesn't contain any null values
2015-10-26 06:29:32 +01:00
}
2020-04-15 01:34:38 +02:00
/// <inheritdoc />
protected override string CreateImage(BaseItem item, IReadOnlyCollection<BaseItem> itemsWithImages, string outputPathWithoutExtension, ImageType imageType, int imageIndex)
2015-10-26 06:29:32 +01:00
{
2015-11-14 17:58:01 +01:00
return CreateSingleImage(itemsWithImages, outputPathWithoutExtension, ImageType.Primary);
2015-01-23 07:15:15 +01:00
}
}
}