| | 1 | | using System.IO; |
| | 2 | | using System.Text.RegularExpressions; |
| | 3 | | using Emby.Naming.Common; |
| | 4 | |
|
| | 5 | | namespace Emby.Naming.TV |
| | 6 | | { |
| | 7 | | /// <summary> |
| | 8 | | /// Used to resolve information about series from path. |
| | 9 | | /// </summary> |
| | 10 | | public static partial class SeriesResolver |
| | 11 | | { |
| | 12 | | /// <summary> |
| | 13 | | /// Regex that matches strings of at least 2 characters separated by a dot or underscore. |
| | 14 | | /// Used for removing separators between words, i.e turns "The_show" into "The show" while |
| | 15 | | /// preserving names like "S.H.O.W". |
| | 16 | | /// </summary> |
| | 17 | | [GeneratedRegex(@"((?<a>[^\._]{2,})[\._]*)|([\._](?<b>[^\._]{2,}))")] |
| | 18 | | private static partial Regex SeriesNameRegex(); |
| | 19 | |
|
| | 20 | | /// <summary> |
| | 21 | | /// Resolve information about series from path. |
| | 22 | | /// </summary> |
| | 23 | | /// <param name="options"><see cref="NamingOptions"/> object passed to <see cref="SeriesPathParser"/>.</param> |
| | 24 | | /// <param name="path">Path to series.</param> |
| | 25 | | /// <returns>SeriesInfo.</returns> |
| | 26 | | public static SeriesInfo Resolve(NamingOptions options, string path) |
| | 27 | | { |
| 10 | 28 | | string seriesName = Path.GetFileName(path); |
| | 29 | |
|
| 10 | 30 | | SeriesPathParserResult result = SeriesPathParser.Parse(options, path); |
| 10 | 31 | | if (result.Success) |
| | 32 | | { |
| 8 | 33 | | if (!string.IsNullOrEmpty(result.SeriesName)) |
| | 34 | | { |
| 8 | 35 | | seriesName = result.SeriesName; |
| | 36 | | } |
| | 37 | | } |
| | 38 | |
|
| 10 | 39 | | if (!string.IsNullOrEmpty(seriesName)) |
| | 40 | | { |
| 10 | 41 | | seriesName = SeriesNameRegex().Replace(seriesName, "${a} ${b}").Trim(); |
| | 42 | | } |
| | 43 | |
|
| 10 | 44 | | return new SeriesInfo(path) |
| 10 | 45 | | { |
| 10 | 46 | | Name = seriesName |
| 10 | 47 | | }; |
| | 48 | | } |
| | 49 | | } |
| | 50 | | } |