Files
jellyfin-jellyfin-1/MediaBrowser.Controller/Entities/UserRootFolder.cs

36 lines
1.2 KiB
C#
Raw Normal View History

2014-02-13 00:11:54 -05:00
using MediaBrowser.Controller.Providers;
2014-02-10 15:11:46 -05:00
using System.Collections.Generic;
using System.Linq;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Special class used for User Roots. Children contain actual ones defined for this user
/// PLUS the virtual folders from the physical root (added by plug-ins).
/// </summary>
public class UserRootFolder : Folder
{
/// <summary>
/// Get the children of this folder from the actual file system
/// </summary>
/// <returns>IEnumerable{BaseItem}.</returns>
2014-02-10 13:39:41 -05:00
protected override IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService)
2013-02-20 20:33:05 -05:00
{
2014-02-08 17:38:02 -05:00
return base.GetNonCachedChildren(directoryService).Concat(LibraryManager.RootFolder.VirtualChildren);
2013-02-20 20:33:05 -05:00
}
2014-02-10 15:11:46 -05:00
2014-02-13 00:11:54 -05:00
public override bool BeforeMetadataRefresh()
2014-02-10 15:11:46 -05:00
{
2014-02-13 00:11:54 -05:00
var hasChanges = base.BeforeMetadataRefresh();
2014-02-10 15:11:46 -05:00
if (string.Equals("default", Name, System.StringComparison.OrdinalIgnoreCase))
{
2014-02-21 00:04:11 -05:00
Name = "Media Folders";
2014-02-13 00:11:54 -05:00
hasChanges = true;
2014-02-10 15:11:46 -05:00
}
2014-02-13 00:11:54 -05:00
return hasChanges;
2014-02-10 15:11:46 -05:00
}
2013-02-20 20:33:05 -05:00
}
}