2012-07-12 06:55:27 +00:00
|
|
|
|
using System;
|
2012-08-19 20:38:31 +00:00
|
|
|
|
using System.Collections.Concurrent;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using MediaBrowser.Controller.Events;
|
|
|
|
|
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;
|
2012-08-20 23:53:32 +00:00
|
|
|
|
private bool OnPreBeginResolvePath(Folder parent, string path, WIN32_FIND_DATA fileData)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
|
|
|
|
PreBeginResolveEventArgs args = new PreBeginResolveEventArgs()
|
|
|
|
|
{
|
|
|
|
|
Parent = parent,
|
2012-08-21 14:42:40 +00:00
|
|
|
|
File = new LazyFileInfo() { Path = path, FileInfo = fileData },
|
2012-07-12 06:55:27 +00:00
|
|
|
|
Cancel = false
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
private BaseItem ResolveItem(ItemResolveEventArgs args)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-20 15:55:05 +00:00
|
|
|
|
// Try first priority resolvers
|
2012-08-21 01:21:03 +00:00
|
|
|
|
for (int i = 0; i < Kernel.Instance.EntityResolvers.Length; i++)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
var item = Kernel.Instance.EntityResolvers[i].ResolvePath(args);
|
2012-08-20 15:55:05 +00:00
|
|
|
|
|
|
|
|
|
if (item != null)
|
|
|
|
|
{
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
}
|
2012-08-20 21:48:11 +00:00
|
|
|
|
|
2012-07-12 06:55:27 +00:00
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Resolves a path into a BaseItem
|
|
|
|
|
/// </summary>
|
2012-08-21 01:21:03 +00:00
|
|
|
|
public async Task<BaseItem> GetItem(string path, Folder parent = null, WIN32_FIND_DATA? fileInfo = null)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
WIN32_FIND_DATA fileData = fileInfo ?? FileData.GetFileData(path);
|
2012-08-20 23:53:32 +00:00
|
|
|
|
|
|
|
|
|
if (!OnPreBeginResolvePath(parent, path, fileData))
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 03:56:28 +00:00
|
|
|
|
LazyFileInfo[] fileSystemChildren;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
// Gather child folder and files
|
2012-08-20 23:53:32 +00:00
|
|
|
|
if (fileData.IsDirectory)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
fileSystemChildren = ConvertFileSystemEntries(Directory.GetFileSystemEntries(path, "*", SearchOption.TopDirectoryOnly));
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
bool isVirtualFolder = parent != null && parent.IsRoot;
|
|
|
|
|
fileSystemChildren = FilterChildFileSystemEntries(fileSystemChildren, isVirtualFolder);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
fileSystemChildren = new LazyFileInfo[] { };
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ItemResolveEventArgs args = new ItemResolveEventArgs()
|
|
|
|
|
{
|
2012-08-21 14:42:40 +00:00
|
|
|
|
File = new LazyFileInfo() { Path = path, FileInfo = fileData },
|
2012-07-12 06:55:27 +00:00
|
|
|
|
FileSystemChildren = fileSystemChildren,
|
|
|
|
|
Parent = parent,
|
|
|
|
|
Cancel = false
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Fire BeginResolvePath to see if anyone wants to cancel this operation
|
|
|
|
|
if (!OnBeginResolvePath(args))
|
|
|
|
|
{
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
BaseItem item = ResolveItem(args);
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
if (item != null)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-20 21:48:11 +00:00
|
|
|
|
await Kernel.Instance.ExecuteMetadataProviders(item, args);
|
|
|
|
|
|
|
|
|
|
var folder = item as Folder;
|
|
|
|
|
|
|
|
|
|
if (folder != null)
|
|
|
|
|
{
|
|
|
|
|
// If it's a folder look for child entities
|
|
|
|
|
await AttachChildren(folder, fileSystemChildren).ConfigureAwait(false);
|
|
|
|
|
}
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Finds child BaseItems for a given Folder
|
|
|
|
|
/// </summary>
|
2012-08-21 03:56:28 +00:00
|
|
|
|
private async Task AttachChildren(Folder folder, LazyFileInfo[] fileSystemChildren)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
int count = fileSystemChildren.Length;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-19 15:58:35 +00:00
|
|
|
|
Task<BaseItem>[] tasks = new Task<BaseItem>[count];
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-19 15:58:35 +00:00
|
|
|
|
for (int i = 0; i < count; i++)
|
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
var child = fileSystemChildren[i];
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-21 03:56:28 +00:00
|
|
|
|
tasks[i] = GetItem(child.Path, folder, child.FileInfo);
|
2012-08-19 15:58:35 +00:00
|
|
|
|
}
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
BaseItem[] baseItemChildren = await Task<BaseItem>.WhenAll(tasks).ConfigureAwait(false);
|
2012-08-20 15:55:05 +00:00
|
|
|
|
|
2012-07-12 06:55:27 +00:00
|
|
|
|
// Sort them
|
2012-08-19 15:58:35 +00:00
|
|
|
|
folder.Children = baseItemChildren.Where(i => i != null).OrderBy(f =>
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
|
|
|
|
return string.IsNullOrEmpty(f.SortName) ? f.Name : f.SortName;
|
|
|
|
|
|
2012-08-21 01:21:03 +00:00
|
|
|
|
});
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Transforms shortcuts into their actual paths
|
|
|
|
|
/// </summary>
|
2012-08-21 03:56:28 +00:00
|
|
|
|
private LazyFileInfo[] FilterChildFileSystemEntries(LazyFileInfo[] fileSystemChildren, bool flattenShortcuts)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
LazyFileInfo[] returnArray = new LazyFileInfo[fileSystemChildren.Length];
|
|
|
|
|
List<LazyFileInfo> resolvedShortcuts = new List<LazyFileInfo>();
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-21 01:21:03 +00:00
|
|
|
|
for (int i = 0; i < fileSystemChildren.Length; i++)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
LazyFileInfo file = fileSystemChildren[i];
|
2012-08-21 01:21:03 +00:00
|
|
|
|
|
2012-07-12 06:55:27 +00:00
|
|
|
|
// If it's a shortcut, resolve it
|
2012-08-21 03:56:28 +00:00
|
|
|
|
if (Shortcut.IsShortcut(file.Path))
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
string newPath = Shortcut.ResolveShortcut(file.Path);
|
2012-08-20 23:53:32 +00:00
|
|
|
|
WIN32_FIND_DATA newPathData = FileData.GetFileData(newPath);
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
|
|
|
|
// Find out if the shortcut is pointing to a directory or file
|
2012-08-20 23:53:32 +00:00
|
|
|
|
if (newPathData.IsDirectory)
|
2012-07-12 06:55:27 +00:00
|
|
|
|
{
|
|
|
|
|
// If we're flattening then get the shortcut's children
|
|
|
|
|
|
|
|
|
|
if (flattenShortcuts)
|
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
returnArray[i] = file;
|
2012-08-21 03:56:28 +00:00
|
|
|
|
LazyFileInfo[] newChildren = ConvertFileSystemEntries(Directory.GetFileSystemEntries(newPath, "*", SearchOption.TopDirectoryOnly));
|
2012-07-12 06:55:27 +00:00
|
|
|
|
|
2012-08-21 01:21:03 +00:00
|
|
|
|
resolvedShortcuts.AddRange(FilterChildFileSystemEntries(newChildren, false));
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
returnArray[i] = new LazyFileInfo() { Path = newPath, FileInfo = newPathData };
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
returnArray[i] = new LazyFileInfo() { Path = newPath, FileInfo = newPathData };
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2012-08-21 01:21:03 +00:00
|
|
|
|
returnArray[i] = file;
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-08-21 01:21:03 +00:00
|
|
|
|
if (resolvedShortcuts.Count > 0)
|
|
|
|
|
{
|
|
|
|
|
resolvedShortcuts.InsertRange(0, returnArray);
|
|
|
|
|
return resolvedShortcuts.ToArray();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
return returnArray;
|
|
|
|
|
}
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
2012-07-16 16:50:44 +00:00
|
|
|
|
|
2012-08-14 16:06:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Person
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
public async Task<Person> GetPerson(string name)
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.PeoplePath, name);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
return await GetImagesByNameItem<Person>(path, name).ConfigureAwait(false);
|
2012-07-16 16:50:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 16:06:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Studio
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
public async Task<Studio> GetStudio(string name)
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.StudioPath, name);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
return await GetImagesByNameItem<Studio>(path, name).ConfigureAwait(false);
|
2012-07-16 16:50:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 16:06:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Genre
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
public async Task<Genre> GetGenre(string name)
|
2012-07-20 02:22:44 +00:00
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.GenrePath, name);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
return await GetImagesByNameItem<Genre>(path, name).ConfigureAwait(false);
|
2012-07-20 02:22:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-14 16:06:46 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Gets a Year
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
public async Task<Year> GetYear(int value)
|
2012-07-16 16:50:44 +00:00
|
|
|
|
{
|
2012-08-18 20:38:02 +00:00
|
|
|
|
string path = Path.Combine(Kernel.Instance.ApplicationPaths.YearPath, value.ToString());
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
return await GetImagesByNameItem<Year>(path, value.ToString()).ConfigureAwait(false);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-08-19 20:38:31 +00:00
|
|
|
|
private ConcurrentDictionary<string, object> ImagesByNameItemCache = new ConcurrentDictionary<string, object>();
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Generically retrieves an IBN item
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
private async Task<T> GetImagesByNameItem<T>(string path, string name)
|
2012-08-14 16:06:46 +00:00
|
|
|
|
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))
|
|
|
|
|
{
|
2012-08-20 21:48:11 +00:00
|
|
|
|
T obj = await CreateImagesByNameItem<T>(path, name).ConfigureAwait(false);
|
2012-08-19 20:38:31 +00:00
|
|
|
|
ImagesByNameItemCache[key] = obj;
|
|
|
|
|
return obj;
|
2012-08-14 16:06:46 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ImagesByNameItemCache[key] as T;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Creates an IBN item based on a given path
|
|
|
|
|
/// </summary>
|
2012-08-19 20:38:31 +00:00
|
|
|
|
private async Task<T> CreateImagesByNameItem<T>(string path, string name)
|
2012-08-19 15:58:35 +00:00
|
|
|
|
where T : BaseEntity, new()
|
2012-08-14 16:06:46 +00:00
|
|
|
|
{
|
|
|
|
|
T item = new T();
|
|
|
|
|
|
|
|
|
|
item.Name = name;
|
|
|
|
|
item.Id = Kernel.GetMD5(path);
|
|
|
|
|
|
2012-08-19 20:38:31 +00:00
|
|
|
|
if (!Directory.Exists(path))
|
2012-08-14 16:06:46 +00:00
|
|
|
|
{
|
2012-08-19 20:38:31 +00:00
|
|
|
|
Directory.CreateDirectory(path);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
}
|
2012-08-19 20:38:31 +00:00
|
|
|
|
|
|
|
|
|
item.DateCreated = Directory.GetCreationTime(path);
|
|
|
|
|
item.DateModified = Directory.GetLastAccessTime(path);
|
|
|
|
|
|
2012-08-20 12:59:21 +00:00
|
|
|
|
ItemResolveEventArgs args = new ItemResolveEventArgs();
|
2012-08-21 14:42:40 +00:00
|
|
|
|
args.File = new LazyFileInfo() { Path = path };
|
2012-08-21 01:21:03 +00:00
|
|
|
|
args.FileSystemChildren = ConvertFileSystemEntries(Directory.GetFileSystemEntries(path, "*", SearchOption.TopDirectoryOnly));
|
2012-08-19 20:38:31 +00:00
|
|
|
|
|
2012-08-20 21:48:11 +00:00
|
|
|
|
await Kernel.Instance.ExecuteMetadataProviders(item, args).ConfigureAwait(false);
|
2012-08-14 16:06:46 +00:00
|
|
|
|
|
|
|
|
|
return item;
|
2012-07-16 16:50:44 +00:00
|
|
|
|
}
|
2012-08-21 01:21:03 +00:00
|
|
|
|
|
2012-08-21 03:56:28 +00:00
|
|
|
|
private LazyFileInfo[] ConvertFileSystemEntries(string[] files)
|
2012-08-21 01:21:03 +00:00
|
|
|
|
{
|
2012-08-21 03:56:28 +00:00
|
|
|
|
LazyFileInfo[] items = new LazyFileInfo[files.Length];
|
2012-08-21 01:21:03 +00:00
|
|
|
|
|
|
|
|
|
for (int i = 0; i < files.Length; i++)
|
|
|
|
|
{
|
|
|
|
|
string file = files[i];
|
|
|
|
|
|
2012-08-21 03:56:28 +00:00
|
|
|
|
items[i] = new LazyFileInfo() { Path = file };
|
2012-08-21 01:21:03 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return items;
|
|
|
|
|
}
|
2012-07-12 06:55:27 +00:00
|
|
|
|
}
|
|
|
|
|
}
|