mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-12-12 11:15:43 +02:00
parent
9a1022386a
commit
fa5bfc3742
@ -14,6 +14,7 @@ namespace NzbDrone.Core.Download
|
||||
public interface IProcessDownloadDecisions
|
||||
{
|
||||
Task<ProcessedDecisions> ProcessDecisions(List<DownloadDecision> decisions);
|
||||
Task<ProcessedDecisionResult> ProcessDecision(DownloadDecision decision, int? downloadClientId);
|
||||
}
|
||||
|
||||
public class ProcessDownloadDecisions : IProcessDownloadDecisions
|
||||
@ -49,7 +50,6 @@ public async Task<ProcessedDecisions> ProcessDecisions(List<DownloadDecision> de
|
||||
|
||||
foreach (var report in prioritizedDecisions)
|
||||
{
|
||||
var remoteEpisode = report.RemoteEpisode;
|
||||
var downloadProtocol = report.RemoteEpisode.Release.DownloadProtocol;
|
||||
|
||||
// Skip if already grabbed
|
||||
@ -71,37 +71,48 @@ public async Task<ProcessedDecisions> ProcessDecisions(List<DownloadDecision> de
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
_logger.Trace("Grabbing from Indexer {0} at priority {1}.", remoteEpisode.Release.Indexer, remoteEpisode.Release.IndexerPriority);
|
||||
await _downloadService.DownloadReport(remoteEpisode, null);
|
||||
grabbed.Add(report);
|
||||
}
|
||||
catch (ReleaseUnavailableException)
|
||||
{
|
||||
_logger.Warn("Failed to download release from indexer, no longer available. " + remoteEpisode);
|
||||
rejected.Add(report);
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (ex is DownloadClientUnavailableException || ex is DownloadClientAuthenticationException)
|
||||
{
|
||||
_logger.Debug(ex, "Failed to send release to download client, storing until later. " + remoteEpisode);
|
||||
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
||||
var result = await ProcessDecisionInternal(report);
|
||||
|
||||
if (downloadProtocol == DownloadProtocol.Usenet)
|
||||
switch (result)
|
||||
{
|
||||
case ProcessedDecisionResult.Grabbed:
|
||||
{
|
||||
usenetFailed = true;
|
||||
grabbed.Add(report);
|
||||
break;
|
||||
}
|
||||
else if (downloadProtocol == DownloadProtocol.Torrent)
|
||||
|
||||
case ProcessedDecisionResult.Pending:
|
||||
{
|
||||
torrentFailed = true;
|
||||
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.Delay);
|
||||
break;
|
||||
}
|
||||
|
||||
case ProcessedDecisionResult.Rejected:
|
||||
{
|
||||
rejected.Add(report);
|
||||
break;
|
||||
}
|
||||
|
||||
case ProcessedDecisionResult.Failed:
|
||||
{
|
||||
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
||||
|
||||
if (downloadProtocol == DownloadProtocol.Usenet)
|
||||
{
|
||||
usenetFailed = true;
|
||||
}
|
||||
else if (downloadProtocol == DownloadProtocol.Torrent)
|
||||
{
|
||||
torrentFailed = true;
|
||||
}
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
case ProcessedDecisionResult.Skipped:
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
_logger.Warn(ex, "Couldn't add report to download queue. " + remoteEpisode);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -113,6 +124,30 @@ public async Task<ProcessedDecisions> ProcessDecisions(List<DownloadDecision> de
|
||||
return new ProcessedDecisions(grabbed, pending, rejected);
|
||||
}
|
||||
|
||||
public async Task<ProcessedDecisionResult> ProcessDecision(DownloadDecision decision, int? downloadClientId)
|
||||
{
|
||||
if (decision == null)
|
||||
{
|
||||
return ProcessedDecisionResult.Skipped;
|
||||
}
|
||||
|
||||
if (decision.TemporarilyRejected)
|
||||
{
|
||||
_pendingReleaseService.Add(decision, PendingReleaseReason.Delay);
|
||||
|
||||
return ProcessedDecisionResult.Pending;
|
||||
}
|
||||
|
||||
var result = await ProcessDecisionInternal(decision, downloadClientId);
|
||||
|
||||
if (result == ProcessedDecisionResult.Failed)
|
||||
{
|
||||
_pendingReleaseService.Add(decision, PendingReleaseReason.DownloadClientUnavailable);
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
internal List<DownloadDecision> GetQualifiedReports(IEnumerable<DownloadDecision> decisions)
|
||||
{
|
||||
// Process both approved and temporarily rejected
|
||||
@ -147,5 +182,38 @@ private void PreparePending(List<Tuple<DownloadDecision, PendingReleaseReason>>
|
||||
queue.Add(Tuple.Create(report, reason));
|
||||
pending.Add(report);
|
||||
}
|
||||
|
||||
private async Task<ProcessedDecisionResult> ProcessDecisionInternal(DownloadDecision decision, int? downloadClientId = null)
|
||||
{
|
||||
var remoteEpisode = decision.RemoteEpisode;
|
||||
|
||||
try
|
||||
{
|
||||
_logger.Trace("Grabbing from Indexer {0} at priority {1}.", remoteEpisode.Release.Indexer, remoteEpisode.Release.IndexerPriority);
|
||||
await _downloadService.DownloadReport(remoteEpisode, downloadClientId);
|
||||
|
||||
return ProcessedDecisionResult.Grabbed;
|
||||
}
|
||||
catch (ReleaseUnavailableException)
|
||||
{
|
||||
_logger.Warn("Failed to download release from indexer, no longer available. " + remoteEpisode);
|
||||
return ProcessedDecisionResult.Rejected;
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
if (ex is DownloadClientUnavailableException || ex is DownloadClientAuthenticationException)
|
||||
{
|
||||
_logger.Debug(ex,
|
||||
"Failed to send release to download client, storing until later. " + remoteEpisode);
|
||||
|
||||
return ProcessedDecisionResult.Failed;
|
||||
}
|
||||
else
|
||||
{
|
||||
_logger.Warn(ex, "Couldn't add report to download queue. " + remoteEpisode);
|
||||
return ProcessedDecisionResult.Skipped;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
11
src/NzbDrone.Core/Download/ProcessedDecisionResult.cs
Normal file
11
src/NzbDrone.Core/Download/ProcessedDecisionResult.cs
Normal file
@ -0,0 +1,11 @@
|
||||
namespace NzbDrone.Core.Download
|
||||
{
|
||||
public enum ProcessedDecisionResult
|
||||
{
|
||||
Grabbed,
|
||||
Pending,
|
||||
Rejected,
|
||||
Failed,
|
||||
Skipped
|
||||
}
|
||||
}
|
@ -57,22 +57,23 @@ public ActionResult<List<ReleaseResource>> Create(ReleaseResource release)
|
||||
|
||||
ResolveIndexer(info);
|
||||
|
||||
List<DownloadDecision> decisions;
|
||||
DownloadDecision decision;
|
||||
|
||||
lock (PushLock)
|
||||
{
|
||||
decisions = _downloadDecisionMaker.GetRssDecision(new List<ReleaseInfo> { info });
|
||||
_downloadDecisionProcessor.ProcessDecisions(decisions).GetAwaiter().GetResult();
|
||||
var decisions = _downloadDecisionMaker.GetRssDecision(new List<ReleaseInfo> { info });
|
||||
|
||||
decision = decisions.FirstOrDefault();
|
||||
|
||||
_downloadDecisionProcessor.ProcessDecision(decision, release.DownloadClientId).GetAwaiter().GetResult();
|
||||
}
|
||||
|
||||
var firstDecision = decisions.FirstOrDefault();
|
||||
|
||||
if (firstDecision?.RemoteEpisode.ParsedEpisodeInfo == null)
|
||||
if (decision?.RemoteEpisode.ParsedEpisodeInfo == null)
|
||||
{
|
||||
throw new ValidationException(new List<ValidationFailure> { new ValidationFailure("Title", "Unable to parse", release.Title) });
|
||||
}
|
||||
|
||||
return MapDecisions(new[] { firstDecision });
|
||||
return MapDecisions(new[] { decision });
|
||||
}
|
||||
|
||||
private void ResolveIndexer(ReleaseInfo release)
|
||||
|
Loading…
Reference in New Issue
Block a user