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