77 lines
2.0 KiB
C#
77 lines
2.0 KiB
C#
using MediaBrowser.Common.Configuration;
|
|
using MediaBrowser.Controller.Entities;
|
|
using MediaBrowser.Controller.Playlists;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using MediaBrowser.Model.IO;
|
|
using MediaBrowser.Model.Querying;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Common.IO;
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Playlists
|
|
{
|
|
public class PlaylistsFolder : BasePluginFolder
|
|
{
|
|
public PlaylistsFolder()
|
|
{
|
|
Name = "Playlists";
|
|
}
|
|
|
|
public override bool IsVisible(User user)
|
|
{
|
|
return base.IsVisible(user) && GetChildren(user, true).Any();
|
|
}
|
|
|
|
protected override IEnumerable<BaseItem> GetEligibleChildrenForRecursiveChildren(User user)
|
|
{
|
|
return base.GetEligibleChildrenForRecursiveChildren(user).OfType<Playlist>();
|
|
}
|
|
|
|
public override bool IsHidden
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public override string CollectionType
|
|
{
|
|
get { return Model.Entities.CollectionType.Playlists; }
|
|
}
|
|
|
|
protected override Task<QueryResult<BaseItem>> GetItemsInternal(InternalItemsQuery query)
|
|
{
|
|
query.Recursive = false;
|
|
return base.GetItemsInternal(query);
|
|
}
|
|
}
|
|
|
|
public class PlaylistsDynamicFolder : IVirtualFolderCreator
|
|
{
|
|
private readonly IApplicationPaths _appPaths;
|
|
private readonly IFileSystem _fileSystem;
|
|
|
|
public PlaylistsDynamicFolder(IApplicationPaths appPaths, IFileSystem fileSystem)
|
|
{
|
|
_appPaths = appPaths;
|
|
_fileSystem = fileSystem;
|
|
}
|
|
|
|
public BasePluginFolder GetFolder()
|
|
{
|
|
var path = Path.Combine(_appPaths.DataPath, "playlists");
|
|
|
|
_fileSystem.CreateDirectory(path);
|
|
|
|
return new PlaylistsFolder
|
|
{
|
|
Path = path
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|