2016-03-27 21:11:27 +00:00
|
|
|
|
using MediaBrowser.Controller;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library.Resolvers
|
|
|
|
|
{
|
|
|
|
|
class SpecialFolderResolver : FolderResolver<Folder>
|
|
|
|
|
{
|
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2015-01-27 22:45:59 +00:00
|
|
|
|
private readonly IServerApplicationPaths _appPaths;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
|
2015-01-27 22:45:59 +00:00
|
|
|
|
public SpecialFolderResolver(IFileSystem fileSystem, IServerApplicationPaths appPaths)
|
2014-12-20 06:06:27 +00:00
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
2015-01-27 22:45:59 +00:00
|
|
|
|
_appPaths = appPaths;
|
2014-12-20 06:06:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets the priority.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <value>The priority.</value>
|
|
|
|
|
public override ResolverPriority Priority
|
|
|
|
|
{
|
|
|
|
|
get { return ResolverPriority.First; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves the specified args.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns>Folder.</returns>
|
|
|
|
|
protected override Folder Resolve(ItemResolveArgs args)
|
|
|
|
|
{
|
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
|
|
|
|
if (args.IsPhysicalRoot)
|
|
|
|
|
{
|
|
|
|
|
return new AggregateFolder();
|
|
|
|
|
}
|
2015-01-27 22:45:59 +00:00
|
|
|
|
if (string.Equals(args.Path, _appPaths.DefaultUserViewsPath, StringComparison.OrdinalIgnoreCase))
|
2014-12-20 06:06:27 +00:00
|
|
|
|
{
|
|
|
|
|
return new UserRootFolder(); //if we got here and still a root - must be user root
|
|
|
|
|
}
|
|
|
|
|
if (args.IsVf)
|
|
|
|
|
{
|
|
|
|
|
return new CollectionFolder
|
|
|
|
|
{
|
2016-08-18 15:13:18 +00:00
|
|
|
|
CollectionType = GetCollectionType(args),
|
|
|
|
|
PhysicalLocationsList = args.PhysicalLocations.ToList()
|
2014-12-20 06:06:27 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetCollectionType(ItemResolveArgs args)
|
|
|
|
|
{
|
|
|
|
|
return args.FileSystemChildren
|
|
|
|
|
.Where(i =>
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
2016-10-25 19:02:04 +00:00
|
|
|
|
return !i.IsDirectory &&
|
2014-12-20 06:06:27 +00:00
|
|
|
|
string.Equals(".collection", i.Extension, StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
}
|
|
|
|
|
catch (IOException)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
})
|
|
|
|
|
.Select(i => _fileSystem.GetFileNameWithoutExtension(i))
|
|
|
|
|
.FirstOrDefault();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|