mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-18 21:35:27 -04:00
fa0f77659c
Closes #7558
114 lines
5.1 KiB
C#
114 lines
5.1 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 : IDownloadDecisionEngineSpecification
|
|
{
|
|
private readonly IPendingReleaseService _pendingReleaseService;
|
|
private readonly IDelayProfileService _delayProfileService;
|
|
private readonly Logger _logger;
|
|
|
|
public DelaySpecification(IPendingReleaseService pendingReleaseService,
|
|
IDelayProfileService delayProfileService,
|
|
Logger logger)
|
|
{
|
|
_pendingReleaseService = pendingReleaseService;
|
|
_delayProfileService = delayProfileService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public SpecificationPriority Priority => SpecificationPriority.Database;
|
|
public RejectionType Type => RejectionType.Temporary;
|
|
|
|
public virtual DownloadSpecDecision IsSatisfiedBy(RemoteEpisode subject, SearchCriteriaBase searchCriteria)
|
|
{
|
|
if (searchCriteria != null && searchCriteria.UserInvokedSearch)
|
|
{
|
|
_logger.Debug("Ignoring delay for user invoked search");
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
|
|
var qualityProfile = subject.Series.QualityProfile.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("Delay Profile does not require a waiting period before download for {0}.", subject.Release.DownloadProtocol);
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
|
|
_logger.Debug("Delay Profile requires a waiting period of {0} minutes for {1}", delay, subject.Release.DownloadProtocol);
|
|
|
|
var qualityComparer = new QualityModelComparer(qualityProfile);
|
|
|
|
if (isPreferredProtocol)
|
|
{
|
|
foreach (var file in subject.Episodes.Where(c => c.EpisodeFileId != 0).Select(c => c.EpisodeFile.Value))
|
|
{
|
|
var currentQuality = file.Quality;
|
|
var newQuality = subject.ParsedEpisodeInfo.Quality;
|
|
var qualityCompare = qualityComparer.Compare(newQuality?.Quality, currentQuality.Quality);
|
|
|
|
if (qualityCompare == 0 && newQuality?.Revision.CompareTo(currentQuality.Revision) > 0)
|
|
{
|
|
_logger.Debug("New quality is a better revision for existing quality, skipping delay");
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
}
|
|
}
|
|
|
|
// If quality meets or exceeds the best allowed quality in the profile accept it immediately
|
|
if (delayProfile.BypassIfHighestQuality)
|
|
{
|
|
var bestQualityInProfile = qualityProfile.LastAllowedQuality();
|
|
var isBestInProfile = qualityComparer.Compare(subject.ParsedEpisodeInfo.Quality.Quality, bestQualityInProfile) >= 0;
|
|
|
|
if (isBestInProfile && isPreferredProtocol)
|
|
{
|
|
_logger.Debug("Quality is highest in profile for preferred protocol, will not delay");
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
}
|
|
|
|
// If quality meets or exceeds the best allowed quality in the profile accept it immediately
|
|
if (delayProfile.BypassIfAboveCustomFormatScore)
|
|
{
|
|
var score = subject.CustomFormatScore;
|
|
var minimum = delayProfile.MinimumCustomFormatScore;
|
|
|
|
if (score >= minimum && isPreferredProtocol)
|
|
{
|
|
_logger.Debug("Custom format score ({0}) meets minimum ({1}) for preferred protocol, will not delay", score, minimum);
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
}
|
|
|
|
var episodeIds = subject.Episodes.Select(e => e.Id);
|
|
|
|
var oldest = _pendingReleaseService.OldestPendingRelease(subject.Series.Id, episodeIds.ToArray());
|
|
|
|
if (oldest != null && oldest.Release.AgeMinutes > delay)
|
|
{
|
|
_logger.Debug("Oldest pending release {0} has been delayed for {1}, longer than the set delay of {2}. Release will be accepted", oldest.Release.Title, oldest.Release.AgeMinutes, delay);
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
|
|
if (subject.Release.AgeMinutes < delay)
|
|
{
|
|
_logger.Debug("Waiting for better quality release, There is a {0} minute delay on {1}", delay, subject.Release.DownloadProtocol);
|
|
return DownloadSpecDecision.Reject(DownloadRejectionReason.MinimumAgeDelay, "Waiting for better quality release");
|
|
}
|
|
|
|
return DownloadSpecDecision.Accept();
|
|
}
|
|
}
|
|
}
|