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