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.6 KiB
44 lines
1.6 KiB
using NLog;
|
|
using NzbDrone.Core.Indexers;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Profiles.Delay;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications
|
|
{
|
|
public class ProtocolSpecification : IDecisionEngineSpecification
|
|
{
|
|
private readonly IDelayProfileService _delayProfileService;
|
|
private readonly Logger _logger;
|
|
|
|
public ProtocolSpecification(IDelayProfileService delayProfileService,
|
|
Logger logger)
|
|
{
|
|
_delayProfileService = delayProfileService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public SpecificationPriority Priority => SpecificationPriority.Default;
|
|
public RejectionType Type => RejectionType.Permanent;
|
|
|
|
public virtual Decision IsSatisfiedBy(RemoteAlbum subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
var delayProfile = _delayProfileService.BestForTags(subject.Artist.Tags);
|
|
|
|
if (subject.Release.DownloadProtocol == DownloadProtocol.Usenet && !delayProfile.EnableUsenet)
|
|
{
|
|
_logger.Debug("[{0}] Usenet is not enabled for this artist", subject.Release.Title);
|
|
return Decision.Reject("Usenet is not enabled for this artist");
|
|
}
|
|
|
|
if (subject.Release.DownloadProtocol == DownloadProtocol.Torrent && !delayProfile.EnableTorrent)
|
|
{
|
|
_logger.Debug("[{0}] Torrent is not enabled for this artist", subject.Release.Title);
|
|
return Decision.Reject("Torrent is not enabled for this artist");
|
|
}
|
|
|
|
return Decision.Accept();
|
|
}
|
|
}
|
|
}
|