2020-05-29 09:28:19 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-01-13 19:54:44 +00:00
|
|
|
using System.Collections.Generic;
|
2014-08-02 02:34:45 +00:00
|
|
|
using System.Linq;
|
2019-10-15 15:49:49 +00:00
|
|
|
using System.Text.Json.Serialization;
|
2020-05-20 17:07:53 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2021-12-12 02:31:30 +00:00
|
|
|
using Jellyfin.Data.Enums;
|
2016-11-11 03:29:51 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
2016-10-12 18:23:09 +00:00
|
|
|
using MediaBrowser.Model.Querying;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
2017-08-16 17:30:16 +00:00
|
|
|
namespace Emby.Server.Implementations.Playlists
|
2014-08-02 02:34:45 +00:00
|
|
|
{
|
|
|
|
public class PlaylistsFolder : BasePluginFolder
|
|
|
|
{
|
|
|
|
public PlaylistsFolder()
|
|
|
|
{
|
|
|
|
Name = "Playlists";
|
|
|
|
}
|
|
|
|
|
2021-09-25 18:32:53 +00:00
|
|
|
[JsonIgnore]
|
|
|
|
public override bool IsHidden => true;
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public override bool SupportsInheritedParentImages => false;
|
|
|
|
|
|
|
|
[JsonIgnore]
|
|
|
|
public override string CollectionType => MediaBrowser.Model.Entities.CollectionType.Playlists;
|
|
|
|
|
2020-05-20 17:07:53 +00:00
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
2014-08-03 02:16:37 +00:00
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>();
|
2014-08-02 02:34:45 +00:00
|
|
|
}
|
|
|
|
|
2017-05-26 06:48:54 +00:00
|
|
|
protected override QueryResult<BaseItem> GetItemsInternal(InternalItemsQuery query)
|
2016-10-12 18:23:09 +00:00
|
|
|
{
|
2022-12-05 14:00:20 +00:00
|
|
|
if (query.User is null)
|
2018-09-12 17:26:21 +00:00
|
|
|
{
|
|
|
|
query.Recursive = false;
|
|
|
|
return base.GetItemsInternal(query);
|
|
|
|
}
|
|
|
|
|
|
|
|
query.Recursive = true;
|
2021-12-12 02:31:30 +00:00
|
|
|
query.IncludeItemTypes = new[] { BaseItemKind.Playlist };
|
2023-05-26 08:59:49 +00:00
|
|
|
return QueryWithPostFiltering2(query);
|
2016-10-12 18:23:09 +00:00
|
|
|
}
|
2021-02-13 14:28:37 +00:00
|
|
|
|
|
|
|
public override string GetClientTypeName()
|
|
|
|
{
|
|
|
|
return "ManualPlaylistsFolder";
|
|
|
|
}
|
2014-08-02 02:34:45 +00:00
|
|
|
}
|
|
|
|
}
|