2013-05-20 17:14:15 +00:00
|
|
|
|
using MediaBrowser.Controller.Entities;
|
2013-04-24 16:03:10 +00:00
|
|
|
|
using MediaBrowser.Controller.Library;
|
2013-05-20 17:14:15 +00:00
|
|
|
|
using MediaBrowser.Controller.Resolvers;
|
2013-05-27 01:24:56 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2013-05-20 17:14:15 +00:00
|
|
|
|
using System.IO;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
|
2013-03-03 06:58:04 +00:00
|
|
|
|
namespace MediaBrowser.Server.Implementations.Library
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provides the core resolver ignore rules
|
|
|
|
|
/// </summary>
|
2013-03-03 06:58:04 +00:00
|
|
|
|
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2013-05-27 01:24:56 +00:00
|
|
|
|
private readonly ILogger _logger;
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Any folder named in this list will be ignored - can be added to at runtime for extensibility
|
|
|
|
|
/// </summary>
|
|
|
|
|
private static readonly List<string> IgnoreFolders = new List<string>
|
|
|
|
|
{
|
|
|
|
|
"metadata",
|
|
|
|
|
"certificate",
|
|
|
|
|
"backup",
|
|
|
|
|
"ps3_update",
|
|
|
|
|
"ps3_vprm",
|
|
|
|
|
"adv_obj",
|
|
|
|
|
"extrafanart"
|
|
|
|
|
};
|
|
|
|
|
|
2013-05-27 01:24:56 +00:00
|
|
|
|
public CoreResolutionIgnoreRule(ILogger logger)
|
|
|
|
|
{
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shoulds the ignore.
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// <param name="args">The args.</param>
|
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
2013-02-23 00:24:50 +00:00
|
|
|
|
public bool ShouldIgnore(ItemResolveArgs args)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
// Ignore hidden files and folders
|
|
|
|
|
if (args.IsHidden)
|
|
|
|
|
{
|
2013-04-24 16:03:10 +00:00
|
|
|
|
var parentFolderName = Path.GetFileName(Path.GetDirectoryName(args.Path));
|
|
|
|
|
|
2013-06-11 20:35:54 +00:00
|
|
|
|
if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
|
2013-04-24 16:03:10 +00:00
|
|
|
|
{
|
2013-04-28 16:25:14 +00:00
|
|
|
|
return false;
|
2013-04-24 16:03:10 +00:00
|
|
|
|
}
|
2013-04-28 16:25:14 +00:00
|
|
|
|
|
2013-05-04 15:43:10 +00:00
|
|
|
|
// Drives will sometimes be hidden
|
2013-06-11 20:35:54 +00:00
|
|
|
|
if (args.Path.EndsWith(Path.VolumeSeparatorChar + "\\", StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Shares will sometimes be hidden
|
|
|
|
|
if (args.Path.StartsWith("\\", StringComparison.OrdinalIgnoreCase))
|
2013-05-04 15:43:10 +00:00
|
|
|
|
{
|
2013-06-11 20:35:54 +00:00
|
|
|
|
// Look for a share, e.g. \\server\movies
|
|
|
|
|
// Is there a better way to detect if a path is a share without using native code?
|
|
|
|
|
if (args.Path.Substring(2).Split(Path.DirectorySeparatorChar).Length == 2)
|
2013-05-04 15:43:10 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 16:25:14 +00:00
|
|
|
|
return true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (args.IsDirectory)
|
|
|
|
|
{
|
2013-04-28 05:29:27 +00:00
|
|
|
|
var filename = args.FileInfo.Name;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
// Ignore any folders in our list
|
|
|
|
|
if (IgnoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-04-24 16:37:12 +00:00
|
|
|
|
|
2013-05-17 03:42:04 +00:00
|
|
|
|
// Ignore trailer folders but allow it at the collection level
|
2013-06-01 22:18:27 +00:00
|
|
|
|
if (string.Equals(filename, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase) &&
|
|
|
|
|
!(args.Parent is AggregateFolder) && !(args.Parent is UserRootFolder))
|
2013-04-24 16:37:12 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 18:30:58 +00:00
|
|
|
|
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
|
2013-04-28 16:25:14 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-24 16:37:12 +00:00
|
|
|
|
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-06-01 22:18:27 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (args.Parent != null)
|
|
|
|
|
{
|
|
|
|
|
var filename = args.FileInfo.Name;
|
|
|
|
|
|
|
|
|
|
if (string.Equals(Path.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) && EntityResolutionHelper.IsAudioFile(filename))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|