2012-02-07 05:08:07 +00:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
2013-02-23 21:29:22 +00:00
|
|
|
|
using NzbDrone.Core.History;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-02-19 02:19:38 +00:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2013-02-19 02:19:38 +00:00
|
|
|
|
namespace NzbDrone.Core.DecisionEngine
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
public class UpgradeHistorySpecification
|
|
|
|
|
{
|
2013-02-24 20:24:31 +00:00
|
|
|
|
private readonly IHistoryService _historyService;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
private readonly QualityUpgradeSpecification _qualityUpgradeSpecification;
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-02-24 20:24:31 +00:00
|
|
|
|
public UpgradeHistorySpecification(IHistoryService historyService, QualityUpgradeSpecification qualityUpgradeSpecification)
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
2013-02-23 21:29:22 +00:00
|
|
|
|
_historyService = historyService;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
_qualityUpgradeSpecification = qualityUpgradeSpecification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public UpgradeHistorySpecification()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
|
|
|
|
|
{
|
2012-10-17 07:39:06 +00:00
|
|
|
|
foreach (var episode in subject.Episodes)
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
2013-02-24 19:57:33 +00:00
|
|
|
|
var bestQualityInHistory = _historyService.GetBestQualityInHistory(subject.Series.OID, episode.SeasonNumber, episode.EpisodeNumber);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
if (bestQualityInHistory != null)
|
|
|
|
|
{
|
|
|
|
|
logger.Trace("Comparing history quality with report. History is {0}", bestQualityInHistory);
|
|
|
|
|
if (!_qualityUpgradeSpecification.IsSatisfiedBy(bestQualityInHistory, subject.Quality, subject.Series.QualityProfile.Cutoff))
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|