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;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-10-12 18:23:09 +00:00
|
|
|
|
using MediaBrowser.Model.Querying;
|
|
|
|
|
using System.Threading.Tasks;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
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)
|
|
|
|
|
{
|
2016-10-11 21:33:38 +00:00
|
|
|
|
return base.IsVisible(user) && GetChildren(user, true).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; }
|
|
|
|
|
}
|
2016-10-12 18:23:09 +00:00
|
|
|
|
|
|
|
|
|
protected override Task<QueryResult<BaseItem>> GetItemsInternal(InternalItemsQuery query)
|
|
|
|
|
{
|
|
|
|
|
query.Recursive = false;
|
|
|
|
|
return base.GetItemsInternal(query);
|
|
|
|
|
}
|
2014-08-02 02:34:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
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
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|