jellyfin/MediaBrowser.Controller/Entities/UserRootFolder.cs

36 lines
1.2 KiB
C#
Raw Normal View History

2014-02-13 06:11:54 +01:00
using MediaBrowser.Controller.Providers;
2014-02-10 21:11:46 +01:00
using System.Collections.Generic;
using System.Linq;
2013-02-21 02:33:05 +01: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 19:39:41 +01:00
protected override IEnumerable<BaseItem> GetNonCachedChildren(IDirectoryService directoryService)
2013-02-21 02:33:05 +01:00
{
2014-02-08 23:38:02 +01:00
return base.GetNonCachedChildren(directoryService).Concat(LibraryManager.RootFolder.VirtualChildren);
2013-02-21 02:33:05 +01:00
}
2014-02-10 21:11:46 +01:00
2014-02-13 06:11:54 +01:00
public override bool BeforeMetadataRefresh()
2014-02-10 21:11:46 +01:00
{
2014-02-13 06:11:54 +01:00
var hasChanges = base.BeforeMetadataRefresh();
2014-02-10 21:11:46 +01:00
if (string.Equals("default", Name, System.StringComparison.OrdinalIgnoreCase))
{
2014-02-21 06:04:11 +01:00
Name = "Media Folders";
2014-02-13 06:11:54 +01:00
hasChanges = true;
2014-02-10 21:11:46 +01:00
}
2014-02-13 06:11:54 +01:00
return hasChanges;
2014-02-10 21:11:46 +01:00
}
2013-02-21 02:33:05 +01:00
}
}