2013-03-07 01:19:49 +01:00
|
|
|
using NLog;
|
|
|
|
using NzbDrone.Core.History;
|
2013-04-15 03:41:39 +02:00
|
|
|
using NzbDrone.Core.Parser.Model;
|
2013-03-07 01:19:49 +01:00
|
|
|
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
|
|
{
|
2013-04-07 09:30:37 +02:00
|
|
|
public class UpgradeHistorySpecification : IDecisionEngineSpecification
|
2013-03-07 01:19:49 +01:00
|
|
|
{
|
|
|
|
private readonly IHistoryService _historyService;
|
|
|
|
private readonly QualityUpgradableSpecification _qualityUpgradableSpecification;
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
|
|
public UpgradeHistorySpecification(IHistoryService historyService, QualityUpgradableSpecification qualityUpgradableSpecification, Logger logger)
|
|
|
|
{
|
|
|
|
_historyService = historyService;
|
|
|
|
_qualityUpgradableSpecification = qualityUpgradableSpecification;
|
|
|
|
_logger = logger;
|
|
|
|
}
|
|
|
|
|
|
|
|
public string RejectionReason
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
return "Higher quality report exists in history";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-04-15 03:41:39 +02:00
|
|
|
public virtual bool IsSatisfiedBy(RemoteEpisode subject)
|
2013-03-07 01:19:49 +01:00
|
|
|
{
|
|
|
|
foreach (var episode in subject.Episodes)
|
|
|
|
{
|
2013-03-25 02:38:11 +01:00
|
|
|
var bestQualityInHistory = _historyService.GetBestQualityInHistory(episode.Id);
|
2013-03-07 01:19:49 +01:00
|
|
|
if (bestQualityInHistory != null)
|
|
|
|
{
|
|
|
|
_logger.Trace("Comparing history quality with report. History is {0}", bestQualityInHistory);
|
2013-04-28 21:46:13 +02:00
|
|
|
if (!_qualityUpgradableSpecification.IsUpgradable(subject.Series.QualityProfile, bestQualityInHistory, subject.ParsedEpisodeInfo.Quality))
|
2013-03-07 01:19:49 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|