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