| | 1 | | #nullable disable |
| | 2 | |
|
| | 3 | | #pragma warning disable CS1591 |
| | 4 | |
|
| | 5 | | using System.Collections.Generic; |
| | 6 | | using System.Linq; |
| | 7 | | using MediaBrowser.Common.Configuration; |
| | 8 | | using MediaBrowser.Controller.Drawing; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Entities.Audio; |
| | 11 | | using MediaBrowser.Controller.Entities.TV; |
| | 12 | | using MediaBrowser.Controller.Playlists; |
| | 13 | | using MediaBrowser.Controller.Providers; |
| | 14 | | using MediaBrowser.Model.Entities; |
| | 15 | | using MediaBrowser.Model.IO; |
| | 16 | |
|
| | 17 | | namespace Emby.Server.Implementations.Images |
| | 18 | | { |
| | 19 | | public class PlaylistImageProvider : BaseDynamicImageProvider<Playlist> |
| | 20 | | { |
| 21 | 21 | | public PlaylistImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applica |
| | 22 | | { |
| 21 | 23 | | } |
| | 24 | |
|
| | 25 | | protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item) |
| | 26 | | { |
| 0 | 27 | | var playlist = (Playlist)item; |
| | 28 | |
|
| 0 | 29 | | return playlist.GetManageableItems() |
| 0 | 30 | | .Select(i => |
| 0 | 31 | | { |
| 0 | 32 | | var subItem = i.Item2; |
| 0 | 33 | |
|
| 0 | 34 | | if (subItem is Episode episode) |
| 0 | 35 | | { |
| 0 | 36 | | var series = episode.Series; |
| 0 | 37 | | if (series is not null && series.HasImage(ImageType.Primary)) |
| 0 | 38 | | { |
| 0 | 39 | | return series; |
| 0 | 40 | | } |
| 0 | 41 | | } |
| 0 | 42 | |
|
| 0 | 43 | | if (subItem.HasImage(ImageType.Primary)) |
| 0 | 44 | | { |
| 0 | 45 | | return subItem; |
| 0 | 46 | | } |
| 0 | 47 | |
|
| 0 | 48 | | var parent = subItem.GetOwner() ?? subItem.GetParent(); |
| 0 | 49 | |
|
| 0 | 50 | | if (parent is not null && parent.HasImage(ImageType.Primary)) |
| 0 | 51 | | { |
| 0 | 52 | | if (parent is MusicAlbum) |
| 0 | 53 | | { |
| 0 | 54 | | return parent; |
| 0 | 55 | | } |
| 0 | 56 | | } |
| 0 | 57 | |
|
| 0 | 58 | | return null; |
| 0 | 59 | | }) |
| 0 | 60 | | .Where(i => i is not null) |
| 0 | 61 | | .DistinctBy(x => x.Id) |
| 0 | 62 | | .ToList(); |
| | 63 | | } |
| | 64 | | } |
| | 65 | | } |