1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-11-09 20:42:37 +01:00
Radarr/NzbDrone.Core/DecisionEngine/UpgradeHistorySpecification.cs

43 lines
1.5 KiB
C#
Raw Normal View History

using System.Linq;
using NLog;
2013-02-23 22:29:22 +01:00
using NzbDrone.Core.History;
using NzbDrone.Core.Model;
2013-02-19 03:19:38 +01:00
using NzbDrone.Core.Providers;
2013-02-19 03:19:38 +01:00
namespace NzbDrone.Core.DecisionEngine
{
public class UpgradeHistorySpecification
{
2013-02-24 21:24:31 +01:00
private readonly IHistoryService _historyService;
private readonly QualityUpgradeSpecification _qualityUpgradeSpecification;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
2013-02-24 21:24:31 +01:00
public UpgradeHistorySpecification(IHistoryService historyService, QualityUpgradeSpecification qualityUpgradeSpecification)
{
2013-02-23 22:29:22 +01:00
_historyService = historyService;
_qualityUpgradeSpecification = qualityUpgradeSpecification;
}
public UpgradeHistorySpecification()
{
}
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
{
foreach (var episode in subject.Episodes)
{
var bestQualityInHistory = _historyService.GetBestQualityInHistory(subject.Series.Id, episode.SeasonNumber, episode.EpisodeNumber);
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;
}
}
}