34 lines
943 B
C#
34 lines
943 B
C#
using NLog;
|
|
using NzbDrone.Common.Instrumentation;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Core.Parser
|
|
{
|
|
public static class ValidateParsedEpisodeInfo
|
|
{
|
|
private static readonly Logger Logger = NzbDroneLogger.GetLogger(typeof(ValidateParsedEpisodeInfo));
|
|
|
|
public static bool ValidateForSeriesType(ParsedEpisodeInfo parsedEpisodeInfo, Series series, bool warnIfInvalid = true)
|
|
{
|
|
if (parsedEpisodeInfo.IsDaily && series.SeriesType == SeriesTypes.Standard)
|
|
{
|
|
var message = $"Found daily-style episode for non-daily series: {series}";
|
|
|
|
if (warnIfInvalid)
|
|
{
|
|
Logger.Warn(message);
|
|
}
|
|
else
|
|
{
|
|
Logger.Debug(message);
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|