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

83 lines
2.7 KiB
C#
Raw Normal View History

using System;
using System.IO;
using Emby.Naming.Audio;
using Emby.Naming.Common;
2020-06-25 11:31:43 +02:00
using MediaBrowser.Controller;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Resolvers;
2016-10-25 21:02:04 +02:00
using MediaBrowser.Model.IO;
2013-02-21 02:33:05 +01:00
namespace Emby.Server.Implementations.Library
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// Provides the core resolver ignore rules.
2013-02-21 02:33:05 +01:00
/// </summary>
public class CoreResolutionIgnoreRule : IResolverIgnoreRule
2013-02-21 02:33:05 +01:00
{
private readonly NamingOptions _namingOptions;
2020-06-25 11:31:43 +02:00
private readonly IServerApplicationPaths _serverApplicationPaths;
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="CoreResolutionIgnoreRule"/> class.
/// </summary>
/// <param name="namingOptions">The naming options.</param>
2020-06-25 11:31:43 +02:00
/// <param name="serverApplicationPaths">The server application paths.</param>
public CoreResolutionIgnoreRule(NamingOptions namingOptions, IServerApplicationPaths serverApplicationPaths)
{
_namingOptions = namingOptions;
2020-06-25 11:31:43 +02:00
_serverApplicationPaths = serverApplicationPaths;
}
2019-07-06 16:15:38 +02:00
/// <inheritdoc />
public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem parent)
2013-02-21 02:33:05 +01:00
{
2020-06-25 11:31:43 +02:00
// Don't ignore application folders
if (fileInfo.FullName.Contains(_serverApplicationPaths.RootFolderPath, StringComparison.InvariantCulture))
{
return false;
}
2016-12-28 07:40:03 +01:00
// Don't ignore top level folders
if (fileInfo.IsDirectory && parent is AggregateFolder)
{
return false;
}
2020-05-12 23:33:06 +02:00
if (IgnorePatterns.ShouldIgnore(fileInfo.FullName))
2013-08-27 22:08:29 +02:00
{
2019-07-06 16:15:38 +02:00
return true;
2013-02-21 02:33:05 +01:00
}
2020-05-12 23:33:06 +02:00
var filename = fileInfo.Name;
if (fileInfo.IsDirectory)
2013-02-21 02:33:05 +01:00
{
2022-12-05 15:01:13 +01:00
if (parent is not null)
2013-04-24 18:37:12 +02:00
{
2021-12-20 12:15:20 +01:00
// Ignore extras folders but allow it at the collection level
if (_namingOptions.AllExtrasTypesFolderNames.ContainsKey(filename)
&& parent is not AggregateFolder
&& parent is not UserRootFolder)
{
return true;
}
2013-04-24 18:37:12 +02:00
}
2013-02-21 02:33:05 +01:00
}
else
{
2022-12-05 15:01:13 +01:00
if (parent is not null)
2014-12-14 21:01:26 +01:00
{
// Don't resolve these into audio files
2021-09-20 01:54:00 +02:00
if (Path.GetFileNameWithoutExtension(filename.AsSpan()).Equals(BaseItem.ThemeSongFileName, StringComparison.Ordinal)
&& AudioFileParser.IsAudioFile(filename, _namingOptions))
2014-12-14 21:01:26 +01:00
{
return true;
}
}
}
2013-02-21 02:33:05 +01:00
return false;
}
}
}