jellyfin/MediaBrowser.Server.Implementations/Library/CoreResolutionIgnoreRule.cs

100 lines
3.2 KiB
C#
Raw Normal View History

using MediaBrowser.Controller.Entities;
2013-04-24 18:03:10 +02:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2013-05-27 03:24:56 +02:00
using MediaBrowser.Model.Logging;
2013-02-21 02:33:05 +01:00
using System;
using System.Collections.Generic;
using System.IO;
2013-02-21 02:33:05 +01:00
using System.Linq;
namespace MediaBrowser.Server.Implementations.Library
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Provides the core resolver ignore rules
/// </summary>
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
2013-02-21 02:33:05 +01:00
{
2013-05-27 03:24:56 +02:00
private readonly ILogger _logger;
2013-02-21 02:33:05 +01: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 03:24:56 +02:00
public CoreResolutionIgnoreRule(ILogger logger)
{
_logger = logger;
}
2013-02-23 08:57:11 +01:00
/// <summary>
/// Shoulds the ignore.
/// </summary>
/// <param name="args">The args.</param>
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public bool ShouldIgnore(ItemResolveArgs args)
2013-02-21 02:33:05 +01:00
{
// Ignore hidden files and folders
if (args.IsHidden)
{
2013-04-24 18:03:10 +02:00
var parentFolderName = Path.GetFileName(Path.GetDirectoryName(args.Path));
if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase) || string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-24 18:03:10 +02:00
{
2013-04-28 18:25:14 +02:00
return false;
2013-04-24 18:03:10 +02:00
}
2013-04-28 18:25:14 +02:00
2013-05-04 17:43:10 +02:00
// Drives will sometimes be hidden
if (args.Path.EndsWith(":\\", StringComparison.OrdinalIgnoreCase))
{
if (new DriveInfo(args.Path).IsReady)
{
return false;
}
2013-05-27 03:24:56 +02:00
_logger.Error("Operating system reports drive is not ready: {0}", args.Path);
2013-05-04 17:43:10 +02:00
}
2013-04-28 18:25:14 +02:00
return true;
2013-02-21 02:33:05 +01:00
}
if (args.IsDirectory)
{
var filename = args.FileInfo.Name;
2013-02-21 02:33:05 +01:00
// Ignore any folders in our list
if (IgnoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
{
return true;
}
2013-04-24 18:37:12 +02:00
2013-05-17 05:42:04 +02:00
// Ignore trailer folders but allow it at the collection level
if (string.Equals(filename, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase) && !(args.Parent is AggregateFolder) && !(args.Parent is UserRootFolder))
2013-04-24 18:37:12 +02:00
{
return true;
}
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-28 18:25:14 +02:00
{
return true;
}
2013-04-24 18:37:12 +02:00
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-02-21 02:33:05 +01:00
}
return false;
}
}
}