You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
290 lines
9.9 KiB
290 lines
9.9 KiB
using System;
|
|
using System.Collections.Concurrent;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.IO;
|
|
using MediaBrowser.Model.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Library
|
|
{
|
|
public class ItemController
|
|
{
|
|
#region PreBeginResolvePath Event
|
|
/// <summary>
|
|
/// Fires when a path is about to be resolved, but before child folders and files
|
|
/// have been collected from the file system.
|
|
/// This gives listeners a chance to cancel the operation and cause the path to be ignored.
|
|
/// </summary>
|
|
public event EventHandler<PreBeginResolveEventArgs> PreBeginResolvePath;
|
|
private bool OnPreBeginResolvePath(PreBeginResolveEventArgs args)
|
|
{
|
|
if (PreBeginResolvePath != null)
|
|
{
|
|
PreBeginResolvePath(this, args);
|
|
}
|
|
|
|
return !args.Cancel;
|
|
}
|
|
#endregion
|
|
|
|
#region BeginResolvePath Event
|
|
/// <summary>
|
|
/// Fires when a path is about to be resolved, but after child folders and files
|
|
/// have been collected from the file system.
|
|
/// This gives listeners a chance to cancel the operation and cause the path to be ignored.
|
|
/// </summary>
|
|
public event EventHandler<ItemResolveEventArgs> BeginResolvePath;
|
|
private bool OnBeginResolvePath(ItemResolveEventArgs args)
|
|
{
|
|
if (BeginResolvePath != null)
|
|
{
|
|
BeginResolvePath(this, args);
|
|
}
|
|
|
|
return !args.Cancel;
|
|
}
|
|
#endregion
|
|
|
|
private BaseItem ResolveItem(ItemResolveEventArgs args)
|
|
{
|
|
// Try first priority resolvers
|
|
for (int i = 0; i < Kernel.Instance.EntityResolvers.Length; i++)
|
|
{
|
|
var item = Kernel.Instance.EntityResolvers[i].ResolvePath(args);
|
|
|
|
if (item != null)
|
|
{
|
|
return item;
|
|
}
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Resolves a path into a BaseItem
|
|
/// </summary>
|
|
public async Task<BaseItem> GetItem(string path, Folder parent = null, WIN32_FIND_DATA? fileInfo = null, bool allowInternetProviders = true)
|
|
{
|
|
ItemResolveEventArgs args = new ItemResolveEventArgs()
|
|
{
|
|
FileInfo = fileInfo ?? FileData.GetFileData(path),
|
|
Parent = parent,
|
|
Cancel = false,
|
|
Path = path
|
|
};
|
|
|
|
if (!OnPreBeginResolvePath(args))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
WIN32_FIND_DATA[] fileSystemChildren;
|
|
|
|
// Gather child folder and files
|
|
if (args.IsDirectory)
|
|
{
|
|
fileSystemChildren = FileData.GetFileSystemEntries(path, "*").ToArray();
|
|
|
|
bool isVirtualFolder = parent != null && parent.IsRoot;
|
|
fileSystemChildren = FilterChildFileSystemEntries(fileSystemChildren, isVirtualFolder);
|
|
}
|
|
else
|
|
{
|
|
fileSystemChildren = new WIN32_FIND_DATA[] { };
|
|
}
|
|
|
|
args.FileSystemChildren = fileSystemChildren;
|
|
|
|
// Fire BeginResolvePath to see if anyone wants to cancel this operation
|
|
if (!OnBeginResolvePath(args))
|
|
{
|
|
return null;
|
|
}
|
|
|
|
BaseItem item = ResolveItem(args);
|
|
|
|
if (item != null)
|
|
{
|
|
await Kernel.Instance.ExecuteMetadataProviders(item, args, allowInternetProviders: allowInternetProviders).ConfigureAwait(false);
|
|
|
|
if (item.IsFolder)
|
|
{
|
|
// If it's a folder look for child entities
|
|
(item as Folder).Children = (await Task.WhenAll<BaseItem>(GetChildren(item as Folder, fileSystemChildren, allowInternetProviders)).ConfigureAwait(false))
|
|
.Where(i => i != null).OrderBy(f =>
|
|
{
|
|
return string.IsNullOrEmpty(f.SortName) ? f.Name : f.SortName;
|
|
|
|
});
|
|
}
|
|
}
|
|
|
|
return item;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Finds child BaseItems for a given Folder
|
|
/// </summary>
|
|
private Task<BaseItem>[] GetChildren(Folder folder, WIN32_FIND_DATA[] fileSystemChildren, bool allowInternetProviders)
|
|
{
|
|
Task<BaseItem>[] tasks = new Task<BaseItem>[fileSystemChildren.Length];
|
|
|
|
for (int i = 0; i < fileSystemChildren.Length; i++)
|
|
{
|
|
var child = fileSystemChildren[i];
|
|
|
|
tasks[i] = GetItem(child.Path, folder, child, allowInternetProviders: allowInternetProviders);
|
|
}
|
|
|
|
return tasks;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Transforms shortcuts into their actual paths
|
|
/// </summary>
|
|
private WIN32_FIND_DATA[] FilterChildFileSystemEntries(WIN32_FIND_DATA[] fileSystemChildren, bool flattenShortcuts)
|
|
{
|
|
WIN32_FIND_DATA[] returnArray = new WIN32_FIND_DATA[fileSystemChildren.Length];
|
|
List<WIN32_FIND_DATA> resolvedShortcuts = new List<WIN32_FIND_DATA>();
|
|
|
|
for (int i = 0; i < fileSystemChildren.Length; i++)
|
|
{
|
|
WIN32_FIND_DATA file = fileSystemChildren[i];
|
|
|
|
// If it's a shortcut, resolve it
|
|
if (Shortcut.IsShortcut(file.Path))
|
|
{
|
|
string newPath = Shortcut.ResolveShortcut(file.Path);
|
|
WIN32_FIND_DATA newPathData = FileData.GetFileData(newPath);
|
|
|
|
// Find out if the shortcut is pointing to a directory or file
|
|
if (newPathData.IsDirectory)
|
|
{
|
|
// If we're flattening then get the shortcut's children
|
|
|
|
if (flattenShortcuts)
|
|
{
|
|
returnArray[i] = file;
|
|
WIN32_FIND_DATA[] newChildren = FileData.GetFileSystemEntries(newPath, "*").ToArray();
|
|
|
|
resolvedShortcuts.AddRange(FilterChildFileSystemEntries(newChildren, false));
|
|
}
|
|
else
|
|
{
|
|
returnArray[i] = newPathData;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
returnArray[i] = newPathData;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
returnArray[i] = file;
|
|
}
|
|
}
|
|
|
|
if (resolvedShortcuts.Count > 0)
|
|
{
|
|
resolvedShortcuts.InsertRange(0, returnArray);
|
|
return resolvedShortcuts.ToArray();
|
|
}
|
|
else
|
|
{
|
|
return returnArray;
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Person
|
|
/// </summary>
|
|
public Task<Person> GetPerson(string name)
|
|
{
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.PeoplePath, name);
|
|
|
|
return GetImagesByNameItem<Person>(path, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Studio
|
|
/// </summary>
|
|
public Task<Studio> GetStudio(string name)
|
|
{
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.StudioPath, name);
|
|
|
|
return GetImagesByNameItem<Studio>(path, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Genre
|
|
/// </summary>
|
|
public Task<Genre> GetGenre(string name)
|
|
{
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.GenrePath, name);
|
|
|
|
return GetImagesByNameItem<Genre>(path, name);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Gets a Year
|
|
/// </summary>
|
|
public Task<Year> GetYear(int value)
|
|
{
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.YearPath, value.ToString());
|
|
|
|
return GetImagesByNameItem<Year>(path, value.ToString());
|
|
}
|
|
|
|
private ConcurrentDictionary<string, object> ImagesByNameItemCache = new ConcurrentDictionary<string, object>();
|
|
|
|
/// <summary>
|
|
/// Generically retrieves an IBN item
|
|
/// </summary>
|
|
private Task<T> GetImagesByNameItem<T>(string path, string name)
|
|
where T : BaseEntity, new()
|
|
{
|
|
string key = path.ToLower();
|
|
|
|
// Look for it in the cache, if it's not there, create it
|
|
if (!ImagesByNameItemCache.ContainsKey(key))
|
|
{
|
|
ImagesByNameItemCache[key] = CreateImagesByNameItem<T>(path, name);
|
|
}
|
|
|
|
return ImagesByNameItemCache[key] as Task<T>;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Creates an IBN item based on a given path
|
|
/// </summary>
|
|
private async Task<T> CreateImagesByNameItem<T>(string path, string name)
|
|
where T : BaseEntity, new()
|
|
{
|
|
T item = new T();
|
|
|
|
item.Name = name;
|
|
item.Id = Kernel.GetMD5(path);
|
|
|
|
if (!Directory.Exists(path))
|
|
{
|
|
Directory.CreateDirectory(path);
|
|
}
|
|
|
|
item.DateCreated = Directory.GetCreationTime(path);
|
|
item.DateModified = Directory.GetLastAccessTime(path);
|
|
|
|
ItemResolveEventArgs args = new ItemResolveEventArgs();
|
|
args.FileInfo = FileData.GetFileData(path);
|
|
args.FileSystemChildren = FileData.GetFileSystemEntries(path, "*").ToArray();
|
|
|
|
await Kernel.Instance.ExecuteMetadataProviders(item, args).ConfigureAwait(false);
|
|
|
|
return item;
|
|
}
|
|
}
|
|
}
|