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

119 lines
3.5 KiB
C#
Raw Normal View History

using System;
using System.IO;
using System.Linq;
using System.Text.RegularExpressions;
using MediaBrowser.Controller.Entities;
2013-04-24 18:03:10 +02:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2013-02-21 02:33:05 +01:00
namespace Emby.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
{
2014-11-16 21:44:08 +01:00
private readonly ILibraryManager _libraryManager;
2014-12-11 07:20:28 +01:00
/// <summary>
2019-07-06 16:15:38 +02:00
/// Any folder named in this list will be ignored
2014-12-11 07:20:28 +01:00
/// </summary>
2019-07-06 16:15:38 +02:00
private static readonly string[] _ignoreFolders =
2014-12-11 07:20:28 +01:00
{
"metadata",
"ps3_update",
"ps3_vprm",
"extrafanart",
"extrathumbs",
".actors",
2015-03-24 01:22:00 +01:00
".wd_tv",
// Synology
2015-05-21 22:53:14 +02:00
"@eaDir",
"eaDir",
2017-06-02 21:45:40 +02:00
"#recycle",
// Qnap
2018-09-12 19:26:21 +02:00
"@Recycle",
".@__thumb",
"$RECYCLE.BIN",
"System Volume Information",
".grab",
2019-02-06 20:38:42 +01:00
};
2014-12-11 07:20:28 +01:00
2019-02-06 20:38:42 +01:00
public CoreResolutionIgnoreRule(ILibraryManager libraryManager)
{
2014-11-16 21:44:08 +01:00
_libraryManager = libraryManager;
}
2019-07-06 16:15:38 +02:00
/// <inheritdoc />
public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent)
2013-02-21 02:33:05 +01:00
{
2016-12-28 07:40:03 +01:00
// Don't ignore top level folders
if (fileInfo.IsDirectory && parent is AggregateFolder)
{
return false;
}
var filename = fileInfo.Name;
2013-08-27 22:29:45 +02:00
2019-07-06 16:15:38 +02:00
// Ignore hidden files on UNIX
if (Environment.OSVersion.Platform != PlatformID.Win32NT
&& filename[0] == '.')
2013-08-27 22:08:29 +02:00
{
2019-07-06 16:15:38 +02:00
return true;
2013-02-21 02:33:05 +01:00
}
if (fileInfo.IsDirectory)
2013-02-21 02:33:05 +01:00
{
// Ignore any folders in our list
2019-07-06 16:15:38 +02:00
if (_ignoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
2013-02-21 02:33:05 +01:00
{
return true;
}
2013-04-24 18:37:12 +02:00
if (parent != null)
2013-04-24 18:37:12 +02:00
{
// Ignore trailer folders but allow it at the collection level
2019-07-06 16:15:38 +02:00
if (string.Equals(filename, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase)
&& !(parent is AggregateFolder)
&& !(parent is UserRootFolder))
{
return true;
}
2013-04-24 18:37:12 +02:00
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-04-28 18:25:14 +02:00
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-04-24 18:37:12 +02:00
}
2013-02-21 02:33:05 +01:00
}
else
{
if (parent != null)
2014-12-14 21:01:26 +01:00
{
// Don't resolve these into audio files
2019-07-06 16:15:38 +02:00
if (string.Equals(Path.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename)
&& _libraryManager.IsAudioFile(filename))
2014-12-14 21:01:26 +01:00
{
return true;
}
}
2018-09-12 19:26:21 +02:00
// Ignore samples
2019-07-06 16:15:38 +02:00
Match m = Regex.Match(filename, @"\bsample\b", RegexOptions.IgnoreCase);
2018-09-12 19:26:21 +02:00
return m.Success;
}
2013-02-21 02:33:05 +01:00
return false;
}
}
}