2014-02-05 21:39:16 -07:00
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2014-02-08 15:38:02 -07:00
|
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-05 21:39:16 -07:00
|
|
|
|
using System;
|
2013-02-20 18:33:05 -07:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-03 21:23:11 -07:00
|
|
|
|
using CommonIO;
|
2015-10-03 20:38:46 -07:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2013-02-20 18:33:05 -07: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>
|
2013-05-18 14:47:00 -07:00
|
|
|
|
public class CollectionFolder : Folder, ICollectionFolder
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-02-05 21:39:16 -07:00
|
|
|
|
public CollectionFolder()
|
|
|
|
|
{
|
|
|
|
|
PhysicalLocationsList = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 18:33:05 -07: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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-14 18:44:30 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected override bool SupportsShortcutChildren
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-05 22:39:07 -07:00
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-12 12:56:40 -07:00
|
|
|
|
public string CollectionType { get; set; }
|
|
|
|
|
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Allow different display preferences for each collection folder
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The display prefs id.</value>
|
2014-01-17 14:18:43 -07:00
|
|
|
|
[IgnoreDataMember]
|
2013-07-26 18:15:55 -07:00
|
|
|
|
public override Guid DisplayPreferencesId
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return Id;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override IEnumerable<string> PhysicalLocations
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return PhysicalLocationsList;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 12:00:56 -07:00
|
|
|
|
public override bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-05 21:39:16 -07:00
|
|
|
|
public List<string> PhysicalLocationsList { get; set; }
|
|
|
|
|
|
2015-10-03 20:38:46 -07:00
|
|
|
|
protected override IEnumerable<FileSystemMetadata> GetFileSystemChildren(IDirectoryService directoryService)
|
2014-02-05 21:39:16 -07:00
|
|
|
|
{
|
2014-02-11 14:41:01 -07:00
|
|
|
|
return CreateResolveArgs(directoryService).FileSystemChildren;
|
2014-02-05 21:39:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-23 23:28:40 -07: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);
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-11 14:41:01 -07:00
|
|
|
|
private ItemResolveArgs CreateResolveArgs(IDirectoryService directoryService)
|
2014-02-05 21:39:16 -07:00
|
|
|
|
{
|
|
|
|
|
var path = ContainingFolderPath;
|
|
|
|
|
|
2015-01-27 15:45:59 -07:00
|
|
|
|
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, directoryService)
|
2014-02-05 21:39:16 -07:00
|
|
|
|
{
|
2015-10-03 20:38:46 -07:00
|
|
|
|
FileInfo = FileSystem.GetDirectoryInfo(path),
|
2014-02-05 21:39:16 -07:00
|
|
|
|
Path = path,
|
2014-10-22 21:26:01 -07:00
|
|
|
|
Parent = Parent,
|
|
|
|
|
CollectionType = CollectionType
|
2014-02-05 21:39:16 -07:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// 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 14:41:01 -07:00
|
|
|
|
var fileSystemDictionary = FileData.GetFilteredFileSystemEntries(directoryService, args.Path, FileSystem, Logger, args, flattenFolderDepth: flattenFolderDepth, resolveShortcuts: isPhysicalRoot || args.IsVf);
|
2014-02-05 21:39:16 -07: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)
|
|
|
|
|
{
|
2015-11-13 13:45:19 -07:00
|
|
|
|
var paths = LibraryManager.NormalizeRootPathList(fileSystemDictionary.Values);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
|
2015-11-13 13:45:19 -07:00
|
|
|
|
fileSystemDictionary = paths.ToDictionary(i => i.FullName);
|
2014-02-05 21:39:16 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
args.FileSystemDictionary = fileSystemDictionary;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PhysicalLocationsList = args.PhysicalLocations.ToList();
|
|
|
|
|
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-20 18:33:05 -07: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>
|
2014-02-06 15:22:03 -07:00
|
|
|
|
/// <param name="refreshChildMetadata">if set to <c>true</c> [refresh child metadata].</param>
|
|
|
|
|
/// <param name="refreshOptions">The refresh options.</param>
|
2014-02-10 11:39:41 -07:00
|
|
|
|
/// <param name="directoryService">The directory service.</param>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <returns>Task.</returns>
|
2015-01-26 23:50:40 -07:00
|
|
|
|
protected override Task ValidateChildrenInternal(IProgress<double> progress, CancellationToken cancellationToken, bool recursive, bool refreshChildMetadata, MetadataRefreshOptions refreshOptions, IDirectoryService directoryService)
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-06-03 20:34:36 -07:00
|
|
|
|
var list = PhysicalLocationsList.ToList();
|
|
|
|
|
|
2014-02-11 14:41:01 -07:00
|
|
|
|
CreateResolveArgs(directoryService);
|
2013-09-19 17:53:18 -07:00
|
|
|
|
|
2014-06-03 20:34:36 -07:00
|
|
|
|
if (!list.SequenceEqual(PhysicalLocationsList))
|
|
|
|
|
{
|
2015-01-26 23:50:40 -07:00
|
|
|
|
return UpdateToRepository(ItemUpdateType.MetadataImport, cancellationToken);
|
2014-06-03 20:34:36 -07:00
|
|
|
|
}
|
2015-01-26 23:50:40 -07:00
|
|
|
|
|
|
|
|
|
return Task.FromResult(true);
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Our children are actually just references to the ones in the physical root...
|
|
|
|
|
/// </summary>
|
2013-08-19 14:17:03 -07:00
|
|
|
|
/// <value>The linked children.</value>
|
|
|
|
|
public override List<LinkedChild> LinkedChildren
|
|
|
|
|
{
|
2014-04-22 10:25:54 -07:00
|
|
|
|
get { return GetLinkedChildrenInternal(); }
|
2013-09-19 08:12:54 -07:00
|
|
|
|
set
|
2013-08-19 14:17:03 -07:00
|
|
|
|
{
|
2013-09-19 08:12:54 -07:00
|
|
|
|
base.LinkedChildren = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private List<LinkedChild> GetLinkedChildrenInternal()
|
|
|
|
|
{
|
|
|
|
|
return LibraryManager.RootFolder.Children
|
|
|
|
|
.OfType<Folder>()
|
2014-03-20 08:55:22 -07:00
|
|
|
|
.Where(i => i.Path != null && PhysicalLocations.Contains(i.Path, StringComparer.OrdinalIgnoreCase))
|
2013-09-19 17:53:18 -07:00
|
|
|
|
.SelectMany(c => c.LinkedChildren)
|
|
|
|
|
.ToList();
|
2013-08-19 14:17:03 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Our children are actually just references to the ones in the physical root...
|
|
|
|
|
/// </summary>
|
2013-02-20 18:33:05 -07:00
|
|
|
|
/// <value>The actual children.</value>
|
2013-09-18 17:37:01 -07:00
|
|
|
|
protected override IEnumerable<BaseItem> ActualChildren
|
2013-02-20 18:33:05 -07:00
|
|
|
|
{
|
2014-05-14 07:15:33 -07:00
|
|
|
|
get { return GetActualChildren(); }
|
2013-09-19 08:12:54 -07:00
|
|
|
|
}
|
2013-06-20 11:07:58 -07:00
|
|
|
|
|
2013-09-19 08:12:54 -07:00
|
|
|
|
private IEnumerable<BaseItem> GetActualChildren()
|
|
|
|
|
{
|
|
|
|
|
return
|
|
|
|
|
LibraryManager.RootFolder.Children
|
|
|
|
|
.OfType<Folder>()
|
2014-03-20 08:55:22 -07:00
|
|
|
|
.Where(i => i.Path != null && PhysicalLocations.Contains(i.Path, StringComparer.OrdinalIgnoreCase))
|
2014-06-03 20:34:36 -07:00
|
|
|
|
.SelectMany(c => c.Children);
|
2013-09-19 08:12:54 -07:00
|
|
|
|
}
|
2015-06-28 18:10:45 -07:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-20 18:33:05 -07:00
|
|
|
|
}
|
|
|
|
|
}
|