2014-08-11 16:41:11 -07:00
|
|
|
|
using MediaBrowser.Common.Configuration;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-08-02 19:16:37 -07:00
|
|
|
|
using MediaBrowser.Controller.Playlists;
|
2014-08-11 16:41:11 -07:00
|
|
|
|
using System.Collections.Generic;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2015-10-03 21:23:11 -07:00
|
|
|
|
using CommonIO;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Playlists
|
|
|
|
|
{
|
|
|
|
|
public class PlaylistsFolder : BasePluginFolder
|
|
|
|
|
{
|
|
|
|
|
public PlaylistsFolder()
|
|
|
|
|
{
|
|
|
|
|
Name = "Playlists";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsVisible(User user)
|
|
|
|
|
{
|
2015-07-29 13:31:15 -07:00
|
|
|
|
return base.IsVisible(user) && GetChildren(user, false).Any();
|
2014-08-02 19:16:37 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
|
|
|
|
{
|
2015-01-24 23:34:50 -07:00
|
|
|
|
return GetRecursiveChildren(i => i is Playlist);
|
2014-08-01 19:34:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool IsHidden
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override string CollectionType
|
|
|
|
|
{
|
|
|
|
|
get { return Model.Entities.CollectionType.Playlists; }
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-04-06 13:43:40 -07:00
|
|
|
|
public class PlaylistsDynamicFolder : IVirtualFolderCreator
|
2014-08-01 19:34:45 -07:00
|
|
|
|
{
|
|
|
|
|
private readonly IApplicationPaths _appPaths;
|
2015-09-13 16:07:54 -07:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2015-09-13 16:07:54 -07:00
|
|
|
|
public PlaylistsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
|
2014-08-01 19:34:45 -07:00
|
|
|
|
{
|
|
|
|
|
_appPaths = appPaths;
|
2015-09-13 16:07:54 -07:00
|
|
|
|
_fileSystem = fileSystem;
|
2014-08-01 19:34:45 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BasePluginFolder GetFolder()
|
|
|
|
|
{
|
2014-08-14 06:24:30 -07:00
|
|
|
|
var path = Path.Combine(_appPaths.DataPath, "playlists");
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
2015-09-13 14:32:02 -07:00
|
|
|
|
_fileSystem.CreateDirectory(path);
|
2014-08-01 19:34:45 -07:00
|
|
|
|
|
|
|
|
|
return new PlaylistsFolder
|
|
|
|
|
{
|
|
|
|
|
Path = path
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|