parent
be81bf322a
commit
cd1d34a0f2
@ -0,0 +1,45 @@
|
|||||||
|
using NLog;
|
||||||
|
using NzbDrone.Core.Download.Pending;
|
||||||
|
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 IPendingReleaseService _pendingReleaseService;
|
||||||
|
private readonly IQualityUpgradableSpecification _qualityUpgradableSpecification;
|
||||||
|
private readonly IDelayProfileService _delayProfileService;
|
||||||
|
private readonly Logger _logger;
|
||||||
|
|
||||||
|
public ProtocolSpecification(IDelayProfileService delayProfileService,
|
||||||
|
Logger logger)
|
||||||
|
{
|
||||||
|
_delayProfileService = delayProfileService;
|
||||||
|
_logger = logger;
|
||||||
|
}
|
||||||
|
|
||||||
|
public RejectionType Type { get { return RejectionType.Temporary; } }
|
||||||
|
|
||||||
|
public virtual Decision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCriteria)
|
||||||
|
{
|
||||||
|
var delayProfile = _delayProfileService.BestForTags(subject.Series.Tags);
|
||||||
|
|
||||||
|
if (subject.Release.DownloadProtocol == DownloadProtocol.Usenet && !delayProfile.EnableUsenet)
|
||||||
|
{
|
||||||
|
_logger.Debug("[{0}] Usenet is not enabled for this series", subject.Release.Title);
|
||||||
|
return Decision.Reject("Usenet is not enabled for this series");
|
||||||
|
}
|
||||||
|
|
||||||
|
if (subject.Release.DownloadProtocol == DownloadProtocol.Torrent && !delayProfile.EnableTorrent)
|
||||||
|
{
|
||||||
|
_logger.Debug("[{0}] Torrent is not enabled for this series", subject.Release.Title);
|
||||||
|
return Decision.Reject("Torrent is not enabled for this series");
|
||||||
|
}
|
||||||
|
|
||||||
|
return Decision.Accept();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue