1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Providers/DecisionEngine/CustomStartDateSpecification.cs

31 lines
956 B
C#
Raw Normal View History

2012-09-19 04:30:30 +03:00
using System.Linq;
using NLog;
using Ninject;
using NzbDrone.Core.Model;
namespace NzbDrone.Core.Providers.DecisionEngine
{
2012-09-20 18:37:40 +03:00
public class CustomStartDateSpecification
2012-09-19 04:30:30 +03:00
{
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
{
2012-09-20 18:37:40 +03:00
if (!subject.Series.CustomStartDate.HasValue)
2012-09-19 04:30:30 +03:00
{
logger.Debug("{0} does not restrict downloads before date.", subject.Series.Title);
return true;
}
2012-10-21 03:19:30 +03:00
if (subject.Episodes.Any(episode => episode.AirDate >= subject.Series.CustomStartDate.Value))
2012-09-19 04:30:30 +03:00
{
logger.Debug("One or more episodes aired after cutoff, downloading.");
return true;
}
2012-09-20 18:37:40 +03:00
logger.Debug("Episodes aired before cutoff date: {0}", subject.Series.CustomStartDate);
2012-09-19 04:30:30 +03:00
return false;
}
}
}