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

71 lines
1.7 KiB
C#
Raw Normal View History

2014-08-12 01:41:11 +02:00
using MediaBrowser.Common.Configuration;
2014-08-02 04:34:45 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Playlists;
2014-08-12 01:41:11 +02:00
using System.Collections.Generic;
2014-08-02 04:34:45 +02: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 07:15:15 +01:00
return base.IsVisible(user) && GetChildren(user, false)
.OfType<Playlist>()
2014-12-13 04:56:30 +01:00
.Any(i => i.IsVisible(user));
}
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
{
2015-01-25 07:34:50 +01:00
return GetRecursiveChildren(i => i is Playlist);
2014-08-02 04:34:45 +02: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 15:24:30 +02:00
var path = Path.Combine(_appPaths.DataPath, "playlists");
2014-08-02 04:34:45 +02:00
Directory.CreateDirectory(path);
return new PlaylistsFolder
{
Path = path
};
}
}
}