2013-03-07 00:19:49 +00:00
|
|
|
using System.Linq;
|
2012-02-07 05:08:07 +00:00
|
|
|
using NLog;
|
2013-04-15 01:41:39 +00:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
2013-03-07 00:19:49 +00:00
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-04-07 07:30:37 +00:00
|
|
|
public class MonitoredEpisodeSpecification : IDecisionEngineSpecification
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-03-07 00:19:49 +00:00
|
|
|
private readonly Logger _logger;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
2013-06-09 06:21:32 +00:00
|
|
|
public MonitoredEpisodeSpecification(Logger logger)
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-03-07 00:19:49 +00:00
|
|
|
_logger = logger;
|
2012-02-07 05:08:07 +00:00
|
|
|
}
|
|
|
|
|
2013-03-07 00:19:49 +00:00
|
|
|
public string RejectionReason
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-03-07 00:19:49 +00:00
|
|
|
get
|
|
|
|
{
|
2013-06-09 06:21:32 +00:00
|
|
|
return "Series is not monitored or Episode is ignored";
|
2013-03-07 00:19:49 +00:00
|
|
|
}
|
2012-02-07 05:08:07 +00:00
|
|
|
}
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
public virtual bool IsSatisfiedBy(RemoteEpisode subject)
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
if (!subject.Series.Monitored)
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
_logger.Debug("{0} is present in the DB but not tracked. skipping.", subject.Series.Title);
|
2012-02-07 05:08:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
//return monitored if any of the episodes are monitored
|
2013-04-15 01:41:39 +00:00
|
|
|
if (subject.Episodes.Any(episode => !episode.Ignored))
|
2012-02-07 05:08:07 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-03-07 00:19:49 +00:00
|
|
|
_logger.Debug("All episodes are ignored. skipping.");
|
2012-02-07 05:08:07 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|