2014-11-30 19:01:33 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-06-09 13:31:23 +00:00
|
|
|
|
using System;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
using System.IO;
|
2013-12-01 06:25:19 +00:00
|
|
|
|
using System.Linq;
|
2013-03-03 06:58:04 +00:00
|
|
|
|
using System.Text.RegularExpressions;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Class ResolverHelper
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static class ResolverHelper
|
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Sets the initial item values.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
|
|
|
|
/// <param name="args">The args.</param>
|
2013-10-30 14:40:14 +00:00
|
|
|
|
/// <param name="fileSystem">The file system.</param>
|
2014-11-30 19:01:33 +00:00
|
|
|
|
public static void SetInitialItemValues(BaseItem item, ItemResolveArgs args, IFileSystem fileSystem, ILibraryManager libraryManager)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
// If the resolver didn't specify this
|
|
|
|
|
if (string.IsNullOrEmpty(item.Path))
|
|
|
|
|
{
|
|
|
|
|
item.Path = args.Path;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// If the resolver didn't specify this
|
|
|
|
|
if (args.Parent != null)
|
|
|
|
|
{
|
|
|
|
|
item.Parent = args.Parent;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-30 19:01:33 +00:00
|
|
|
|
item.Id = libraryManager.GetNewItemId(item.Path, item.GetType());
|
2013-06-25 18:10:39 +00:00
|
|
|
|
|
|
|
|
|
// If the resolver didn't specify this
|
|
|
|
|
if (string.IsNullOrEmpty(item.DisplayMediaType))
|
|
|
|
|
{
|
|
|
|
|
item.DisplayMediaType = item.GetType().Name;
|
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
|
|
|
|
// Make sure the item has a name
|
2014-01-28 18:37:01 +00:00
|
|
|
|
EnsureName(item, args);
|
2013-03-03 06:58:04 +00:00
|
|
|
|
|
2014-04-27 03:42:05 +00:00
|
|
|
|
item.IsLocked = item.Path.IndexOf("[dontfetchmeta]", StringComparison.OrdinalIgnoreCase) != -1 ||
|
2014-03-22 16:16:43 +00:00
|
|
|
|
item.Parents.Any(i => i.IsLocked);
|
2013-06-09 13:31:23 +00:00
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
// Make sure DateCreated and DateModified have values
|
2013-10-30 14:40:14 +00:00
|
|
|
|
EntityResolutionHelper.EnsureDates(fileSystem, item, args, true);
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Ensures the name.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="item">The item.</param>
|
2014-11-29 19:51:30 +00:00
|
|
|
|
/// <param name="args">The arguments.</param>
|
2014-01-28 18:37:01 +00:00
|
|
|
|
private static void EnsureName(BaseItem item, ItemResolveArgs args)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
// If the subclass didn't supply a name, add it here
|
|
|
|
|
if (string.IsNullOrEmpty(item.Name) && !string.IsNullOrEmpty(item.Path))
|
|
|
|
|
{
|
|
|
|
|
//we use our resolve args name here to get the name of the containg folder, not actual video file
|
2014-11-29 19:51:30 +00:00
|
|
|
|
item.Name = GetDisplayName(args.FileInfo.Name, (args.FileInfo.Attributes & FileAttributes.Directory) == FileAttributes.Directory);
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-11-29 19:51:30 +00:00
|
|
|
|
/// Gets the display name.
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// </summary>
|
2014-11-29 19:51:30 +00:00
|
|
|
|
/// <param name="path">The path.</param>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
/// <param name="isDirectory">if set to <c>true</c> [is directory].</param>
|
2014-11-29 19:51:30 +00:00
|
|
|
|
/// <returns>System.String.</returns>
|
|
|
|
|
private static string GetDisplayName(string path, bool isDirectory)
|
2013-03-03 06:58:04 +00:00
|
|
|
|
{
|
|
|
|
|
//first just get the file or directory name
|
|
|
|
|
var fn = isDirectory ? Path.GetFileName(path) : Path.GetFileNameWithoutExtension(path);
|
|
|
|
|
|
|
|
|
|
return fn;
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-29 19:51:30 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The MB name regex
|
|
|
|
|
/// </summary>
|
|
|
|
|
private static readonly Regex MbNameRegex = new Regex(@"(\[.*?\])", RegexOptions.Compiled);
|
|
|
|
|
|
|
|
|
|
internal static string StripBrackets(string inputString)
|
2014-11-16 20:44:08 +00:00
|
|
|
|
{
|
|
|
|
|
var output = MbNameRegex.Replace(inputString, string.Empty).Trim();
|
2013-11-03 01:19:33 +00:00
|
|
|
|
return Regex.Replace(output, @"\s+", " ");
|
|
|
|
|
}
|
2013-03-03 06:58:04 +00:00
|
|
|
|
}
|
|
|
|
|
}
|