| | 1 | | using System; |
| | 2 | | using System.IO; |
| | 3 | | using System.Text.RegularExpressions; |
| | 4 | | using Emby.Naming.Audio; |
| | 5 | | using Emby.Naming.Common; |
| | 6 | |
|
| | 7 | | namespace Emby.Naming.Video |
| | 8 | | { |
| | 9 | | /// <summary> |
| | 10 | | /// Resolve if file is extra for video. |
| | 11 | | /// </summary> |
| | 12 | | public static class ExtraRuleResolver |
| | 13 | | { |
| 2 | 14 | | private static readonly char[] _digits = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9' }; |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// Attempts to resolve if file is extra. |
| | 18 | | /// </summary> |
| | 19 | | /// <param name="path">Path to file.</param> |
| | 20 | | /// <param name="namingOptions">The naming options.</param> |
| | 21 | | /// <param name="libraryRoot">Top-level folder for the containing library.</param> |
| | 22 | | /// <returns>Returns <see cref="ExtraResult"/> object.</returns> |
| | 23 | | public static ExtraResult GetExtraInfo(string path, NamingOptions namingOptions, string? libraryRoot = "") |
| | 24 | | { |
| 364 | 25 | | var result = new ExtraResult(); |
| | 26 | |
|
| 19870 | 27 | | for (var i = 0; i < namingOptions.VideoExtraRules.Length; i++) |
| | 28 | | { |
| 9715 | 29 | | var rule = namingOptions.VideoExtraRules[i]; |
| 9715 | 30 | | if ((rule.MediaType == MediaType.Audio && !AudioFileParser.IsAudioFile(path, namingOptions)) |
| 9715 | 31 | | || (rule.MediaType == MediaType.Video && !VideoResolver.IsVideoFile(path, namingOptions))) |
| | 32 | | { |
| | 33 | | continue; |
| | 34 | | } |
| | 35 | |
|
| 8469 | 36 | | var pathSpan = path.AsSpan(); |
| 8469 | 37 | | if (rule.RuleType == ExtraRuleType.Filename) |
| | 38 | | { |
| 508 | 39 | | var filename = Path.GetFileNameWithoutExtension(pathSpan); |
| | 40 | |
|
| 508 | 41 | | if (filename.Equals(rule.Token, StringComparison.OrdinalIgnoreCase)) |
| | 42 | | { |
| 17 | 43 | | result.ExtraType = rule.ExtraType; |
| 17 | 44 | | result.Rule = rule; |
| | 45 | | } |
| | 46 | | } |
| 7961 | 47 | | else if (rule.RuleType == ExtraRuleType.Suffix) |
| | 48 | | { |
| | 49 | | // Trim the digits from the end of the filename so we can recognize things like -trailer2 |
| 3991 | 50 | | var filename = Path.GetFileNameWithoutExtension(pathSpan).TrimEnd(_digits); |
| | 51 | |
|
| 3991 | 52 | | if (filename.EndsWith(rule.Token, StringComparison.OrdinalIgnoreCase)) |
| | 53 | | { |
| 56 | 54 | | result.ExtraType = rule.ExtraType; |
| 56 | 55 | | result.Rule = rule; |
| | 56 | | } |
| | 57 | | } |
| 3970 | 58 | | else if (rule.RuleType == ExtraRuleType.Regex) |
| | 59 | | { |
| 1 | 60 | | var filename = Path.GetFileName(path.AsSpan()); |
| | 61 | |
|
| 1 | 62 | | var isMatch = Regex.IsMatch(filename, rule.Token, RegexOptions.IgnoreCase | RegexOptions.Compiled); |
| | 63 | |
|
| 1 | 64 | | if (isMatch) |
| | 65 | | { |
| 1 | 66 | | result.ExtraType = rule.ExtraType; |
| 1 | 67 | | result.Rule = rule; |
| | 68 | | } |
| | 69 | | } |
| 3969 | 70 | | else if (rule.RuleType == ExtraRuleType.DirectoryName) |
| | 71 | | { |
| 3969 | 72 | | var directoryName = Path.GetFileName(Path.GetDirectoryName(pathSpan)); |
| 3969 | 73 | | string fullDirectory = Path.GetDirectoryName(pathSpan).ToString(); |
| 3969 | 74 | | if (directoryName.Equals(rule.Token, StringComparison.OrdinalIgnoreCase) |
| 3969 | 75 | | && !string.Equals(fullDirectory, libraryRoot, StringComparison.OrdinalIgnoreCase)) |
| | 76 | | { |
| 70 | 77 | | result.ExtraType = rule.ExtraType; |
| 70 | 78 | | result.Rule = rule; |
| | 79 | | } |
| | 80 | | } |
| | 81 | |
|
| 8469 | 82 | | if (result.ExtraType is not null) |
| | 83 | | { |
| 144 | 84 | | return result; |
| | 85 | | } |
| | 86 | | } |
| | 87 | |
|
| 220 | 88 | | return result; |
| | 89 | | } |
| | 90 | | } |
| | 91 | | } |