| | 1 | | #pragma warning disable CS1591 |
| | 2 | |
|
| | 3 | | using System.Collections.Generic; |
| | 4 | | using System.Linq; |
| | 5 | | using System.Text.Json.Serialization; |
| | 6 | | using Jellyfin.Data.Enums; |
| | 7 | | using Jellyfin.Database.Implementations.Entities; |
| | 8 | | using MediaBrowser.Common; |
| | 9 | | using MediaBrowser.Controller.Entities; |
| | 10 | | using MediaBrowser.Controller.Playlists; |
| | 11 | | using MediaBrowser.Model.Querying; |
| | 12 | |
|
| | 13 | | namespace Emby.Server.Implementations.Playlists |
| | 14 | | { |
| | 15 | | [RequiresSourceSerialisation] |
| | 16 | | public class PlaylistsFolder : BasePluginFolder |
| | 17 | | { |
| 91 | 18 | | public PlaylistsFolder() |
| | 19 | | { |
| 91 | 20 | | Name = "Playlists"; |
| 91 | 21 | | } |
| | 22 | |
|
| | 23 | | [JsonIgnore] |
| 0 | 24 | | public override bool IsHidden => true; |
| | 25 | |
|
| | 26 | | [JsonIgnore] |
| 3 | 27 | | public override bool SupportsInheritedParentImages => false; |
| | 28 | |
|
| | 29 | | [JsonIgnore] |
| 4 | 30 | | public override CollectionType? CollectionType => Jellyfin.Data.Enums.CollectionType.playlists; |
| | 31 | |
|
| | 32 | | protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user) |
| | 33 | | { |
| 0 | 34 | | return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>(); |
| | 35 | | } |
| | 36 | |
|
| | 37 | | protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query) |
| | 38 | | { |
| 1 | 39 | | if (query.User is null) |
| | 40 | | { |
| 0 | 41 | | query.Recursive = false; |
| 0 | 42 | | return base.GetItemsInternal(query); |
| | 43 | | } |
| | 44 | |
|
| 1 | 45 | | query.Recursive = true; |
| 1 | 46 | | query.IncludeItemTypes = new[] { BaseItemKind.Playlist }; |
| 1 | 47 | | return QueryWithPostFiltering2(query); |
| | 48 | | } |
| | 49 | |
|
| | 50 | | public override string GetClientTypeName() |
| | 51 | | { |
| 4 | 52 | | return "ManualPlaylistsFolder"; |
| | 53 | | } |
| | 54 | | } |
| | 55 | | } |