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.
106 lines
3.7 KiB
106 lines
3.7 KiB
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Common.Extensions;
|
|
using NzbDrone.Core.Download.TrackedDownloads;
|
|
using NzbDrone.Core.History;
|
|
using NzbDrone.Core.Messaging.Events;
|
|
|
|
namespace NzbDrone.Core.Download
|
|
{
|
|
public interface IFailedDownloadService
|
|
{
|
|
void MarkAsFailed(int historyId);
|
|
void MarkAsFailed(string downloadId);
|
|
void Process(TrackedDownload trackedDownload);
|
|
}
|
|
|
|
public class FailedDownloadService : IFailedDownloadService
|
|
{
|
|
private readonly IHistoryService _historyService;
|
|
private readonly IEventAggregator _eventAggregator;
|
|
|
|
public FailedDownloadService(IHistoryService historyService,
|
|
IEventAggregator eventAggregator)
|
|
{
|
|
_historyService = historyService;
|
|
_eventAggregator = eventAggregator;
|
|
}
|
|
|
|
public void MarkAsFailed(int historyId)
|
|
{
|
|
var history = _historyService.Get(historyId);
|
|
|
|
var downloadId = history.DownloadId;
|
|
if (downloadId.IsNullOrWhiteSpace())
|
|
{
|
|
PublishDownloadFailedEvent(new List<History.History> { history }, "Manually marked as failed");
|
|
}
|
|
else
|
|
{
|
|
var grabbedHistory = _historyService.Find(downloadId, HistoryEventType.Grabbed).ToList();
|
|
PublishDownloadFailedEvent(grabbedHistory, "Manually marked as failed");
|
|
}
|
|
}
|
|
|
|
public void MarkAsFailed(string downloadId)
|
|
{
|
|
var history = _historyService.Find(downloadId, HistoryEventType.Grabbed);
|
|
|
|
if (history.Any())
|
|
{
|
|
PublishDownloadFailedEvent(history, "Manually marked as failed");
|
|
}
|
|
}
|
|
|
|
public void Process(TrackedDownload trackedDownload)
|
|
{
|
|
string failure = null;
|
|
|
|
if (trackedDownload.DownloadItem.IsEncrypted)
|
|
{
|
|
failure = "Encrypted download detected";
|
|
}
|
|
else if (trackedDownload.DownloadItem.Status == DownloadItemStatus.Failed)
|
|
{
|
|
failure = trackedDownload.DownloadItem.Message ?? "Failed download detected";
|
|
}
|
|
|
|
if (failure != null)
|
|
{
|
|
var grabbedItems = _historyService.Find(trackedDownload.DownloadItem.DownloadId, HistoryEventType.Grabbed)
|
|
.ToList();
|
|
|
|
if (grabbedItems.Empty())
|
|
{
|
|
trackedDownload.Warn("Download wasn't grabbed by Lidarr, skipping");
|
|
return;
|
|
}
|
|
|
|
trackedDownload.State = TrackedDownloadStage.DownloadFailed;
|
|
PublishDownloadFailedEvent(grabbedItems, failure, trackedDownload);
|
|
}
|
|
}
|
|
|
|
private void PublishDownloadFailedEvent(List<History.History> historyItems, string message, TrackedDownload trackedDownload = null)
|
|
{
|
|
var historyItem = historyItems.First();
|
|
|
|
var downloadFailedEvent = new DownloadFailedEvent
|
|
{
|
|
ArtistId = historyItem.ArtistId,
|
|
AlbumIds = historyItems.Select(h => h.AlbumId).ToList(),
|
|
Quality = historyItem.Quality,
|
|
SourceTitle = historyItem.SourceTitle,
|
|
DownloadClient = historyItem.Data.GetValueOrDefault(History.History.DOWNLOAD_CLIENT),
|
|
DownloadId = historyItem.DownloadId,
|
|
Message = message,
|
|
Data = historyItem.Data,
|
|
TrackedDownload = trackedDownload,
|
|
Language = historyItem.Language
|
|
};
|
|
|
|
_eventAggregator.PublishEvent(downloadFailedEvent);
|
|
}
|
|
}
|
|
}
|