mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
24 lines
729 B
C#
24 lines
729 B
C#
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.Providers.DecisionEngine
|
|
{
|
|
public class QualityAllowedByProfileSpecification
|
|
{
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
|
|
{
|
|
logger.Trace("Checking if report meets quality requirements. {0}", subject.Quality);
|
|
if (!subject.Series.QualityProfile.Allowed.Contains(subject.Quality.QualityType))
|
|
{
|
|
logger.Trace("Quality {0} rejected by Series' quality profile", subject.Quality);
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
}
|