jellyfin/MediaBrowser.Controller/Entities/CollectionFolder.cs

249 lines
8.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.IO;
using MediaBrowser.Controller.Library;
2014-02-08 23:38:02 +01:00
using MediaBrowser.Controller.Providers;
using System;
2013-02-21 02:33:05 +01:00
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Threading;
using System.Threading.Tasks;
2015-10-04 06:23:11 +02:00
using CommonIO;
2016-04-27 19:53:23 +02:00
using MoreLinq;
2013-02-21 02:33:05 +01:00
namespace MediaBrowser.Controller.Entities
{
/// <summary>
/// Specialized Folder class that points to a subset of the physical folders in the system.
/// It is created from the user-specific folders within the system root
/// </summary>
public class CollectionFolder : Folder, ICollectionFolder
2013-02-21 02:33:05 +01:00
{
public CollectionFolder()
{
PhysicalLocationsList = new List<string>();
}
2015-08-15 03:44:30 +02:00
[IgnoreDataMember]
protected override bool SupportsShortcutChildren
{
get
{
return true;
}
}
2015-02-06 06:39:07 +01:00
public override bool CanDelete()
{
return false;
}
2013-07-12 21:56:40 +02:00
public string CollectionType { get; set; }
2013-02-21 02:33:05 +01:00
/// <summary>
/// Allow different display preferences for each collection folder
/// </summary>
/// <value>The display prefs id.</value>
2014-01-17 22:18:43 +01:00
[IgnoreDataMember]
public override Guid DisplayPreferencesId
2013-02-21 02:33:05 +01:00
{
get
{
return Id;
}
}
[IgnoreDataMember]
public override IEnumerable<string> PhysicalLocations
{
get
{
return PhysicalLocationsList;
}
}
2015-02-19 20:00:56 +01:00
public override bool IsSaveLocalMetadataEnabled()
{
return true;
}
public List<string> PhysicalLocationsList { get; set; }
2015-10-04 05:38:46 +02:00
protected override IEnumerable<FileSystemMetadata> GetFileSystemChildren(IDirectoryService directoryService)
{
2016-05-19 21:57:30 +02:00
return CreateResolveArgs(directoryService, true).FileSystemChildren;
}
private bool _requiresRefresh;
public override bool RequiresRefresh()
{
var changed = base.RequiresRefresh() || _requiresRefresh;
if (!changed)
{
var locations = PhysicalLocations.ToList();
var newLocations = CreateResolveArgs(new DirectoryService(BaseItem.FileSystem), false).PhysicalLocations.ToList();
if (!locations.SequenceEqual(newLocations))
{
changed = true;
}
}
return changed;
}
public override bool BeforeMetadataRefresh()
{
var changed = base.BeforeMetadataRefresh() || _requiresRefresh;
_requiresRefresh = false;
return changed;
}
2014-12-24 07:28:40 +01:00
internal override bool IsValidFromResolver(BaseItem newItem)
{
var newCollectionFolder = newItem as CollectionFolder;
if (newCollectionFolder != null)
{
if (!string.Equals(CollectionType, newCollectionFolder.CollectionType, StringComparison.OrdinalIgnoreCase))
{
return false;
}
}
return base.IsValidFromResolver(newItem);
}
2016-05-19 21:57:30 +02:00
private ItemResolveArgs CreateResolveArgs(IDirectoryService directoryService, bool setPhysicalLocations)
{
var path = ContainingFolderPath;
2015-01-27 23:45:59 +01:00
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, directoryService)
{
2015-10-04 05:38:46 +02:00
FileInfo = FileSystem.GetDirectoryInfo(path),
Path = path,
2014-10-23 06:26:01 +02:00
Parent = Parent,
CollectionType = CollectionType
};
// Gather child folder and files
if (args.IsDirectory)
{
var isPhysicalRoot = args.IsPhysicalRoot;
// When resolving the root, we need it's grandchildren (children of user views)
var flattenFolderDepth = isPhysicalRoot ? 2 : 0;
2014-02-11 22:41:01 +01:00
var fileSystemDictionary = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, FileSystem, Logger, args, flattenFolderDepth: flattenFolderDepth, resolveShortcuts: isPhysicalRoot || args.IsVf);
// Need to remove subpaths that may have been resolved from shortcuts
// Example: if \\server\movies exists, then strip out \\server\movies\action
if (isPhysicalRoot)
{
2015-11-13 21:49:21 +01:00
var paths = LibraryManager.NormalizeRootPathList(fileSystemDictionary.Values);
2015-11-13 21:49:21 +01:00
fileSystemDictionary = paths.ToDictionary(i => i.FullName);
}
args.FileSystemDictionary = fileSystemDictionary;
}
2016-05-19 21:57:30 +02:00
_requiresRefresh = _requiresRefresh || !args.PhysicalLocations.SequenceEqual(PhysicalLocations);
if (setPhysicalLocations)
{
PhysicalLocationsList = args.PhysicalLocations.ToList();
}
return args;
}
2013-02-21 02:33:05 +01:00
/// <summary>
/// Compare our current children (presumably just read from the repo) with the current state of the file system and adjust for any changes
/// ***Currently does not contain logic to maintain items that are unavailable in the file system***
/// </summary>
/// <param name="progress">The progress.</param>
/// <param name="cancellationToken">The cancellation token.</param>
/// <param name="recursive">if set to <c>true</c> [recursive].</param>
/// <param name="refreshChildMetadata">if set to <c>true</c> [refresh child metadata].</param>
/// <param name="refreshOptions">The refresh options.</param>
2014-02-10 19:39:41 +01:00
/// <param name="directoryService">The directory service.</param>
2013-02-21 02:33:05 +01:00
/// <returns>Task.</returns>
2015-01-27 07:50:40 +01:00
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
2013-02-21 02:33:05 +01:00
{
2015-01-27 07:50:40 +01:00
return Task.FromResult(true);
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Our children are actually just references to the ones in the physical root...
/// </summary>
/// <value>The linked children.</value>
public override List<LinkedChild> LinkedChildren
{
2014-04-22 19:25:54 +02:00
get { return GetLinkedChildrenInternal(); }
set
{
base.LinkedChildren = value;
}
}
private List<LinkedChild> GetLinkedChildrenInternal()
{
2015-11-14 19:57:26 +01:00
return GetPhysicalParents()
.SelectMany(c => c.LinkedChildren)
.ToList();
}
/// <summary>
/// Our children are actually just references to the ones in the physical root...
/// </summary>
2013-02-21 02:33:05 +01:00
/// <value>The actual children.</value>
2016-05-19 21:06:58 +02:00
[IgnoreDataMember]
2013-09-19 02:37:01 +02:00
protected override IEnumerable<BaseItem> ActualChildren
2013-02-21 02:33:05 +01:00
{
2014-05-14 16:15:33 +02:00
get { return GetActualChildren(); }
}
private IEnumerable<BaseItem> GetActualChildren()
{
2015-11-14 19:57:26 +01:00
return GetPhysicalParents().SelectMany(c => c.Children);
}
public IEnumerable<Folder> GetPhysicalParents()
{
2016-04-27 19:53:23 +02:00
var rootChildren = LibraryManager.RootFolder.Children
.OfType<Folder>()
2016-04-27 19:53:23 +02:00
.ToList();
return PhysicalLocations.Where(i => !string.Equals(i, Path, StringComparison.OrdinalIgnoreCase)).SelectMany(i => GetPhysicalParents(i, rootChildren)).DistinctBy(i => i.Id);
}
private IEnumerable<Folder> GetPhysicalParents(string path, List<Folder> rootChildren)
{
var result = rootChildren
.Where(i => string.Equals(i.Path, path, StringComparison.OrdinalIgnoreCase))
.ToList();
if (result.Count == 0)
{
var folder = LibraryManager.FindByPath(path, true) as Folder;
if (folder != null)
{
result.Add(folder);
}
}
return result;
}
2015-06-29 03:10:45 +02:00
[IgnoreDataMember]
public override bool SupportsPeople
{
get
{
return false;
}
}
2013-02-21 02:33:05 +01:00
}
}