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

92 lines
3.1 KiB
C#
Raw Normal View History

using System;
using System.IO;
2020-06-25 05:31:43 -04:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Entities;
2013-04-24 12:03:10 -04:00
using MediaBrowser.Controller.Library;
using MediaBrowser.Controller.Resolvers;
2016-10-25 15:02:04 -04:00
using MediaBrowser.Model.IO;
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.
2013-02-20 20:33:05 -05:00
/// </summary>
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
2013-02-20 20:33:05 -05:00
{
2014-11-16 15:44:08 -05:00
private readonly ILibraryManager _libraryManager;
2020-06-25 05:31:43 -04:00
private readonly IServerApplicationPaths _serverApplicationPaths;
2019-11-01 13:38:54 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="CoreResolutionIgnoreRule"/> class.
/// </summary>
/// <param name="libraryManager">The library manager.</param>
2020-06-25 05:31:43 -04:00
/// <param name="serverApplicationPaths">The server application paths.</param>
public CoreResolutionIgnoreRule(ILibraryManager libraryManager, IServerApplicationPaths serverApplicationPaths)
{
2014-11-16 15:44:08 -05:00
_libraryManager = libraryManager;
2020-06-25 05:31:43 -04:00
_serverApplicationPaths = serverApplicationPaths;
}
2019-07-06 10:15:38 -04:00
/// <inheritdoc />
public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent)
2013-02-20 20:33:05 -05:00
{
2020-06-25 05:31:43 -04:00
// Don't ignore application folders
if (fileInfo.FullName.Contains(_serverApplicationPaths.RootFolderPath, StringComparison.InvariantCulture))
{
return false;
}
2016-12-28 01:40:03 -05:00
// Don't ignore top level folders
if (fileInfo.IsDirectory && parent is AggregateFolder)
{
return false;
}
2020-05-12 17:33:06 -04:00
if (IgnorePatterns.ShouldIgnore(fileInfo.FullName))
2013-08-27 16:08:29 -04:00
{
2019-07-06 10:15:38 -04:00
return true;
2013-02-20 20:33:05 -05:00
}
2020-05-12 17:33:06 -04:00
var filename = fileInfo.Name;
if (fileInfo.IsDirectory)
2013-02-20 20:33:05 -05:00
{
if (parent != null)
2013-04-24 12:37:12 -04:00
{
// Ignore trailer folders but allow it at the collection level
2021-09-19 19:54:00 -04:00
if (string.Equals(filename, BaseItem.TrailersFolderName, StringComparison.OrdinalIgnoreCase)
2019-07-06 10:15:38 -04:00
&& !(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
2021-09-19 19:54:00 -04:00
if (Path.GetFileNameWithoutExtension(filename.AsSpan()).Equals(BaseItem.ThemeSongFileName, StringComparison.Ordinal)
2019-07-06 10:15:38 -04:00
&& _libraryManager.IsAudioFile(filename))
2014-12-14 15:01:26 -05:00
{
return true;
}
}
}
2013-02-20 20:33:05 -05:00
return false;
}
}
}