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

171 lines
5.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using MediaBrowser.Controller.Entities;
2013-04-24 12:03:10 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
using MediaBrowser.Model.Extensions;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.IO;
using Microsoft.Extensions.Logging;
2013-02-20 20:33:05 -05:00
namespace Emby.Server.Implementations.Library
2013-02-20 20:33:05 -05:00
{
/// <summary>
/// Provides the core resolver ignore rules
/// </summary>
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
2013-02-20 20:33:05 -05:00
{
private readonly IFileSystem _fileSystem;
2014-11-16 15:44:08 -05:00
private readonly ILibraryManager _libraryManager;
2016-12-28 01:40:03 -05:00
private readonly ILogger _logger;
2018-09-12 13:26:21 -04:00
private bool _ignoreDotPrefix;
2014-12-11 01:20:28 -05:00
/// <summary>
/// Any folder named in this list will be ignored - can be added to at runtime for extensibility
/// </summary>
2018-09-12 13:26:21 -04:00
public static readonly Dictionary<string, string> IgnoreFolders = new List<string>
2014-12-11 01:20:28 -05:00
{
"metadata",
"ps3_update",
"ps3_vprm",
"extrafanart",
"extrathumbs",
".actors",
2015-03-23 20:22:00 -04:00
".wd_tv",
// Synology
2015-05-21 16:53:14 -04:00
"@eaDir",
"eaDir",
2017-06-02 15:45:40 -04:00
"#recycle",
// Qnap
2018-09-12 13:26:21 -04:00
"@Recycle",
".@__thumb",
"$RECYCLE.BIN",
"System Volume Information",
".grab",
// macos
".AppleDouble"
}.ToDictionary(i => i, StringComparer.OrdinalIgnoreCase);
2014-12-11 01:20:28 -05:00
2016-12-28 01:40:03 -05:00
public CoreResolutionIgnoreRule(IFileSystem fileSystem, ILibraryManager libraryManager, ILogger logger)
{
_fileSystem = fileSystem;
2014-11-16 15:44:08 -05:00
_libraryManager = libraryManager;
2016-12-28 01:40:03 -05:00
_logger = logger;
2018-09-12 13:26:21 -04:00
_ignoreDotPrefix = Environment.OSVersion.Platform != PlatformID.Win32NT;
}
2013-02-23 02:57:11 -05:00
/// <summary>
/// Shoulds the ignore.
/// </summary>
/// <param name="fileInfo">The file information.</param>
/// <param name="parent">The parent.</param>
2013-02-23 02:57:11 -05:00
/// <returns><c>true</c> if XXXX, <c>false</c> otherwise</returns>
public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent)
2013-02-20 20:33:05 -05:00
{
2016-12-28 01:40:03 -05:00
// Don't ignore top level folders
if (fileInfo.IsDirectory && parent is AggregateFolder)
{
return false;
}
var filename = fileInfo.Name;
var path = fileInfo.FullName;
2013-08-27 16:29:45 -04:00
2013-08-27 16:08:29 -04:00
// Handle mac .DS_Store
// https://github.com/MediaBrowser/MediaBrowser/issues/427
2018-09-12 13:26:21 -04:00
if (_ignoreDotPrefix)
2013-08-27 16:08:29 -04:00
{
2018-09-12 13:26:21 -04:00
if (filename.IndexOf('.') == 0)
2013-04-24 12:03:10 -04:00
{
2018-09-12 13:26:21 -04:00
return true;
}
2013-02-20 20:33:05 -05:00
}
2018-09-12 13:26:21 -04:00
// Ignore hidden files and folders
//if (fileInfo.IsHidden)
//{
// if (parent == null)
// {
// var parentFolderName = Path.GetFileName(_fileSystem.GetDirectoryName(path));
// if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
// {
// return false;
// }
// if (string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
// {
// return false;
// }
// }
// // Sometimes these are marked hidden
// if (_fileSystem.IsRootPath(path))
// {
// return false;
// }
// return true;
//}
if (fileInfo.IsDirectory)
2013-02-20 20:33:05 -05:00
{
// Ignore any folders in our list
2018-09-12 13:26:21 -04:00
if (IgnoreFolders.ContainsKey(filename))
2013-02-20 20:33:05 -05:00
{
return true;
}
2013-04-24 12:37:12 -04:00
if (parent != null)
2013-04-24 12:37:12 -04: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 12:37:12 -04:00
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-04-28 12:25:14 -04:00
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-04-24 12:37:12 -04:00
}
2013-02-20 20:33:05 -05:00
}
else
{
if (parent != null)
2014-12-14 15:01:26 -05:00
{
// Don't resolve these into audio files
if (string.Equals(_fileSystem.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) && _libraryManager.IsAudioFile(filename))
{
return true;
}
}
2018-09-12 13:26:21 -04:00
// Ignore samples
var sampleFilename = " " + filename.Replace(".", " ", StringComparison.OrdinalIgnoreCase)
.Replace("-", " ", StringComparison.OrdinalIgnoreCase)
.Replace("_", " ", StringComparison.OrdinalIgnoreCase)
.Replace("!", " ", StringComparison.OrdinalIgnoreCase);
if (sampleFilename.IndexOf(" sample ", StringComparison.OrdinalIgnoreCase) != -1)
{
return true;
}
}
2013-02-20 20:33:05 -05:00
return false;
}
}
}