jellyfin/MediaBrowser.Server.Implementations/Playlists/ManualPlaylistsFolder.cs

71 lines
1.7 KiB
C#
Raw Normal View History

2014-08-11 23:41:11 +00:00
using MediaBrowser.Common.Configuration;
2014-08-02 02:34:45 +00:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Playlists;
2014-08-11 23:41:11 +00:00
using System.Collections.Generic;
2014-08-02 02:34:45 +00:00
using System.IO;
using System.Linq;
namespace MediaBrowser.Server.Implementations.Playlists
{
public class PlaylistsFolder : BasePluginFolder
{
public PlaylistsFolder()
{
Name = "Playlists";
}
public override bool IsVisible(User user)
{
2015-01-23 06:15:15 +00:00
return base.IsVisible(user) && GetChildren(user, false)
.OfType<Playlist>()
2014-12-13 03:56:30 +00:00
.Any(i => i.IsVisible(user));
}
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
{
2015-01-25 06:34:50 +00:00
return GetRecursiveChildren(i => i is Playlist);
2014-08-02 02:34:45 +00:00
}
public override bool IsHidden
{
get
{
return true;
}
}
public override bool IsHiddenFromUser(User user)
{
return false;
}
public override string CollectionType
{
get { return Model.Entities.CollectionType.Playlists; }
}
}
public class PlaylistssDynamicFolder : IVirtualFolderCreator
{
private readonly IApplicationPaths _appPaths;
public PlaylistssDynamicFolder(IApplicationPaths appPaths)
{
_appPaths = appPaths;
}
public BasePluginFolder GetFolder()
{
2014-08-14 13:24:30 +00:00
var path = Path.Combine(_appPaths.DataPath, "playlists");
2014-08-02 02:34:45 +00:00
Directory.CreateDirectory(path);
return new PlaylistsFolder
{
Path = path
};
}
}
}