2014-02-06 04:39:16 +00:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-08 22:38:02 +00:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
using System;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
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>
|
2013-05-18 21:47:00 +00:00
|
|
|
|
public class CollectionFolder : Folder, ICollectionFolder
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public CollectionFolder()
|
|
|
|
|
{
|
|
|
|
|
PhysicalLocationsList = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a value indicating whether this instance is virtual folder.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value><c>true</c> if this instance is virtual folder; otherwise, <c>false</c>.</value>
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool IsVirtualFolder
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-12 19:56:40 +00:00
|
|
|
|
public string CollectionType { get; set; }
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Allow different display preferences for each collection folder
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The display prefs id.</value>
|
2014-01-17 21:18:43 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-07-27 01:15:55 +00:00
|
|
|
|
public override Guid DisplayPreferencesId
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override IEnumerable<string> PhysicalLocations
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return PhysicalLocationsList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public List<string> PhysicalLocationsList { get; set; }
|
|
|
|
|
|
2014-02-10 18:39:41 +00:00
|
|
|
|
protected override IEnumerable<FileSystemInfo> GetFileSystemChildren(IDirectoryService directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2014-02-11 21:41:01 +00:00
|
|
|
|
return CreateResolveArgs(directoryService).FileSystemChildren;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-11 21:41:01 +00:00
|
|
|
|
private ItemResolveArgs CreateResolveArgs(IDirectoryService directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
var path = ContainingFolderPath;
|
|
|
|
|
|
2014-02-13 05:11:54 +00:00
|
|
|
|
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, LibraryManager, directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
FileInfo = new DirectoryInfo(path),
|
|
|
|
|
Path = path,
|
|
|
|
|
Parent = Parent
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 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 21:41:01 +00:00
|
|
|
|
var fileSystemDictionary = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, FileSystem, Logger, args, flattenFolderDepth: flattenFolderDepth, resolveShortcuts: isPhysicalRoot || args.IsVf);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
// Need to remove subpaths that may have been resolved from shortcuts
|
|
|
|
|
// Example: if \\server\movies exists, then strip out \\server\movies\action
|
|
|
|
|
if (isPhysicalRoot)
|
|
|
|
|
{
|
|
|
|
|
var paths = LibraryManager.NormalizeRootPathList(fileSystemDictionary.Keys);
|
|
|
|
|
|
|
|
|
|
fileSystemDictionary = paths.Select(i => (FileSystemInfo)new DirectoryInfo(i)).ToDictionary(i => i.FullName);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
args.FileSystemDictionary = fileSystemDictionary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PhysicalLocationsList = args.PhysicalLocations.ToList();
|
|
|
|
|
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
// Cache this since it will be used a lot
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The null task result
|
|
|
|
|
/// </summary>
|
|
|
|
|
private static readonly Task NullTaskResult = Task.FromResult<object>(null);
|
|
|
|
|
|
|
|
|
|
/// <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>
|
2014-02-06 22:22:03 +00:00
|
|
|
|
/// <param name="refreshChildMetadata">if set to <c>true</c> [refresh child metadata].</param>
|
|
|
|
|
/// <param name="refreshOptions">The refresh options.</param>
|
2014-02-10 18:39:41 +00:00
|
|
|
|
/// <param name="directoryService">The directory service.</param>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <returns>Task.</returns>
|
2014-02-10 18:39:41 +00:00
|
|
|
|
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-02-11 21:41:01 +00:00
|
|
|
|
CreateResolveArgs(directoryService);
|
2013-09-20 00:53:18 +00:00
|
|
|
|
ResetDynamicChildren();
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
return NullTaskResult;
|
|
|
|
|
}
|
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
private List<LinkedChild> _linkedChildren;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Our children are actually just references to the ones in the physical root...
|
|
|
|
|
/// </summary>
|
2013-08-19 21:17:03 +00:00
|
|
|
|
/// <value>The linked children.</value>
|
|
|
|
|
public override List<LinkedChild> LinkedChildren
|
|
|
|
|
{
|
2013-09-19 15:12:54 +00:00
|
|
|
|
get { return _linkedChildren ?? (_linkedChildren = GetLinkedChildrenInternal()); }
|
|
|
|
|
set
|
2013-08-19 21:17:03 +00:00
|
|
|
|
{
|
2013-09-19 15:12:54 +00:00
|
|
|
|
base.LinkedChildren = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private List<LinkedChild> GetLinkedChildrenInternal()
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, string> locationsDicionary;
|
2013-08-19 21:17:03 +00:00
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2014-03-02 18:01:46 +00:00
|
|
|
|
locationsDicionary = PhysicalLocations.Distinct(StringComparer.OrdinalIgnoreCase).ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
|
2013-08-19 21:17:03 +00:00
|
|
|
|
}
|
2013-09-19 15:12:54 +00:00
|
|
|
|
catch (IOException ex)
|
2013-08-19 21:17:03 +00:00
|
|
|
|
{
|
2013-09-19 15:12:54 +00:00
|
|
|
|
Logger.ErrorException("Error getting ResolveArgs for {0}", ex, Path);
|
|
|
|
|
return new List<LinkedChild>();
|
2013-08-19 21:17:03 +00:00
|
|
|
|
}
|
2013-09-19 15:12:54 +00:00
|
|
|
|
|
|
|
|
|
return LibraryManager.RootFolder.Children
|
|
|
|
|
.OfType<Folder>()
|
|
|
|
|
.Where(i => i.Path != null && locationsDicionary.ContainsKey(i.Path))
|
2013-09-20 00:53:18 +00:00
|
|
|
|
.SelectMany(c => c.LinkedChildren)
|
|
|
|
|
.ToList();
|
2013-08-19 21:17:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
private IEnumerable<BaseItem> _actualChildren;
|
|
|
|
|
|
2013-08-19 21:17:03 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Our children are actually just references to the ones in the physical root...
|
|
|
|
|
/// </summary>
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <value>The actual children.</value>
|
2013-09-19 00:37:01 +00:00
|
|
|
|
protected override IEnumerable<BaseItem> ActualChildren
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-09-19 15:12:54 +00:00
|
|
|
|
get { return _actualChildren ?? (_actualChildren = GetActualChildren()); }
|
|
|
|
|
}
|
2013-06-20 18:07:58 +00:00
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
private IEnumerable<BaseItem> GetActualChildren()
|
|
|
|
|
{
|
|
|
|
|
Dictionary<string, string> locationsDicionary;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2014-03-02 18:01:46 +00:00
|
|
|
|
locationsDicionary = PhysicalLocations.Distinct(StringComparer.OrdinalIgnoreCase).ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-09-19 15:12:54 +00:00
|
|
|
|
catch (IOException ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error getting ResolveArgs for {0}", ex, Path);
|
|
|
|
|
return new BaseItem[] { };
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return
|
|
|
|
|
LibraryManager.RootFolder.Children
|
|
|
|
|
.OfType<Folder>()
|
|
|
|
|
.Where(i => i.Path != null && locationsDicionary.ContainsKey(i.Path))
|
2013-09-20 00:53:18 +00:00
|
|
|
|
.SelectMany(c => c.Children)
|
|
|
|
|
.ToList();
|
2013-09-19 15:12:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void ResetDynamicChildren()
|
|
|
|
|
{
|
|
|
|
|
_actualChildren = null;
|
|
|
|
|
_linkedChildren = null;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|