| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using Emby.Naming.Audio; |
| | 4 | | using Emby.Naming.Common; |
| | 5 | | using MediaBrowser.Controller; |
| | 6 | | using MediaBrowser.Controller.Entities; |
| | 7 | | using MediaBrowser.Controller.Resolvers; |
| | 8 | | using MediaBrowser.Model.IO; |
| | 9 | |
|
| | 10 | | namespace Emby.Server.Implementations.Library |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Provides the core resolver ignore rules. |
| | 14 | | /// </summary> |
| | 15 | | public class CoreResolutionIgnoreRule : IResolverIgnoreRule |
| | 16 | | { |
| | 17 | | private readonly NamingOptions _namingOptions; |
| | 18 | | private readonly IServerApplicationPaths _serverApplicationPaths; |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Initializes a new instance of the <see cref="CoreResolutionIgnoreRule"/> class. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="namingOptions">The naming options.</param> |
| | 24 | | /// <param name="serverApplicationPaths">The server application paths.</param> |
| | 25 | | public CoreResolutionIgnoreRule(NamingOptions namingOptions, IServerApplicationPaths serverApplicationPaths) |
| | 26 | | { |
| 21 | 27 | | _namingOptions = namingOptions; |
| 21 | 28 | | _serverApplicationPaths = serverApplicationPaths; |
| 21 | 29 | | } |
| | 30 | |
|
| | 31 | | /// <inheritdoc /> |
| | 32 | | public bool ShouldIgnore(FileSystemMetadata fileInfo, BaseItem? parent) |
| | 33 | | { |
| | 34 | | // Don't ignore application folders |
| 83 | 35 | | if (fileInfo.FullName.Contains(_serverApplicationPaths.RootFolderPath, StringComparison.InvariantCulture)) |
| | 36 | | { |
| 83 | 37 | | return false; |
| | 38 | | } |
| | 39 | |
|
| | 40 | | // Don't ignore top level folders |
| 0 | 41 | | if (fileInfo.IsDirectory && parent is AggregateFolder) |
| | 42 | | { |
| 0 | 43 | | return false; |
| | 44 | | } |
| | 45 | |
|
| 0 | 46 | | if (IgnorePatterns.ShouldIgnore(fileInfo.FullName)) |
| | 47 | | { |
| 0 | 48 | | return true; |
| | 49 | | } |
| | 50 | |
|
| 0 | 51 | | var filename = fileInfo.Name; |
| | 52 | |
|
| 0 | 53 | | if (fileInfo.IsDirectory) |
| | 54 | | { |
| 0 | 55 | | if (parent is not null) |
| | 56 | | { |
| | 57 | | // Ignore extras folders but allow it at the collection level |
| 0 | 58 | | if (_namingOptions.AllExtrasTypesFolderNames.ContainsKey(filename) |
| 0 | 59 | | && parent is not AggregateFolder |
| 0 | 60 | | && parent is not UserRootFolder) |
| | 61 | | { |
| 0 | 62 | | return true; |
| | 63 | | } |
| | 64 | | } |
| | 65 | | } |
| | 66 | | else |
| | 67 | | { |
| 0 | 68 | | if (parent is not null) |
| | 69 | | { |
| | 70 | | // Don't resolve these into audio files |
| 0 | 71 | | if (Path.GetFileNameWithoutExtension(filename.AsSpan()).Equals(BaseItem.ThemeSongFileName, StringCom |
| 0 | 72 | | && AudioFileParser.IsAudioFile(filename, _namingOptions)) |
| | 73 | | { |
| 0 | 74 | | return true; |
| | 75 | | } |
| | 76 | | } |
| | 77 | | } |
| | 78 | |
|
| 0 | 79 | | return false; |
| | 80 | | } |
| | 81 | | } |
| | 82 | | } |