2014-08-11 23:41:11 +00:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-08-03 02:16:37 +00:00
|
|
|
|
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;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Playlists
|
|
|
|
|
{
|
|
|
|
|
public class PlaylistsFolder : BasePluginFolder
|
|
|
|
|
{
|
|
|
|
|
public PlaylistsFolder()
|
|
|
|
|
{
|
|
|
|
|
Name = "Playlists";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsVisible(User user)
|
|
|
|
|
{
|
2015-07-29 20:31:15 +00:00
|
|
|
|
return base.IsVisible(user) && GetChildren(user, false).Any();
|
2014-08-03 02:16:37 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>();
|
2014-08-02 02:34:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsHidden
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string CollectionType
|
|
|
|
|
{
|
|
|
|
|
get { return Model.Entities.CollectionType.Playlists; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-06 20:43:40 +00:00
|
|
|
|
public class PlaylistsDynamicFolder : IVirtualFolderCreator
|
2014-08-02 02:34:45 +00:00
|
|
|
|
{
|
|
|
|
|
private readonly IApplicationPaths _appPaths;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
|
2015-09-13 23:07:54 +00:00
|
|
|
|
public PlaylistsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
|
2014-08-02 02:34:45 +00:00
|
|
|
|
{
|
|
|
|
|
_appPaths = appPaths;
|
2015-09-13 23:07:54 +00:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-08-02 02:34:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
2015-09-13 21:32:02 +00:00
|
|
|
|
_fileSystem.CreateDirectory(path);
|
2014-08-02 02:34:45 +00:00
|
|
|
|
|
|
|
|
|
return new PlaylistsFolder
|
|
|
|
|
{
|
|
|
|
|
Path = path
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|