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