You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
152 lines
6.3 KiB
152 lines
6.3 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NLog;
|
|
using NzbDrone.Core.DecisionEngine;
|
|
using NzbDrone.Core.Download.Clients;
|
|
using NzbDrone.Core.Download.Pending;
|
|
using NzbDrone.Core.Exceptions;
|
|
using NzbDrone.Core.Indexers;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IProcessDownloadDecisions
|
|
{
|
|
ProcessedDecisions ProcessDecisions(List<DownloadDecision> decisions);
|
|
}
|
|
|
|
public class ProcessDownloadDecisions : IProcessDownloadDecisions
|
|
{
|
|
private readonly IDownloadService _downloadService;
|
|
private readonly IPrioritizeDownloadDecision _prioritizeDownloadDecision;
|
|
private readonly IPendingReleaseService _pendingReleaseService;
|
|
private readonly Logger _logger;
|
|
|
|
public ProcessDownloadDecisions(IDownloadService downloadService,
|
|
IPrioritizeDownloadDecision prioritizeDownloadDecision,
|
|
IPendingReleaseService pendingReleaseService,
|
|
Logger logger)
|
|
{
|
|
_downloadService = downloadService;
|
|
_prioritizeDownloadDecision = prioritizeDownloadDecision;
|
|
_pendingReleaseService = pendingReleaseService;
|
|
_logger = logger;
|
|
}
|
|
|
|
public ProcessedDecisions ProcessDecisions(List<DownloadDecision> decisions)
|
|
{
|
|
var qualifiedReports = GetQualifiedReports(decisions);
|
|
var prioritizedDecisions = _prioritizeDownloadDecision.PrioritizeDecisions(qualifiedReports);
|
|
var grabbed = new List<DownloadDecision>();
|
|
var pending = new List<DownloadDecision>();
|
|
|
|
//var failed = new List<DownloadDecision>();
|
|
var rejected = decisions.Where(d => d.Rejected).ToList();
|
|
|
|
var pendingAddQueue = new List<Tuple<DownloadDecision, PendingReleaseReason>>();
|
|
|
|
var usenetFailed = false;
|
|
var torrentFailed = false;
|
|
|
|
foreach (var report in prioritizedDecisions)
|
|
{
|
|
var remoteAlbum = report.RemoteAlbum;
|
|
var downloadProtocol = report.RemoteAlbum.Release.DownloadProtocol;
|
|
|
|
//Skip if already grabbed
|
|
if (IsAlbumProcessed(grabbed, report))
|
|
{
|
|
continue;
|
|
}
|
|
|
|
if (report.TemporarilyRejected)
|
|
{
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.Delay);
|
|
continue;
|
|
}
|
|
|
|
if ((downloadProtocol == DownloadProtocol.Usenet && usenetFailed) ||
|
|
(downloadProtocol == DownloadProtocol.Torrent && torrentFailed))
|
|
{
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
|
continue;
|
|
}
|
|
|
|
try
|
|
{
|
|
_logger.Trace("Grabbing from Indexer {0} at priority {1}.", remoteAlbum.Release.Indexer, remoteAlbum.Release.IndexerPriority);
|
|
_downloadService.DownloadReport(remoteAlbum);
|
|
grabbed.Add(report);
|
|
}
|
|
catch (ReleaseUnavailableException)
|
|
{
|
|
_logger.Warn("Failed to download release from indexer, no longer available. " + remoteAlbum);
|
|
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. " + remoteAlbum);
|
|
PreparePending(pendingAddQueue, grabbed, pending, report, PendingReleaseReason.DownloadClientUnavailable);
|
|
|
|
if (downloadProtocol == DownloadProtocol.Usenet)
|
|
{
|
|
usenetFailed = true;
|
|
}
|
|
else if (downloadProtocol == DownloadProtocol.Torrent)
|
|
{
|
|
torrentFailed = true;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
_logger.Warn(ex, "Couldn't add report to download queue. " + remoteAlbum);
|
|
}
|
|
}
|
|
}
|
|
|
|
if (pendingAddQueue.Any())
|
|
{
|
|
_pendingReleaseService.AddMany(pendingAddQueue);
|
|
}
|
|
|
|
return new ProcessedDecisions(grabbed, pending, rejected);
|
|
}
|
|
|
|
internal List<DownloadDecision> GetQualifiedReports(IEnumerable<DownloadDecision> decisions)
|
|
{
|
|
//Process both approved and temporarily rejected
|
|
return decisions.Where(c => (c.Approved || c.TemporarilyRejected) && c.RemoteAlbum.Albums.Any()).ToList();
|
|
}
|
|
|
|
private bool IsAlbumProcessed(List<DownloadDecision> decisions, DownloadDecision report)
|
|
{
|
|
var albumIds = report.RemoteAlbum.Albums.Select(e => e.Id).ToList();
|
|
|
|
return decisions.SelectMany(r => r.RemoteAlbum.Albums)
|
|
.Select(e => e.Id)
|
|
.ToList()
|
|
.Intersect(albumIds)
|
|
.Any();
|
|
}
|
|
|
|
private void PreparePending(List<Tuple<DownloadDecision, PendingReleaseReason>> queue, List<DownloadDecision> grabbed, List<DownloadDecision> pending, DownloadDecision report, PendingReleaseReason reason)
|
|
{
|
|
// If a release was already grabbed with matching albums we should store it as a fallback
|
|
// and filter it out the next time it is processed.
|
|
// If a higher quality release failed to add to the download client, but a lower quality release
|
|
// was sent to another client we still list it normally so it apparent that it'll grab next time.
|
|
// Delayed is treated the same, but only the first is listed the subsequent items as stored as Fallback.
|
|
if (IsAlbumProcessed(grabbed, report) ||
|
|
IsAlbumProcessed(pending, report))
|
|
{
|
|
reason = PendingReleaseReason.Fallback;
|
|
}
|
|
|
|
queue.Add(Tuple.Create(report, reason));
|
|
pending.Add(report);
|
|
}
|
|
}
|
|
}
|