| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System; |
| | 6 | | using System.Collections.Generic; |
| | 7 | | using System.IO; |
| | 8 | | using System.Linq; |
| | 9 | | using Jellyfin.Data.Enums; |
| | 10 | | using Jellyfin.Extensions; |
| | 11 | | using MediaBrowser.Common.Configuration; |
| | 12 | | using MediaBrowser.Controller.Drawing; |
| | 13 | | using MediaBrowser.Controller.Dto; |
| | 14 | | using MediaBrowser.Controller.Entities; |
| | 15 | | using MediaBrowser.Controller.Entities.Audio; |
| | 16 | | using MediaBrowser.Controller.Entities.TV; |
| | 17 | | using MediaBrowser.Controller.Library; |
| | 18 | | using MediaBrowser.Controller.Providers; |
| | 19 | | using MediaBrowser.Model.Entities; |
| | 20 | | using MediaBrowser.Model.IO; |
| | 21 | |
|
| | 22 | | namespace Emby.Server.Implementations.Images |
| | 23 | | { |
| | 24 | | public class DynamicImageProvider : BaseDynamicImageProvider<UserView> |
| | 25 | | { |
| | 26 | | private readonly IUserManager _userManager; |
| | 27 | |
|
| | 28 | | public DynamicImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicat |
| 21 | 29 | | : base(fileSystem, providerManager, applicationPaths, imageProcessor) |
| | 30 | | { |
| 21 | 31 | | _userManager = userManager; |
| 21 | 32 | | } |
| | 33 | |
|
| | 34 | | protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item) |
| | 35 | | { |
| 0 | 36 | | var view = (UserView)item; |
| | 37 | |
|
| 0 | 38 | | var isUsingCollectionStrip = IsUsingCollectionStrip(view); |
| 0 | 39 | | var recursive = isUsingCollectionStrip && view?.ViewType is not null && view.ViewType != CollectionType.boxs |
| | 40 | |
|
| 0 | 41 | | var result = view.GetItemList(new InternalItemsQuery |
| 0 | 42 | | { |
| 0 | 43 | | User = view.UserId.HasValue ? _userManager.GetUserById(view.UserId.Value) : null, |
| 0 | 44 | | CollapseBoxSetItems = false, |
| 0 | 45 | | Recursive = recursive, |
| 0 | 46 | | ExcludeItemTypes = new[] { BaseItemKind.UserView, BaseItemKind.CollectionFolder, BaseItemKind.Person }, |
| 0 | 47 | | DtoOptions = new DtoOptions(false) |
| 0 | 48 | | }); |
| | 49 | |
|
| 0 | 50 | | var items = result.Select(i => |
| 0 | 51 | | { |
| 0 | 52 | | if (i is Episode episode) |
| 0 | 53 | | { |
| 0 | 54 | | var series = episode.Series; |
| 0 | 55 | | if (series is not null) |
| 0 | 56 | | { |
| 0 | 57 | | return series; |
| 0 | 58 | | } |
| 0 | 59 | |
|
| 0 | 60 | | return episode; |
| 0 | 61 | | } |
| 0 | 62 | |
|
| 0 | 63 | | if (i is Season season) |
| 0 | 64 | | { |
| 0 | 65 | | var series = season.Series; |
| 0 | 66 | | if (series is not null) |
| 0 | 67 | | { |
| 0 | 68 | | return series; |
| 0 | 69 | | } |
| 0 | 70 | |
|
| 0 | 71 | | return season; |
| 0 | 72 | | } |
| 0 | 73 | |
|
| 0 | 74 | | if (i is Audio audio) |
| 0 | 75 | | { |
| 0 | 76 | | var album = audio.AlbumEntity; |
| 0 | 77 | | if (album is not null && album.HasImage(ImageType.Primary)) |
| 0 | 78 | | { |
| 0 | 79 | | return album; |
| 0 | 80 | | } |
| 0 | 81 | | } |
| 0 | 82 | |
|
| 0 | 83 | | return i; |
| 0 | 84 | | }).DistinctBy(x => x.Id); |
| | 85 | |
|
| | 86 | | List<BaseItem> returnItems; |
| 0 | 87 | | if (isUsingCollectionStrip) |
| | 88 | | { |
| 0 | 89 | | returnItems = items |
| 0 | 90 | | .Where(i => i.HasImage(ImageType.Primary) || i.HasImage(ImageType.Thumb)) |
| 0 | 91 | | .ToList(); |
| 0 | 92 | | returnItems.Shuffle(); |
| 0 | 93 | | return returnItems; |
| | 94 | | } |
| | 95 | |
|
| 0 | 96 | | returnItems = items |
| 0 | 97 | | .Where(i => i.HasImage(ImageType.Primary)) |
| 0 | 98 | | .ToList(); |
| 0 | 99 | | returnItems.Shuffle(); |
| 0 | 100 | | return returnItems; |
| | 101 | | } |
| | 102 | |
|
| | 103 | | protected override bool Supports(BaseItem item) |
| | 104 | | { |
| 0 | 105 | | if (item is UserView view) |
| | 106 | | { |
| 0 | 107 | | return IsUsingCollectionStrip(view); |
| | 108 | | } |
| | 109 | |
|
| 0 | 110 | | return false; |
| | 111 | | } |
| | 112 | |
|
| | 113 | | private static bool IsUsingCollectionStrip(UserView view) |
| | 114 | | { |
| 0 | 115 | | CollectionType[] collectionStripViewTypes = |
| 0 | 116 | | { |
| 0 | 117 | | CollectionType.movies, |
| 0 | 118 | | CollectionType.tvshows, |
| 0 | 119 | | CollectionType.playlists |
| 0 | 120 | | }; |
| | 121 | |
|
| 0 | 122 | | return view?.ViewType is not null && collectionStripViewTypes.Contains(view.ViewType.Value); |
| | 123 | | } |
| | 124 | |
|
| | 125 | | protected override string CreateImage(BaseItem item, IReadOnlyCollection<BaseItem> itemsWithImages, string outpu |
| | 126 | | { |
| 0 | 127 | | if (itemsWithImages.Count == 0) |
| | 128 | | { |
| 0 | 129 | | return null; |
| | 130 | | } |
| | 131 | |
|
| 0 | 132 | | var outputPath = Path.ChangeExtension(outputPathWithoutExtension, ".png"); |
| | 133 | |
|
| 0 | 134 | | return CreateThumbCollage(item, itemsWithImages, outputPath, 960, 540); |
| | 135 | | } |
| | 136 | | } |
| | 137 | | } |