| | 1 | | using System; |
| | 2 | | using System.Text.RegularExpressions; |
| | 3 | |
|
| | 4 | | namespace Emby.Naming.Common |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// Regular expressions for parsing TV Episodes. |
| | 8 | | /// </summary> |
| | 9 | | public class EpisodeExpression |
| | 10 | | { |
| | 11 | | private string _expression; |
| | 12 | | private Regex? _regex; |
| | 13 | |
|
| | 14 | | /// <summary> |
| | 15 | | /// Initializes a new instance of the <see cref="EpisodeExpression"/> class. |
| | 16 | | /// </summary> |
| | 17 | | /// <param name="expression">Regular expressions.</param> |
| | 18 | | /// <param name="byDate">True if date is expected.</param> |
| | 19 | | public EpisodeExpression(string expression, bool byDate = false) |
| | 20 | | { |
| 23350 | 21 | | _expression = expression; |
| 23350 | 22 | | IsByDate = byDate; |
| 23350 | 23 | | DateTimeFormats = Array.Empty<string>(); |
| 23350 | 24 | | SupportsAbsoluteEpisodeNumbers = true; |
| 23350 | 25 | | } |
| | 26 | |
|
| | 27 | | /// <summary> |
| | 28 | | /// Gets or sets raw expressions string. |
| | 29 | | /// </summary> |
| | 30 | | public string Expression |
| | 31 | | { |
| 6504 | 32 | | get => _expression; |
| | 33 | | set |
| | 34 | | { |
| 109 | 35 | | _expression = value; |
| 109 | 36 | | _regex = null; |
| 109 | 37 | | } |
| | 38 | | } |
| | 39 | |
|
| | 40 | | /// <summary> |
| | 41 | | /// Gets or sets a value indicating whether gets or sets property indicating if date can be find in expression. |
| | 42 | | /// </summary> |
| | 43 | | public bool IsByDate { get; set; } |
| | 44 | |
|
| | 45 | | /// <summary> |
| | 46 | | /// Gets or sets a value indicating whether gets or sets property indicating if expression is optimistic. |
| | 47 | | /// </summary> |
| | 48 | | public bool IsOptimistic { get; set; } |
| | 49 | |
|
| | 50 | | /// <summary> |
| | 51 | | /// Gets or sets a value indicating whether gets or sets property indicating if expression is named. |
| | 52 | | /// </summary> |
| | 53 | | public bool IsNamed { get; set; } |
| | 54 | |
|
| | 55 | | /// <summary> |
| | 56 | | /// Gets or sets a value indicating whether gets or sets property indicating if expression supports episodes wit |
| | 57 | | /// </summary> |
| | 58 | | public bool SupportsAbsoluteEpisodeNumbers { get; set; } |
| | 59 | |
|
| | 60 | | /// <summary> |
| | 61 | | /// Gets or sets optional list of date formats used for date parsing. |
| | 62 | | /// </summary> |
| | 63 | | public string[] DateTimeFormats { get; set; } |
| | 64 | |
|
| | 65 | | /// <summary> |
| | 66 | | /// Gets a <see cref="Regex"/> expressions objects (creates it if null). |
| | 67 | | /// </summary> |
| 7231 | 68 | | public Regex Regex => _regex ??= new Regex(Expression, RegexOptions.IgnoreCase | RegexOptions.Compiled); |
| | 69 | | } |
| | 70 | | } |