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