2021-05-20 12:28:18 -07:00
|
|
|
#nullable disable
|
|
|
|
|
2020-05-29 02:28:19 -07:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 12:23:38 -07:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.IO;
|
|
|
|
using System.Linq;
|
2021-12-11 19:31:30 -07:00
|
|
|
using Jellyfin.Data.Enums;
|
2021-12-20 05:31:07 -07:00
|
|
|
using Jellyfin.Extensions;
|
2019-01-06 13:50:43 -07:00
|
|
|
using MediaBrowser.Common.Configuration;
|
2015-04-08 07:38:02 -07:00
|
|
|
using MediaBrowser.Controller.Drawing;
|
2019-01-13 12:23:38 -07:00
|
|
|
using MediaBrowser.Controller.Dto;
|
2014-10-29 15:01:02 -07:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2015-03-13 12:52:49 -07:00
|
|
|
using MediaBrowser.Controller.Entities.Audio;
|
2014-11-10 20:41:55 -07:00
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
2014-10-29 15:01:02 -07:00
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2019-01-13 12:23:38 -07:00
|
|
|
using MediaBrowser.Model.IO;
|
2014-10-29 15:01:02 -07:00
|
|
|
|
2019-12-13 23:27:03 -07:00
|
|
|
namespace Emby.Server.Implementations.Images
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
2015-04-25 21:39:40 -07:00
|
|
|
public class DynamicImageProvider : BaseDynamicImageProvider<UserView>
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
|
|
|
private readonly IUserManager _userManager;
|
|
|
|
|
2020-05-29 02:28:19 -07:00
|
|
|
public DynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicationPaths, IImageProcessor imageProcessor, IUserManager userManager)
|
2015-04-08 08:45:30 -07:00
|
|
|
: base(fileSystem, providerManager, applicationPaths, imageProcessor)
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
2015-03-06 20:53:31 -07:00
|
|
|
_userManager = userManager;
|
2015-03-13 21:50:23 -07:00
|
|
|
}
|
|
|
|
|
2019-03-07 07:54:30 -07:00
|
|
|
protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item)
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
|
|
|
var view = (UserView)item;
|
|
|
|
|
2015-03-13 21:50:23 -07:00
|
|
|
var isUsingCollectionStrip = IsUsingCollectionStrip(view);
|
2021-12-20 05:31:07 -07:00
|
|
|
var recursive = isUsingCollectionStrip && !new[] { CollectionType.BoxSets, CollectionType.Playlists }.Contains(view.ViewType ?? string.Empty, StringComparison.OrdinalIgnoreCase);
|
2015-03-13 21:50:23 -07:00
|
|
|
|
2017-08-01 09:45:57 -07:00
|
|
|
var result = view.GetItemList(new InternalItemsQuery
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
2016-03-27 14:11:27 -07:00
|
|
|
User = view.UserId.HasValue ? _userManager.GetUserById(view.UserId.Value) : null,
|
2015-03-13 21:50:23 -07:00
|
|
|
CollapseBoxSetItems = false,
|
|
|
|
Recursive = recursive,
|
2021-12-11 19:31:30 -07:00
|
|
|
ExcludeItemTypes = new[] { BaseItemKind.UserView, BaseItemKind.CollectionFolder, BaseItemKind.Person },
|
2017-05-21 00:25:49 -07:00
|
|
|
DtoOptions = new DtoOptions(false)
|
2017-05-25 23:48:54 -07:00
|
|
|
});
|
2014-10-29 15:01:02 -07:00
|
|
|
|
2017-08-01 09:45:57 -07:00
|
|
|
var items = result.Select(i =>
|
2014-11-10 20:41:55 -07:00
|
|
|
{
|
2019-03-07 07:54:30 -07:00
|
|
|
if (i is Episode episode)
|
2014-11-10 20:41:55 -07:00
|
|
|
{
|
|
|
|
var series = episode.Series;
|
|
|
|
if (series != null)
|
|
|
|
{
|
|
|
|
return series;
|
|
|
|
}
|
|
|
|
|
|
|
|
return episode;
|
|
|
|
}
|
|
|
|
|
2019-03-07 07:54:30 -07:00
|
|
|
if (i is Season season)
|
2014-11-10 20:41:55 -07:00
|
|
|
{
|
|
|
|
var series = season.Series;
|
|
|
|
if (series != null)
|
|
|
|
{
|
|
|
|
return series;
|
|
|
|
}
|
|
|
|
|
|
|
|
return season;
|
|
|
|
}
|
|
|
|
|
2019-03-07 07:54:30 -07:00
|
|
|
if (i is Audio audio)
|
2015-03-13 12:52:49 -07:00
|
|
|
{
|
2015-05-04 07:35:38 -07:00
|
|
|
var album = audio.AlbumEntity;
|
2015-03-13 21:50:23 -07:00
|
|
|
if (album != null && album.HasImage(ImageType.Primary))
|
2015-03-13 12:52:49 -07:00
|
|
|
{
|
2015-03-13 21:50:23 -07:00
|
|
|
return album;
|
2015-03-13 12:52:49 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-11-10 20:41:55 -07:00
|
|
|
return i;
|
2019-02-02 04:27:06 -07:00
|
|
|
}).GroupBy(x => x.Id)
|
|
|
|
.Select(x => x.First());
|
2014-11-10 20:41:55 -07:00
|
|
|
|
2015-03-13 21:50:23 -07:00
|
|
|
if (isUsingCollectionStrip)
|
2015-03-13 12:52:49 -07:00
|
|
|
{
|
2018-09-12 10:26:21 -07:00
|
|
|
return items
|
|
|
|
.Where(i => i.HasImage(ImageType.Primary) || i.HasImage(ImageType.Thumb))
|
|
|
|
.ToList();
|
2015-03-13 12:52:49 -07:00
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
return items
|
|
|
|
.Where(i => i.HasImage(ImageType.Primary))
|
|
|
|
.ToList();
|
2014-10-29 15:01:02 -07:00
|
|
|
}
|
|
|
|
|
2018-09-12 10:26:21 -07:00
|
|
|
protected override bool Supports(BaseItem item)
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
2019-10-20 07:08:40 -07:00
|
|
|
if (item is UserView view)
|
2014-10-29 15:01:02 -07:00
|
|
|
{
|
2016-03-27 14:11:27 -07:00
|
|
|
return IsUsingCollectionStrip(view);
|
2014-10-29 15:01:02 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2015-03-13 12:52:49 -07:00
|
|
|
|
2019-01-06 13:50:43 -07:00
|
|
|
private static bool IsUsingCollectionStrip(UserView view)
|
2015-03-13 12:52:49 -07:00
|
|
|
{
|
2015-03-13 21:50:23 -07:00
|
|
|
string[] collectionStripViewTypes =
|
|
|
|
{
|
|
|
|
CollectionType.Movies,
|
2017-01-11 10:56:26 -07:00
|
|
|
CollectionType.TvShows,
|
2018-09-12 10:26:21 -07:00
|
|
|
CollectionType.Playlists
|
2015-03-13 21:50:23 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
return collectionStripViewTypes.Contains(view.ViewType ?? string.Empty);
|
2015-03-13 12:52:49 -07:00
|
|
|
}
|
2015-03-13 13:09:07 -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-03-13 13:09:07 -07:00
|
|
|
{
|
2016-12-02 13:45:11 -07:00
|
|
|
if (itemsWithImages.Count == 0)
|
2015-03-13 13:09:07 -07:00
|
|
|
{
|
2016-12-02 13:45:11 -07:00
|
|
|
return null;
|
2015-03-13 13:09:07 -07:00
|
|
|
}
|
|
|
|
|
2016-12-02 13:45:11 -07:00
|
|
|
var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ".png");
|
|
|
|
|
2017-05-19 10:09:37 -07:00
|
|
|
return CreateThumbCollage(item, itemsWithImages, outputPath, 960, 540);
|
2015-03-13 13:09:07 -07:00
|
|
|
}
|
2014-10-29 15:01:02 -07:00
|
|
|
}
|
|
|
|
}
|