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

138 lines
4.6 KiB
C#
Raw Normal View History

2015-01-17 15:12:02 -05:00
using MediaBrowser.Model.Extensions;
2015-01-08 22:34:09 -05:00
using MediaBrowser.Common.IO;
using MediaBrowser.Controller.Entities;
2013-04-24 12:03:10 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2013-02-20 20:33:05 -05:00
using System;
2014-12-11 01:20:28 -05:00
using System.Collections.Generic;
using System.IO;
2013-02-20 20:33:05 -05:00
using System.Linq;
2015-10-04 00:23:11 -04:00
using CommonIO;
2013-02-20 20:33:05 -05:00
namespace MediaBrowser.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;
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>
public static readonly List<string> IgnoreFolders = new List<string>
{
"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",
2015-03-23 20:22:00 -04:00
"eaDir"
2014-12-11 01:20:28 -05:00
};
2014-11-16 15:44:08 -05:00
public CoreResolutionIgnoreRule(IFileSystem fileSystem, ILibraryManager libraryManager)
{
_fileSystem = fileSystem;
2014-11-16 15:44:08 -05:00
_libraryManager = libraryManager;
}
2013-02-23 02:57:11 -05: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-20 20:33:05 -05:00
{
2013-08-27 16:29:45 -04:00
var filename = args.FileInfo.Name;
2013-08-27 16:08:29 -04:00
// Handle mac .DS_Store
// https://github.com/MediaBrowser/MediaBrowser/issues/427
2013-08-27 16:29:45 -04:00
if (filename.IndexOf("._", StringComparison.OrdinalIgnoreCase) == 0)
2013-08-27 16:08:29 -04:00
{
return true;
2013-08-27 16:08:29 -04:00
}
2013-02-20 20:33:05 -05:00
// Ignore hidden files and folders
if (args.IsHidden)
{
2013-04-24 12:03:10 -04:00
var parentFolderName = Path.GetFileName(Path.GetDirectoryName(args.Path));
if (string.Equals(parentFolderName, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return false;
}
if (string.Equals(parentFolderName, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-24 12:03:10 -04:00
{
2013-04-28 12:25:14 -04:00
return false;
2013-04-24 12:03:10 -04:00
}
2013-04-28 12:25:14 -04:00
// Sometimes these are marked hidden
if (_fileSystem.IsRootPath(args.Path))
{
return false;
}
2013-04-28 12:25:14 -04:00
return true;
2013-02-20 20:33:05 -05:00
}
if (args.IsDirectory)
{
// Ignore any folders in our list
2014-12-11 01:20:28 -05:00
if (IgnoreFolders.Contains(filename, StringComparer.OrdinalIgnoreCase))
2013-02-20 20:33:05 -05:00
{
return true;
}
2013-04-24 12:37:12 -04:00
2013-05-16 23:42:04 -04: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 12:37:12 -04:00
{
return true;
}
if (string.Equals(filename, BaseItem.ThemeVideosFolderName, StringComparison.OrdinalIgnoreCase))
2013-04-28 12:25:14 -04:00
{
return true;
}
2013-04-24 12:37:12 -04:00
if (string.Equals(filename, BaseItem.ThemeSongsFolderName, StringComparison.OrdinalIgnoreCase))
{
return true;
}
2013-02-20 20:33:05 -05:00
}
else
{
2014-12-14 15:01:26 -05:00
if (args.Parent != null)
{
// Don't resolve these into audio files
if (string.Equals(_fileSystem.GetFileNameWithoutExtension(filename), BaseItem.ThemeSongFilename) && _libraryManager.IsAudioFile(filename))
{
return true;
}
}
2014-06-22 12:25:47 -04:00
// Ignore samples
2015-01-08 22:34:09 -05: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 12:25:47 -04:00
{
return true;
}
}
2013-02-20 20:33:05 -05:00
return false;
}
}
}