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

67 lines
1.6 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;
2015-10-04 06:23:11 +02:00
using CommonIO;
2014-08-02 04:34:45 +02:00
namespace MediaBrowser.Server.Implementations.Playlists
{
public class PlaylistsFolder : BasePluginFolder
{
public PlaylistsFolder()
{
Name = "Playlists";
}
public override bool IsVisible(User user)
{
2016-10-11 23:33:38 +02:00
return base.IsVisible(user) && GetChildren(user, true).Any();
}
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
{
return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>();
2014-08-02 04:34:45 +02:00
}
public override bool IsHidden
{
get
{
return true;
}
}
public override string CollectionType
{
get { return Model.Entities.CollectionType.Playlists; }
}
}
2015-04-06 22:43:40 +02:00
public class PlaylistsDynamicFolder : IVirtualFolderCreator
2014-08-02 04:34:45 +02:00
{
private readonly IApplicationPaths _appPaths;
2015-09-14 01:07:54 +02:00
private readonly IFileSystem _fileSystem;
2014-08-02 04:34:45 +02:00
2015-09-14 01:07:54 +02:00
public PlaylistsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
2014-08-02 04:34:45 +02:00
{
_appPaths = appPaths;
2015-09-14 01:07:54 +02:00
_fileSystem = fileSystem;
2014-08-02 04:34:45 +02:00
}
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
2015-09-13 23:32:02 +02:00
_fileSystem.CreateDirectory(path);
2014-08-02 04:34:45 +02:00
return new PlaylistsFolder
{
Path = path
};
}
}
}