|
|
|
@ -14,7 +14,6 @@ namespace NzbDrone.Core.Download
|
|
|
|
|
public interface IProcessDownloadDecisions
|
|
|
|
|
{
|
|
|
|
|
Task<ProcessedDecisions> ProcessDecisions(List<DownloadDecision> decisions);
|
|
|
|
|
Task<ProcessedDecisionResult> ProcessDecision(DownloadDecision decision, int? downloadClientId);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class ProcessDownloadDecisions : IProcessDownloadDecisions
|
|
|
|
@ -50,6 +49,7 @@ namespace NzbDrone.Core.Download
|
|
|
|
|
|
|
|
|
|
foreach (var report in prioritizedDecisions)
|
|
|
|
|
{
|
|
|
|
|
var remoteMovie = report.RemoteMovie;
|
|
|
|
|
var downloadProtocol = report.RemoteMovie.Release.DownloadProtocol;
|
|
|
|
|
|
|
|
|
|
// Skip if already grabbed
|
|
|
|
@ -71,48 +71,37 @@ namespace NzbDrone.Core.Download
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var result = await ProcessDecisionInternal(report);
|
|
|
|
|
|
|
|
|
|
switch (result)
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
case ProcessedDecisionResult.Grabbed:
|
|
|
|
|
{
|
|
|
|
|
grabbed.Add(report);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ProcessedDecisionResult.Pending:
|
|
|
|
|
{
|
|
|
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.Delay);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ProcessedDecisionResult.Rejected:
|
|
|
|
|
{
|
|
|
|
|
rejected.Add(report);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
_logger.Trace("Grabbing from Indexer {0} at priority {1}.", remoteMovie.Release.Indexer, remoteMovie.Release.IndexerPriority);
|
|
|
|
|
await _downloadService.DownloadReport(remoteMovie, null);
|
|
|
|
|
grabbed.Add(report);
|
|
|
|
|
}
|
|
|
|
|
catch (ReleaseUnavailableException)
|
|
|
|
|
{
|
|
|
|
|
_logger.Warn("Failed to download release from indexer, no longer available. " + remoteMovie);
|
|
|
|
|
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. " + remoteMovie);
|
|
|
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
|
|
|
|
|
|
|
|
|
case ProcessedDecisionResult.Failed:
|
|
|
|
|
if (downloadProtocol == DownloadProtocol.Usenet)
|
|
|
|
|
{
|
|
|
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
|
|
|
|
|
|
|
|
|
if (downloadProtocol == DownloadProtocol.Usenet)
|
|
|
|
|
{
|
|
|
|
|
usenetFailed = true;
|
|
|
|
|
}
|
|
|
|
|
else if (downloadProtocol == DownloadProtocol.Torrent)
|
|
|
|
|
{
|
|
|
|
|
torrentFailed = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
usenetFailed = true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case ProcessedDecisionResult.Skipped:
|
|
|
|
|
else if (downloadProtocol == DownloadProtocol.Torrent)
|
|
|
|
|
{
|
|
|
|
|
break;
|
|
|
|
|
torrentFailed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_logger.Warn(ex, "Couldn't add report to download queue. " + remoteMovie);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
@ -124,30 +113,6 @@ namespace NzbDrone.Core.Download
|
|
|
|
|
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
|
|
|
|
@ -180,38 +145,5 @@ namespace NzbDrone.Core.Download
|
|
|
|
|
queue.Add(Tuple.Create(report, reason));
|
|
|
|
|
pending.Add(report);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private async Task<ProcessedDecisionResult> ProcessDecisionInternal(DownloadDecision decision, int? downloadClientId = null)
|
|
|
|
|
{
|
|
|
|
|
var remoteMovie = decision.RemoteMovie;
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
_logger.Trace("Grabbing from Indexer {0} at priority {1}.", remoteMovie.Release.Indexer, remoteMovie.Release.IndexerPriority);
|
|
|
|
|
await _downloadService.DownloadReport(remoteMovie, downloadClientId);
|
|
|
|
|
|
|
|
|
|
return ProcessedDecisionResult.Grabbed;
|
|
|
|
|
}
|
|
|
|
|
catch (ReleaseUnavailableException)
|
|
|
|
|
{
|
|
|
|
|
_logger.Warn("Failed to download release from indexer, no longer available. " + remoteMovie);
|
|
|
|
|
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. " + remoteMovie);
|
|
|
|
|
|
|
|
|
|
return ProcessedDecisionResult.Failed;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_logger.Warn(ex, "Couldn't add report to download queue. " + remoteMovie);
|
|
|
|
|
return ProcessedDecisionResult.Skipped;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|