| | 1 | | using System; |
| | 2 | | using System.Globalization; |
| | 3 | | using System.IO; |
| | 4 | | using System.Text.RegularExpressions; |
| | 5 | |
|
| | 6 | | namespace Emby.Naming.TV |
| | 7 | | { |
| | 8 | | /// <summary> |
| | 9 | | /// Class to parse season paths. |
| | 10 | | /// </summary> |
| | 11 | | public static partial class SeasonPathParser |
| | 12 | | { |
| | 13 | | [GeneratedRegex(@"^\s*((?<seasonnumber>(?>\d+))(?:st|nd|rd|th|\.)*(?!\s*[Ee]\d+))\s*(?:[[시즌]*|[シーズン]*|[sS](?:eas |
| | 14 | | private static partial Regex ProcessPre(); |
| | 15 | |
|
| | 16 | | [GeneratedRegex(@"^\s*(?:[[시즌]*|[シーズン]*|[sS](?:eason|æson|aison|taffel|eries|tagione|äsong|eizoen|easong|ezon|ez |
| | 17 | | private static partial Regex ProcessPost(); |
| | 18 | |
|
| | 19 | | /// <summary> |
| | 20 | | /// Attempts to parse season number from path. |
| | 21 | | /// </summary> |
| | 22 | | /// <param name="path">Path to season.</param> |
| | 23 | | /// <param name="parentPath">Folder name of the parent.</param> |
| | 24 | | /// <param name="supportSpecialAliases">Support special aliases when parsing.</param> |
| | 25 | | /// <param name="supportNumericSeasonFolders">Support numeric season folders when parsing.</param> |
| | 26 | | /// <returns>Returns <see cref="SeasonPathParserResult"/> object.</returns> |
| | 27 | | public static SeasonPathParserResult Parse(string path, string? parentPath, bool supportSpecialAliases, bool sup |
| | 28 | | { |
| 42 | 29 | | var result = new SeasonPathParserResult(); |
| 42 | 30 | | var parentFolderName = parentPath is null ? null : new DirectoryInfo(parentPath).Name; |
| | 31 | |
|
| 42 | 32 | | var (seasonNumber, isSeasonFolder) = GetSeasonNumberFromPath(path, parentFolderName, supportSpecialAliases, |
| | 33 | |
|
| 42 | 34 | | result.SeasonNumber = seasonNumber; |
| | 35 | |
|
| 42 | 36 | | if (result.SeasonNumber.HasValue) |
| | 37 | | { |
| 37 | 38 | | result.Success = true; |
| 37 | 39 | | result.IsSeasonFolder = isSeasonFolder; |
| | 40 | | } |
| | 41 | |
|
| 42 | 42 | | return result; |
| | 43 | | } |
| | 44 | |
|
| | 45 | | /// <summary> |
| | 46 | | /// Gets the season number from path. |
| | 47 | | /// </summary> |
| | 48 | | /// <param name="path">The path.</param> |
| | 49 | | /// <param name="parentFolderName">The parent folder name.</param> |
| | 50 | | /// <param name="supportSpecialAliases">if set to <c>true</c> [support special aliases].</param> |
| | 51 | | /// <param name="supportNumericSeasonFolders">if set to <c>true</c> [support numeric season folders].</param> |
| | 52 | | /// <returns>System.Nullable{System.Int32}.</returns> |
| | 53 | | private static (int? SeasonNumber, bool IsSeasonFolder) GetSeasonNumberFromPath( |
| | 54 | | string path, |
| | 55 | | string? parentFolderName, |
| | 56 | | bool supportSpecialAliases, |
| | 57 | | bool supportNumericSeasonFolders) |
| | 58 | | { |
| 42 | 59 | | string filename = Path.GetFileName(path); |
| 42 | 60 | | filename = Regex.Replace(filename, "[ ._-]", string.Empty); |
| | 61 | |
|
| 42 | 62 | | if (parentFolderName is not null) |
| | 63 | | { |
| 42 | 64 | | parentFolderName = Regex.Replace(parentFolderName, "[ ._-]", string.Empty); |
| 42 | 65 | | filename = filename.Replace(parentFolderName, string.Empty, StringComparison.OrdinalIgnoreCase); |
| | 66 | | } |
| | 67 | |
|
| 42 | 68 | | if (supportSpecialAliases) |
| | 69 | | { |
| 42 | 70 | | if (string.Equals(filename, "specials", StringComparison.OrdinalIgnoreCase)) |
| | 71 | | { |
| 1 | 72 | | return (0, true); |
| | 73 | | } |
| | 74 | |
|
| 41 | 75 | | if (string.Equals(filename, "extras", StringComparison.OrdinalIgnoreCase)) |
| | 76 | | { |
| 1 | 77 | | return (0, true); |
| | 78 | | } |
| | 79 | | } |
| | 80 | |
|
| 40 | 81 | | if (supportNumericSeasonFolders) |
| | 82 | | { |
| 40 | 83 | | if (int.TryParse(filename, NumberStyles.Integer, CultureInfo.InvariantCulture, out var val)) |
| | 84 | | { |
| 1 | 85 | | return (val, true); |
| | 86 | | } |
| | 87 | | } |
| | 88 | |
|
| 39 | 89 | | if (filename.StartsWith('s')) |
| | 90 | | { |
| 6 | 91 | | var testFilename = filename.AsSpan()[1..]; |
| | 92 | |
|
| 6 | 93 | | if (int.TryParse(testFilename, NumberStyles.Integer, CultureInfo.InvariantCulture, out var val)) |
| | 94 | | { |
| 1 | 95 | | return (val, true); |
| | 96 | | } |
| | 97 | | } |
| | 98 | |
|
| 38 | 99 | | var preMatch = ProcessPre().Match(filename); |
| 38 | 100 | | if (preMatch.Success) |
| | 101 | | { |
| 1 | 102 | | return CheckMatch(preMatch); |
| | 103 | | } |
| | 104 | | else |
| | 105 | | { |
| 37 | 106 | | var postMatch = ProcessPost().Match(filename); |
| 37 | 107 | | return CheckMatch(postMatch); |
| | 108 | | } |
| | 109 | | } |
| | 110 | |
|
| | 111 | | private static (int? SeasonNumber, bool IsSeasonFolder) CheckMatch(Match match) |
| | 112 | | { |
| 38 | 113 | | var numberString = match.Groups["seasonnumber"]; |
| 38 | 114 | | if (numberString.Success) |
| | 115 | | { |
| 33 | 116 | | var seasonNumber = int.Parse(numberString.Value, CultureInfo.InvariantCulture); |
| 33 | 117 | | return (seasonNumber, true); |
| | 118 | | } |
| | 119 | |
|
| 5 | 120 | | return (null, false); |
| | 121 | | } |
| | 122 | |
|
| | 123 | | /// <summary> |
| | 124 | | /// Extracts the season number from the second half of the Season folder name (everything after "Season", or "St |
| | 125 | | /// </summary> |
| | 126 | | /// <param name="path">The path.</param> |
| | 127 | | /// <returns>System.Nullable{System.Int32}.</returns> |
| | 128 | | private static (int? SeasonNumber, bool IsSeasonFolder) GetSeasonNumberFromPathSubstring(ReadOnlySpan<char> path |
| | 129 | | { |
| 0 | 130 | | var numericStart = -1; |
| 0 | 131 | | var length = 0; |
| | 132 | |
|
| 0 | 133 | | var hasOpenParenthesis = false; |
| 0 | 134 | | var isSeasonFolder = true; |
| | 135 | |
|
| | 136 | | // Find out where the numbers start, and then keep going until they end |
| 0 | 137 | | for (var i = 0; i < path.Length; i++) |
| | 138 | | { |
| 0 | 139 | | if (char.IsNumber(path[i])) |
| | 140 | | { |
| 0 | 141 | | if (!hasOpenParenthesis) |
| | 142 | | { |
| 0 | 143 | | if (numericStart == -1) |
| | 144 | | { |
| 0 | 145 | | numericStart = i; |
| | 146 | | } |
| | 147 | |
|
| 0 | 148 | | length++; |
| | 149 | | } |
| | 150 | | } |
| 0 | 151 | | else if (numericStart != -1) |
| | 152 | | { |
| | 153 | | // There's other stuff after the season number, e.g. episode number |
| 0 | 154 | | isSeasonFolder = false; |
| 0 | 155 | | break; |
| | 156 | | } |
| | 157 | |
|
| 0 | 158 | | var currentChar = path[i]; |
| 0 | 159 | | if (currentChar == '(') |
| | 160 | | { |
| 0 | 161 | | hasOpenParenthesis = true; |
| | 162 | | } |
| 0 | 163 | | else if (currentChar == ')') |
| | 164 | | { |
| 0 | 165 | | hasOpenParenthesis = false; |
| | 166 | | } |
| | 167 | | } |
| | 168 | |
|
| 0 | 169 | | if (numericStart == -1) |
| | 170 | | { |
| 0 | 171 | | return (null, isSeasonFolder); |
| | 172 | | } |
| | 173 | |
|
| 0 | 174 | | return (int.Parse(path.Slice(numericStart, length), provider: CultureInfo.InvariantCulture), isSeasonFolder) |
| | 175 | | } |
| | 176 | | } |
| | 177 | | } |