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.
31 lines
786 B
31 lines
786 B
using NLog;
|
|
using NzbDrone.Core.Download;
|
|
using NzbDrone.Core.Model;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
{
|
|
public class NotInQueueSpecification : IDecisionEngineSpecification
|
|
{
|
|
private readonly IProvideDownloadClient _downloadClientProvider;
|
|
|
|
public NotInQueueSpecification(IProvideDownloadClient downloadClientProvider)
|
|
{
|
|
_downloadClientProvider = downloadClientProvider;
|
|
}
|
|
|
|
public string RejectionReason
|
|
{
|
|
get
|
|
{
|
|
return "Already in download queue.";
|
|
}
|
|
}
|
|
|
|
public virtual bool IsSatisfiedBy(IndexerParseResult subject)
|
|
{
|
|
return !_downloadClientProvider.GetDownloadClient().IsInQueue(subject);
|
|
}
|
|
|
|
}
|
|
}
|