mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
37a1398338
New: Select preferred protocol (usenet/torrent) New: Option to delay grabs from usenet/torrents independently
103 lines
4.3 KiB
C#
103 lines
4.3 KiB
C#
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.Download.Pending;
|
|
using NzbDrone.Core.IndexerSearch.Definitions;
|
|
using NzbDrone.Core.Parser.Model;
|
|
using NzbDrone.Core.Profiles.Delay;
|
|
using NzbDrone.Core.Qualities;
|
|
|
|
namespace NzbDrone.Core.DecisionEngine.Specifications.RssSync
|
|
{
|
|
public class DelaySpecification : IDecisionEngineSpecification
|
|
{
|
|
private readonly IPendingReleaseService _pendingReleaseService;
|
|
private readonly IQualityUpgradableSpecification _qualityUpgradableSpecification;
|
|
private readonly IDelayProfileService _delayProfileService;
|
|
private readonly Logger _logger;
|
|
|
|
public DelaySpecification(IPendingReleaseService pendingReleaseService,
|
|
IQualityUpgradableSpecification qualityUpgradableSpecification,
|
|
IDelayProfileService delayProfileService,
|
|
Logger logger)
|
|
{
|
|
_pendingReleaseService = pendingReleaseService;
|
|
_qualityUpgradableSpecification = qualityUpgradableSpecification;
|
|
_delayProfileService = delayProfileService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public RejectionType Type { get { return RejectionType.Temporary; } }
|
|
|
|
public virtual Decision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
//How do we want to handle drone being off and the automatic search being triggered?
|
|
//TODO: Add a flag to the search to state it is a "scheduled" search
|
|
|
|
if (searchCriteria != null)
|
|
{
|
|
_logger.Debug("Ignore delay for searches");
|
|
return Decision.Accept();
|
|
}
|
|
|
|
var profile = subject.Series.Profile.Value;
|
|
var delayProfile = _delayProfileService.BestForTags(subject.Series.Tags);
|
|
var delay = delayProfile.GetProtocolDelay(subject.Release.DownloadProtocol);
|
|
var isPreferredProtocol = subject.Release.DownloadProtocol == delayProfile.PreferredProtocol;
|
|
|
|
if (delay == 0)
|
|
{
|
|
_logger.Debug("Profile does not require a waiting period before download for {0}.", subject.Release.DownloadProtocol);
|
|
return Decision.Accept();
|
|
}
|
|
|
|
var comparer = new QualityModelComparer(profile);
|
|
|
|
if (isPreferredProtocol)
|
|
{
|
|
foreach (var file in subject.Episodes.Where(c => c.EpisodeFileId != 0).Select(c => c.EpisodeFile.Value))
|
|
{
|
|
var upgradable = _qualityUpgradableSpecification.IsUpgradable(profile, file.Quality, subject.ParsedEpisodeInfo.Quality);
|
|
|
|
if (upgradable)
|
|
{
|
|
var revisionUpgrade = _qualityUpgradableSpecification.IsRevisionUpgrade(file.Quality, subject.ParsedEpisodeInfo.Quality);
|
|
|
|
if (revisionUpgrade)
|
|
{
|
|
_logger.Debug("New quality is a better revision for existing quality, skipping delay");
|
|
return Decision.Accept();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
//If quality meets or exceeds the best allowed quality in the profile accept it immediately
|
|
var bestQualityInProfile = new QualityModel(profile.LastAllowedQuality());
|
|
var isBestInProfile = comparer.Compare(subject.ParsedEpisodeInfo.Quality, bestQualityInProfile) >= 0;
|
|
|
|
if (isBestInProfile && isPreferredProtocol)
|
|
{
|
|
_logger.Debug("Quality is highest in profile for preferred protocol, will not delay");
|
|
return Decision.Accept();
|
|
}
|
|
|
|
var episodeIds = subject.Episodes.Select(e => e.Id);
|
|
|
|
var oldest = _pendingReleaseService.OldestPendingRelease(subject.Series.Id, episodeIds);
|
|
|
|
if (oldest != null && oldest.Release.AgeHours > delay)
|
|
{
|
|
return Decision.Accept();
|
|
}
|
|
|
|
if (subject.Release.AgeHours < delay)
|
|
{
|
|
_logger.Debug("Waiting for better quality release, There is a {0} hour delay on {1}", delay, subject.Release.DownloadProtocol);
|
|
return Decision.Reject("Waiting for better quality release");
|
|
}
|
|
|
|
return Decision.Accept();
|
|
}
|
|
}
|
|
}
|