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