07cc4be6a7
* Add analyzers to MediaBrowser.XbmcMetadata * Enable TreatWarningsAsErrors for MediaBrowser.XbmcMetadata * Add analyzers to MediaBrowser.WebDashboard * Enable TreatWarningsAsErrors for MediaBrowser.WebDashboard * Disable SA1600 in favor of CS1591
54 lines
1.2 KiB
C#
54 lines
1.2 KiB
C#
#pragma warning disable CS1591
|
|
|
|
using System;
|
|
using System.Text.RegularExpressions;
|
|
|
|
namespace Emby.Naming.Common
|
|
{
|
|
public class EpisodeExpression
|
|
{
|
|
private string _expression;
|
|
private Regex _regex;
|
|
|
|
public EpisodeExpression(string expression, bool byDate)
|
|
{
|
|
Expression = expression;
|
|
IsByDate = byDate;
|
|
DateTimeFormats = Array.Empty<string>();
|
|
SupportsAbsoluteEpisodeNumbers = true;
|
|
}
|
|
|
|
public EpisodeExpression(string expression)
|
|
: this(expression, false)
|
|
{
|
|
}
|
|
|
|
public EpisodeExpression()
|
|
: this(null)
|
|
{
|
|
}
|
|
|
|
public string Expression
|
|
{
|
|
get => _expression;
|
|
set
|
|
{
|
|
_expression = value;
|
|
_regex = null;
|
|
}
|
|
}
|
|
|
|
public bool IsByDate { get; set; }
|
|
|
|
public bool IsOptimistic { get; set; }
|
|
|
|
public bool IsNamed { get; set; }
|
|
|
|
public bool SupportsAbsoluteEpisodeNumbers { get; set; }
|
|
|
|
public string[] DateTimeFormats { get; set; }
|
|
|
|
public Regex Regex => _regex ?? (_regex = new Regex(Expression, RegexOptions.IgnoreCase | RegexOptions.Compiled));
|
|
}
|
|
}
|