2011-05-20 05:52:05 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
2011-04-22 06:23:29 +00:00
|
|
|
|
using System.Linq;
|
2012-09-08 23:38:42 +00:00
|
|
|
|
using System.Threading.Tasks;
|
2011-04-20 01:20:20 +00:00
|
|
|
|
using NLog;
|
2011-05-20 05:52:05 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2011-04-20 07:44:13 +00:00
|
|
|
|
using NzbDrone.Core.Model.Notification;
|
2011-12-02 01:33:17 +00:00
|
|
|
|
using NzbDrone.Core.Providers;
|
2012-10-07 19:16:43 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Providers.DecisionEngine;
|
2011-04-22 06:23:29 +00:00
|
|
|
|
using NzbDrone.Core.Providers.Indexer;
|
2012-09-08 23:38:42 +00:00
|
|
|
|
using StackExchange.Profiling;
|
2011-04-20 01:20:20 +00:00
|
|
|
|
|
2011-12-02 01:33:17 +00:00
|
|
|
|
namespace NzbDrone.Core.Jobs
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2011-04-20 07:44:13 +00:00
|
|
|
|
public class RssSyncJob : IJob
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2011-05-20 05:52:05 +00:00
|
|
|
|
private readonly DownloadProvider _downloadProvider;
|
2011-05-26 04:25:59 +00:00
|
|
|
|
private readonly IndexerProvider _indexerProvider;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
private readonly MonitoredEpisodeSpecification _isMonitoredEpisodeSpecification;
|
|
|
|
|
private readonly AllowedDownloadSpecification _allowedDownloadSpecification;
|
|
|
|
|
private readonly UpgradeHistorySpecification _upgradeHistorySpecification;
|
2012-10-07 19:16:43 +00:00
|
|
|
|
private readonly ConfigProvider _configProvider;
|
2011-04-22 06:23:29 +00:00
|
|
|
|
|
2011-04-20 01:20:20 +00:00
|
|
|
|
|
|
|
|
|
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2012-09-08 23:38:42 +00:00
|
|
|
|
public RssSyncJob(DownloadProvider downloadProvider, IndexerProvider indexerProvider,
|
2012-10-07 19:16:43 +00:00
|
|
|
|
MonitoredEpisodeSpecification isMonitoredEpisodeSpecification, AllowedDownloadSpecification allowedDownloadSpecification,
|
|
|
|
|
UpgradeHistorySpecification upgradeHistorySpecification, ConfigProvider configProvider)
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2011-05-20 05:52:05 +00:00
|
|
|
|
_downloadProvider = downloadProvider;
|
2011-05-26 04:25:59 +00:00
|
|
|
|
_indexerProvider = indexerProvider;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
_isMonitoredEpisodeSpecification = isMonitoredEpisodeSpecification;
|
|
|
|
|
_allowedDownloadSpecification = allowedDownloadSpecification;
|
|
|
|
|
_upgradeHistorySpecification = upgradeHistorySpecification;
|
2012-10-07 19:16:43 +00:00
|
|
|
|
_configProvider = configProvider;
|
2011-04-20 01:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return "RSS Sync"; }
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-15 02:47:23 +00:00
|
|
|
|
public TimeSpan DefaultInterval
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2012-10-07 19:16:43 +00:00
|
|
|
|
get { return TimeSpan.FromMinutes(_configProvider.RssSyncInterval); }
|
2011-04-20 01:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-09-10 19:04:17 +00:00
|
|
|
|
public void Start(ProgressNotification notification, dynamic options)
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2011-05-20 05:52:05 +00:00
|
|
|
|
var reports = new List<EpisodeParseResult>();
|
|
|
|
|
|
2012-09-08 23:38:42 +00:00
|
|
|
|
notification.CurrentMessage = "Fetching RSS";
|
|
|
|
|
|
|
|
|
|
Parallel.ForEach(_indexerProvider.GetEnabledIndexers(), indexer =>
|
2011-04-20 01:20:20 +00:00
|
|
|
|
{
|
2011-05-20 05:52:05 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2011-05-26 04:25:59 +00:00
|
|
|
|
reports.AddRange(indexer.FetchRss());
|
2011-05-20 05:52:05 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2011-05-28 19:23:35 +00:00
|
|
|
|
Logger.ErrorException("An error has occurred while fetching items from " + indexer.Name, e);
|
2011-05-20 05:52:05 +00:00
|
|
|
|
}
|
2012-09-08 23:38:42 +00:00
|
|
|
|
});
|
2011-05-20 05:52:05 +00:00
|
|
|
|
|
|
|
|
|
Logger.Debug("Finished fetching reports from all indexers. Total {0}", reports.Count);
|
2012-09-08 23:38:42 +00:00
|
|
|
|
|
2011-05-28 19:23:35 +00:00
|
|
|
|
notification.CurrentMessage = "Processing downloaded RSS";
|
2011-05-20 05:52:05 +00:00
|
|
|
|
|
|
|
|
|
foreach (var episodeParseResult in reports)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2012-02-07 05:08:07 +00:00
|
|
|
|
if (_isMonitoredEpisodeSpecification.IsSatisfiedBy(episodeParseResult) &&
|
2012-04-20 06:42:13 +00:00
|
|
|
|
_allowedDownloadSpecification.IsSatisfiedBy(episodeParseResult) == ReportRejectionType.None &&
|
2012-02-07 05:08:07 +00:00
|
|
|
|
_upgradeHistorySpecification.IsSatisfiedBy(episodeParseResult))
|
2011-05-20 05:52:05 +00:00
|
|
|
|
{
|
|
|
|
|
_downloadProvider.DownloadReport(episodeParseResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
catch (Exception e)
|
|
|
|
|
{
|
2011-07-06 06:17:21 +00:00
|
|
|
|
Logger.ErrorException("An error has occurred while processing parse result items from " + episodeParseResult, e);
|
2011-05-20 05:52:05 +00:00
|
|
|
|
}
|
2011-04-20 01:20:20 +00:00
|
|
|
|
}
|
2011-05-20 05:52:05 +00:00
|
|
|
|
|
2011-07-06 06:17:21 +00:00
|
|
|
|
notification.CurrentMessage = "RSS Sync Completed";
|
|
|
|
|
|
2012-02-22 04:43:19 +00:00
|
|
|
|
Logger.Info("RSS Sync completed");
|
|
|
|
|
|
2011-04-20 01:20:20 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|