|
|
|
@ -1,6 +1,7 @@
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using Ninject;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
@ -8,12 +9,12 @@ using NzbDrone.Core.Model.Notification;
|
|
|
|
|
using NzbDrone.Core.Providers;
|
|
|
|
|
using NzbDrone.Core.Providers.DecisionEngine;
|
|
|
|
|
using NzbDrone.Core.Providers.Indexer;
|
|
|
|
|
using StackExchange.Profiling;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Jobs
|
|
|
|
|
{
|
|
|
|
|
public class RssSyncJob : IJob
|
|
|
|
|
{
|
|
|
|
|
private readonly IEnumerable<IndexerBase> _indexers;
|
|
|
|
|
private readonly DownloadProvider _downloadProvider;
|
|
|
|
|
private readonly IndexerProvider _indexerProvider;
|
|
|
|
|
private readonly MonitoredEpisodeSpecification _isMonitoredEpisodeSpecification;
|
|
|
|
@ -24,10 +25,9 @@ namespace NzbDrone.Core.Jobs
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
|
|
|
|
[Inject]
|
|
|
|
|
public RssSyncJob(IEnumerable<IndexerBase> indexers, DownloadProvider downloadProvider, IndexerProvider indexerProvider,
|
|
|
|
|
public RssSyncJob(DownloadProvider downloadProvider, IndexerProvider indexerProvider,
|
|
|
|
|
MonitoredEpisodeSpecification isMonitoredEpisodeSpecification, AllowedDownloadSpecification allowedDownloadSpecification, UpgradeHistorySpecification upgradeHistorySpecification)
|
|
|
|
|
{
|
|
|
|
|
_indexers = indexers;
|
|
|
|
|
_downloadProvider = downloadProvider;
|
|
|
|
|
_indexerProvider = indexerProvider;
|
|
|
|
|
_isMonitoredEpisodeSpecification = isMonitoredEpisodeSpecification;
|
|
|
|
@ -49,20 +49,22 @@ namespace NzbDrone.Core.Jobs
|
|
|
|
|
{
|
|
|
|
|
var reports = new List<EpisodeParseResult>();
|
|
|
|
|
|
|
|
|
|
foreach (var indexer in _indexers.Where(i => _indexerProvider.GetSettings(i.GetType()).Enable))
|
|
|
|
|
notification.CurrentMessage = "Fetching RSS";
|
|
|
|
|
|
|
|
|
|
Parallel.ForEach(_indexerProvider.GetEnabledIndexers(), indexer =>
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
notification.CurrentMessage = "Fetching RSS from " + indexer.Name;
|
|
|
|
|
reports.AddRange(indexer.FetchRss());
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
|
|
|
|
Logger.ErrorException("An error has occurred while fetching items from " + indexer.Name, e);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
Logger.Debug("Finished fetching reports from all indexers. Total {0}", reports.Count);
|
|
|
|
|
|
|
|
|
|
notification.CurrentMessage = "Processing downloaded RSS";
|
|
|
|
|
|
|
|
|
|
foreach (var episodeParseResult in reports)
|
|
|
|
|