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