Sonarr/NzbDrone.Core/DecisionEngine/RetentionSpecification.cs

37 lines
1.0 KiB
C#
Raw Normal View History

using System.Linq;
using NLog;
2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Model;
using NzbDrone.Core.Providers.Core;
2013-02-19 02:19:38 +00:00
namespace NzbDrone.Core.DecisionEngine
{
public class RetentionSpecification
{
2013-02-24 06:48:52 +00:00
private readonly IConfigService _configService;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
2013-02-24 06:48:52 +00:00
public RetentionSpecification(IConfigService configService)
{
2013-02-24 06:48:52 +00:00
_configService = configService;
}
public RetentionSpecification()
{
}
public virtual bool IsSatisfiedBy(EpisodeParseResult subject)
{
logger.Trace("Checking if report meets retention requirements. {0}", subject.Age);
2013-02-24 06:48:52 +00:00
if (_configService.Retention > 0 && subject.Age > _configService.Retention)
{
logger.Trace("Report age: {0} rejected by user's retention limit", subject.Age);
return false;
}
return true;
}
}
}