2015-01-17 20:12:02 +00:00
|
|
|
|
using MediaBrowser.Model.Extensions;
|
2014-01-01 18:26:31 +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-02-21 01:33:05 +00:00
|
|
|
|
using System;
|
2014-12-11 06:20:28 +00:00
|
|
|
|
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;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
using MediaBrowser.Common.IO;
|
|
|
|
|
using MediaBrowser.Controller.IO;
|
|
|
|
|
using MediaBrowser.Model.IO;
|
2016-12-28 06:40:03 +00:00
|
|
|
|
using MediaBrowser.Model.Logging;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
2016-11-03 06:37:52 +00:00
|
|
|
|
namespace Emby.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
|
|
|
|
{
|
2014-01-01 18:26:31 +00:00
|
|
|
|
private readonly IFileSystem _fileSystem;
|
2014-11-16 20:44:08 +00:00
|
|
|
|
private readonly ILibraryManager _libraryManager;
|
2016-12-28 06:40:03 +00:00
|
|
|
|
private readonly ILogger _logger;
|
2014-01-01 18:26:31 +00:00
|
|
|
|
|
2014-12-11 06:20:28 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Any folder named in this list will be ignored - can be added to at runtime for extensibility
|
|
|
|
|
/// </summary>
|
|
|
|
|
public static readonly List<string> IgnoreFolders = new List<string>
|
|
|
|
|
{
|
|
|
|
|
"metadata",
|
|
|
|
|
"ps3_update",
|
|
|
|
|
"ps3_vprm",
|
|
|
|
|
"extrafanart",
|
|
|
|
|
"extrathumbs",
|
|
|
|
|
".actors",
|
2015-03-24 00:22:00 +00:00
|
|
|
|
".wd_tv",
|
|
|
|
|
|
|
|
|
|
// Synology
|
2015-05-21 20:53:14 +00:00
|
|
|
|
"@eaDir",
|
2016-09-23 06:21:54 +00:00
|
|
|
|
"eaDir",
|
|
|
|
|
"#recycle"
|
2014-12-11 06:20:28 +00:00
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
2016-12-28 06:40:03 +00:00
|
|
|
|
public CoreResolutionIgnoreRule(IFileSystem fileSystem, ILibraryManager libraryManager, ILogger logger)
|
2014-01-01 18:26:31 +00:00
|
|
|
|
{
|
|
|
|
|
_fileSystem = fileSystem;
|
2014-11-16 20:44:08 +00:00
|
|
|
|
_libraryManager = libraryManager;
|
2016-12-28 06:40:03 +00:00
|
|
|
|
_logger = logger;
|
2014-01-01 18:26:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Shoulds the ignore.
|
|
|
|
|
/// </summary>
|
2015-11-04 23:49:06 +00:00
|
|
|
|
/// <param name="fileInfo">The file information.</param>
|
|
|
|
|
/// <param name="parent">The parent.</param>
|
2013-02-23 07:57:11 +00:00
|
|
|
|
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
|
2015-11-04 23:49:06 +00:00
|
|
|
|
public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2016-12-28 06:40:03 +00:00
|
|
|
|
// Don't ignore top level folders
|
|
|
|
|
if (fileInfo.IsDirectory && parent is AggregateFolder)
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2015-11-04 23:49:06 +00:00
|
|
|
|
var filename = fileInfo.Name;
|
2016-10-25 19:02:04 +00:00
|
|
|
|
var isHidden = fileInfo.IsHidden;
|
2015-11-04 23:49:06 +00:00
|
|
|
|
var path = fileInfo.FullName;
|
2013-08-27 20:29:45 +00:00
|
|
|
|
|
2013-08-27 20:08:29 +00:00
|
|
|
|
// Handle mac .DS_Store
|
|
|
|
|
// https://github.com/MediaBrowser/MediaBrowser/issues/427
|
2013-08-27 20:29:45 +00:00
|
|
|
|
if (filename.IndexOf("._", StringComparison.OrdinalIgnoreCase) == 0)
|
2013-08-27 20:08:29 +00:00
|
|
|
|
{
|
2014-02-17 21:35:08 +00:00
|
|
|
|
return true;
|
2013-08-27 20:08:29 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-21 01:33:05 +00:00
|
|
|
|
// Ignore hidden files and folders
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (isHidden)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
2015-11-08 05:04:38 +00:00
|
|
|
|
if (parent == null)
|
2013-04-24 16:03:10 +00:00
|
|
|
|
{
|
2015-11-04 23:49:06 +00:00
|
|
|
|
var parentFolderName = Path.GetFileName(Path.GetDirectoryName(path));
|
|
|
|
|
|
|
|
|
|
if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
if (string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-04-24 16:03:10 +00:00
|
|
|
|
}
|
2013-04-28 16:25:14 +00:00
|
|
|
|
|
2014-01-01 18:26:31 +00:00
|
|
|
|
// Sometimes these are marked hidden
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (_fileSystem.IsRootPath(path))
|
2013-06-11 20:35:54 +00:00
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-28 16:25:14 +00:00
|
|
|
|
return true;
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
|
|
|
|
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (fileInfo.IsDirectory)
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
// Ignore any folders in our list
|
2014-12-11 06:20:28 +00:00
|
|
|
|
if (IgnoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
|
2013-02-21 01:33:05 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-04-24 16:37:12 +00:00
|
|
|
|
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (parent != null)
|
2013-04-24 16:37:12 +00:00
|
|
|
|
{
|
2015-11-04 23:49:06 +00:00
|
|
|
|
// Ignore trailer folders but allow it at the collection level
|
|
|
|
|
if (string.Equals(filename, BaseItem.TrailerFolderName, StringComparison.OrdinalIgnoreCase) &&
|
|
|
|
|
!(parent is AggregateFolder) && !(parent is UserRootFolder))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-04-24 16:37:12 +00:00
|
|
|
|
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-04-28 16:25:14 +00:00
|
|
|
|
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-04-24 16:37:12 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
}
|
2013-06-01 22:18:27 +00:00
|
|
|
|
else
|
|
|
|
|
{
|
2015-11-04 23:49:06 +00:00
|
|
|
|
if (parent != null)
|
2014-12-14 20:01:26 +00:00
|
|
|
|
{
|
|
|
|
|
// Don't resolve these into audio files
|
|
|
|
|
if (string.Equals(_fileSystem.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) && _libraryManager.IsAudioFile(filename))
|
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-06-22 16:25:47 +00:00
|
|
|
|
// Ignore samples
|
2015-01-09 03:34:09 +00:00
|
|
|
|
var sampleFilename = " " + filename.Replace(".", " ", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|
.Replace("-", " ", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|
.Replace("_", " ", StringComparison.OrdinalIgnoreCase)
|
|
|
|
|
.Replace("!", " ", StringComparison.OrdinalIgnoreCase);
|
|
|
|
|
|
|
|
|
|
if (sampleFilename.IndexOf(" sample ", StringComparison.OrdinalIgnoreCase) != -1)
|
2014-06-22 16:25:47 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2013-06-01 22:18:27 +00:00
|
|
|
|
}
|
2013-02-21 01:33:05 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|