| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System.Collections.Generic; |
| | 4 | | using Jellyfin.Data.Enums; |
| | 5 | | using Jellyfin.Database.Implementations.Enums; |
| | 6 | | using MediaBrowser.Common.Configuration; |
| | 7 | | using MediaBrowser.Controller.Drawing; |
| | 8 | | using MediaBrowser.Controller.Dto; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Library; |
| | 11 | | using MediaBrowser.Controller.Providers; |
| | 12 | | using MediaBrowser.Model.Entities; |
| | 13 | | using MediaBrowser.Model.IO; |
| | 14 | | using MediaBrowser.Model.Querying; |
| | 15 | |
|
| | 16 | | namespace Emby.Server.Implementations.Images |
| | 17 | | { |
| | 18 | | /// <summary> |
| | 19 | | /// Class GenreImageProvider. |
| | 20 | | /// </summary> |
| | 21 | | public class GenreImageProvider : BaseDynamicImageProvider<Genre> |
| | 22 | | { |
| | 23 | | /// <summary> |
| | 24 | | /// The library manager. |
| | 25 | | /// </summary> |
| | 26 | | private readonly ILibraryManager _libraryManager; |
| | 27 | |
|
| 21 | 28 | | public GenreImageProvider(IFileSystem fileSystem, IProviderManager providerManager, IApplicationPaths applicatio |
| | 29 | | { |
| 21 | 30 | | _libraryManager = libraryManager; |
| 21 | 31 | | } |
| | 32 | |
|
| | 33 | | /// <summary> |
| | 34 | | /// Get children objects used to create an genre image. |
| | 35 | | /// </summary> |
| | 36 | | /// <param name="item">The genre used to create the image.</param> |
| | 37 | | /// <returns>Any relevant children objects.</returns> |
| | 38 | | protected override IReadOnlyList<BaseItem> GetItemsWithImages(BaseItem item) |
| | 39 | | { |
| 0 | 40 | | return _libraryManager.GetItemList(new InternalItemsQuery |
| 0 | 41 | | { |
| 0 | 42 | | Genres = new[] { item.Name }, |
| 0 | 43 | | IncludeItemTypes = new[] { BaseItemKind.Series, BaseItemKind.Movie }, |
| 0 | 44 | | OrderBy = new[] { (ItemSortBy.Random, SortOrder.Ascending) }, |
| 0 | 45 | | Limit = 4, |
| 0 | 46 | | Recursive = true, |
| 0 | 47 | | ImageTypes = new[] { ImageType.Primary }, |
| 0 | 48 | | DtoOptions = new DtoOptions(false) |
| 0 | 49 | | }); |
| | 50 | | } |
| | 51 | | } |
| | 52 | | } |