2013-04-07 07:30:37 +00:00
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
2013-04-15 01:41:39 +00:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2013-04-07 07:30:37 +00:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications.Search
|
|
|
|
{
|
2013-08-07 03:18:05 +00:00
|
|
|
public class SeasonMatchSpecification : IDecisionEngineSpecification
|
2013-04-07 07:30:37 +00:00
|
|
|
{
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
|
|
public SeasonMatchSpecification(Logger logger)
|
|
|
|
{
|
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string RejectionReason
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return "Episode doesn't match";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-08-08 03:30:20 +00:00
|
|
|
public bool IsSatisfiedBy(RemoteEpisode remoteEpisode, SearchCriteriaBase searchCriteria)
|
2013-04-07 07:30:37 +00:00
|
|
|
{
|
2013-08-08 03:30:20 +00:00
|
|
|
if (searchCriteria == null)
|
2013-08-07 03:18:05 +00:00
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-08-08 03:30:20 +00:00
|
|
|
var singleEpisodeSpec = searchCriteria as SeasonSearchCriteria;
|
2013-04-07 07:30:37 +00:00
|
|
|
if (singleEpisodeSpec == null) return true;
|
|
|
|
|
2013-04-28 19:46:13 +00:00
|
|
|
if (singleEpisodeSpec.SeasonNumber != remoteEpisode.ParsedEpisodeInfo.SeasonNumber)
|
2013-04-07 07:30:37 +00:00
|
|
|
{
|
|
|
|
_logger.Trace("Season number does not match searched season number, skipping.");
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-15 01:41:39 +00:00
|
|
|
|
2013-04-07 07:30:37 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|