You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.5 KiB
44 lines
1.5 KiB
using NLog;
|
|
using NzbDrone.Core.Configuration;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
{
|
|
public class RetentionSpecification : IDecisionEngineSpecification
|
|
{
|
|
private readonly IConfigService _configService;
|
|
private readonly Logger _logger;
|
|
|
|
public RetentionSpecification(IConfigService configService, Logger logger)
|
|
{
|
|
_configService = configService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public SpecificationPriority Priority => SpecificationPriority.Default;
|
|
public RejectionType Type => RejectionType.Permanent;
|
|
|
|
public virtual Decision IsSatisfiedBy(RemoteMovie subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
if (subject.Release.DownloadProtocol != Indexers.DownloadProtocol.Usenet)
|
|
{
|
|
_logger.Debug("Not checking retention requirement for non-usenet report");
|
|
return Decision.Accept();
|
|
}
|
|
|
|
var age = subject.Release.Age;
|
|
var retention = _configService.Retention;
|
|
|
|
_logger.Debug("Checking if report meets retention requirements. {0}", age);
|
|
if (retention > 0 && age > retention)
|
|
{
|
|
_logger.Debug("Report age: {0} rejected by user's retention limit", age);
|
|
return Decision.Reject("Older than configured retention");
|
|
}
|
|
|
|
return Decision.Accept();
|
|
}
|
|
}
|
|
}
|