jellyfin/Emby.Naming/Common/EpisodeExpression.cs

49 lines
1.1 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
using System;
2019-01-13 20:17:29 +01:00
using System.Text.RegularExpressions;
2018-09-12 19:26:21 +02:00
namespace Emby.Naming.Common
{
public class EpisodeExpression
{
private string _expression;
2019-05-10 20:37:42 +02:00
private Regex _regex;
2020-01-22 22:18:56 +01:00
public EpisodeExpression(string expression, bool byDate)
{
Expression = expression;
IsByDate = byDate;
DateTimeFormats = Array.Empty<string>();
SupportsAbsoluteEpisodeNumbers = true;
}
public EpisodeExpression(string expression)
: this(expression, false)
{
}
2019-05-10 20:37:42 +02:00
public string Expression
{
get => _expression;
set
{
_expression = value;
_regex = null;
}
}
2018-09-12 19:26:21 +02:00
public bool IsByDate { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
public bool IsOptimistic { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
public bool IsNamed { get; set; }
2019-05-10 20:37:42 +02:00
2018-09-12 19:26:21 +02:00
public bool SupportsAbsoluteEpisodeNumbers { get; set; }
public string[] DateTimeFormats { get; set; }
2020-04-19 11:57:03 +02:00
public Regex Regex => _regex ??= new Regex(Expression, RegexOptions.IgnoreCase | RegexOptions.Compiled);
2018-09-12 19:26:21 +02:00
}
}