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;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
using System.IO;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
2015-10-04 04:23:11 +00:00
|
|
|
|
using CommonIO;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
using MediaBrowser.Controller.Configuration;
|
2016-08-13 20:54:29 +00:00
|
|
|
|
using MediaBrowser.Model.Configuration;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
using MediaBrowser.Model.Serialization;
|
2016-04-27 17:53:23 +00:00
|
|
|
|
using MoreLinq;
|
2013-02-21 01:33:05 +00: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 21:47:00 +00:00
|
|
|
|
public class CollectionFolder : Folder, ICollectionFolder
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-08-13 05:49:00 +00:00
|
|
|
|
public static IXmlSerializer XmlSerializer { get; set; }
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public CollectionFolder()
|
|
|
|
|
{
|
|
|
|
|
PhysicalLocationsList = new List<string>();
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-15 01:44:30 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
protected override bool SupportsShortcutChildren
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-10-11 06:46:59 +00:00
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPlayedStatus
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-06 05:39:07 +00:00
|
|
|
|
public override bool CanDelete()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-12 19:56:40 +00:00
|
|
|
|
public string CollectionType { get; set; }
|
|
|
|
|
|
2016-08-13 06:33:31 +00:00
|
|
|
|
private static readonly Dictionary<string, LibraryOptions> LibraryOptions = new Dictionary<string, LibraryOptions>();
|
2016-08-13 05:49:00 +00:00
|
|
|
|
public LibraryOptions GetLibraryOptions()
|
|
|
|
|
{
|
2016-09-23 06:21:54 +00:00
|
|
|
|
return GetLibraryOptions(Path);
|
2016-08-13 05:49:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-23 06:21:54 +00:00
|
|
|
|
private static LibraryOptions LoadLibraryOptions(string path)
|
2016-08-13 05:49:00 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-09-23 06:21:54 +00:00
|
|
|
|
var result = XmlSerializer.DeserializeFromFile(typeof(LibraryOptions), GetLibraryOptionsPath(path)) as LibraryOptions;
|
2016-08-13 05:49:00 +00:00
|
|
|
|
|
|
|
|
|
if (result == null)
|
|
|
|
|
{
|
|
|
|
|
return new LibraryOptions();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
catch (FileNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
return new LibraryOptions();
|
|
|
|
|
}
|
|
|
|
|
catch (DirectoryNotFoundException)
|
|
|
|
|
{
|
|
|
|
|
return new LibraryOptions();
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("Error loading library options", ex);
|
|
|
|
|
|
|
|
|
|
return new LibraryOptions();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static string GetLibraryOptionsPath(string path)
|
|
|
|
|
{
|
|
|
|
|
return System.IO.Path.Combine(path, "options.xml");
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-14 03:12:26 +00:00
|
|
|
|
public void UpdateLibraryOptions(LibraryOptions options)
|
|
|
|
|
{
|
|
|
|
|
SaveLibraryOptions(Path, options);
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-23 06:21:54 +00:00
|
|
|
|
public static LibraryOptions GetLibraryOptions(string path)
|
|
|
|
|
{
|
|
|
|
|
lock (LibraryOptions)
|
|
|
|
|
{
|
|
|
|
|
LibraryOptions options;
|
|
|
|
|
if (!LibraryOptions.TryGetValue(path, out options))
|
|
|
|
|
{
|
|
|
|
|
options = LoadLibraryOptions(path);
|
|
|
|
|
LibraryOptions[path] = options;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return options;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-13 05:49:00 +00:00
|
|
|
|
public static void SaveLibraryOptions(string path, LibraryOptions options)
|
|
|
|
|
{
|
2016-08-14 03:12:26 +00:00
|
|
|
|
lock (LibraryOptions)
|
|
|
|
|
{
|
|
|
|
|
LibraryOptions[path] = options;
|
|
|
|
|
|
2016-10-02 04:31:47 +00:00
|
|
|
|
options.SchemaVersion = 3;
|
2016-08-14 03:12:26 +00:00
|
|
|
|
XmlSerializer.SerializeToFile(options, GetLibraryOptionsPath(path));
|
|
|
|
|
}
|
2016-08-13 05:49:00 +00:00
|
|
|
|
}
|
|
|
|
|
|
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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-02-19 19:00:56 +00:00
|
|
|
|
public override bool IsSaveLocalMetadataEnabled()
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-06 04:39:16 +00:00
|
|
|
|
public List<string> PhysicalLocationsList { get; set; }
|
|
|
|
|
|
2015-10-04 03:38:46 +00:00
|
|
|
|
protected override IEnumerable<FileSystemMetadata> GetFileSystemChildren(IDirectoryService directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2016-05-19 19:57:30 +00:00
|
|
|
|
return CreateResolveArgs(directoryService, true).FileSystemChildren;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool _requiresRefresh;
|
|
|
|
|
public override bool RequiresRefresh()
|
|
|
|
|
{
|
|
|
|
|
var changed = base.RequiresRefresh() || _requiresRefresh;
|
|
|
|
|
|
|
|
|
|
if (!changed)
|
|
|
|
|
{
|
|
|
|
|
var locations = PhysicalLocations.ToList();
|
|
|
|
|
|
2016-08-06 04:48:00 +00:00
|
|
|
|
var newLocations = CreateResolveArgs(new DirectoryService(Logger, FileSystem), false).PhysicalLocations.ToList();
|
2016-05-19 19:57:30 +00:00
|
|
|
|
|
|
|
|
|
if (!locations.SequenceEqual(newLocations))
|
|
|
|
|
{
|
|
|
|
|
changed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return changed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public override bool BeforeMetadataRefresh()
|
|
|
|
|
{
|
|
|
|
|
var changed = base.BeforeMetadataRefresh() || _requiresRefresh;
|
|
|
|
|
_requiresRefresh = false;
|
|
|
|
|
return changed;
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-12-24 06:28:40 +00: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 19:57:30 +00:00
|
|
|
|
private ItemResolveArgs CreateResolveArgs(IDirectoryService directoryService, bool setPhysicalLocations)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
|
|
|
|
var path = ContainingFolderPath;
|
|
|
|
|
|
2015-01-27 22:45:59 +00:00
|
|
|
|
var args = new ItemResolveArgs(ConfigurationManager.ApplicationPaths, directoryService)
|
2014-02-06 04:39:16 +00:00
|
|
|
|
{
|
2015-10-04 03:38:46 +00:00
|
|
|
|
FileInfo = FileSystem.GetDirectoryInfo(path),
|
2014-02-06 04:39:16 +00:00
|
|
|
|
Path = path,
|
2014-10-23 04:26:01 +00:00
|
|
|
|
Parent = Parent,
|
|
|
|
|
CollectionType = CollectionType
|
2014-02-06 04:39:16 +00: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 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)
|
|
|
|
|
{
|
2015-11-13 20:49:21 +00:00
|
|
|
|
var paths = LibraryManager.NormalizeRootPathList(fileSystemDictionary.Values);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
2015-11-13 20:49:21 +00:00
|
|
|
|
fileSystemDictionary = paths.ToDictionary(i => i.FullName);
|
2014-02-06 04:39:16 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
args.FileSystemDictionary = fileSystemDictionary;
|
|
|
|
|
}
|
|
|
|
|
|
2016-05-19 19:57:30 +00:00
|
|
|
|
_requiresRefresh = _requiresRefresh || !args.PhysicalLocations.SequenceEqual(PhysicalLocations);
|
|
|
|
|
if (setPhysicalLocations)
|
|
|
|
|
{
|
|
|
|
|
PhysicalLocationsList = args.PhysicalLocations.ToList();
|
|
|
|
|
}
|
2014-02-06 04:39:16 +00:00
|
|
|
|
|
|
|
|
|
return args;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00: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 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>
|
2015-01-27 06:50:40 +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
|
|
|
|
{
|
2015-01-27 06:50:40 +00:00
|
|
|
|
return Task.FromResult(true);
|
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
|
|
|
|
|
{
|
2014-04-22 17:25:54 +00:00
|
|
|
|
get { return GetLinkedChildrenInternal(); }
|
2013-09-19 15:12:54 +00:00
|
|
|
|
set
|
2013-08-19 21:17:03 +00:00
|
|
|
|
{
|
2013-09-19 15:12:54 +00:00
|
|
|
|
base.LinkedChildren = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
private List<LinkedChild> GetLinkedChildrenInternal()
|
|
|
|
|
{
|
2015-11-14 18:57:26 +00:00
|
|
|
|
return GetPhysicalParents()
|
2013-09-20 00:53:18 +00:00
|
|
|
|
.SelectMany(c => c.LinkedChildren)
|
|
|
|
|
.ToList();
|
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>
|
2016-05-19 19:06:58 +00:00
|
|
|
|
[IgnoreDataMember]
|
2013-09-19 00:37:01 +00:00
|
|
|
|
protected override IEnumerable<BaseItem> ActualChildren
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2014-05-14 14:15:33 +00:00
|
|
|
|
get { return GetActualChildren(); }
|
2013-09-19 15:12:54 +00:00
|
|
|
|
}
|
2013-06-20 18:07:58 +00:00
|
|
|
|
|
2013-09-19 15:12:54 +00:00
|
|
|
|
private IEnumerable<BaseItem> GetActualChildren()
|
|
|
|
|
{
|
2015-11-14 18:57:26 +00:00
|
|
|
|
return GetPhysicalParents().SelectMany(c => c.Children);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IEnumerable<Folder> GetPhysicalParents()
|
|
|
|
|
{
|
2016-04-27 17:53:23 +00:00
|
|
|
|
var rootChildren = LibraryManager.RootFolder.Children
|
2013-09-19 15:12:54 +00:00
|
|
|
|
.OfType<Folder>()
|
2016-04-27 17:53:23 +00: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;
|
2013-09-19 15:12:54 +00:00
|
|
|
|
}
|
2015-06-29 01:10:45 +00:00
|
|
|
|
|
|
|
|
|
[IgnoreDataMember]
|
|
|
|
|
public override bool SupportsPeople
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
}
|