1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/Jobs/Implementations/RssSyncJob.cs

89 lines
2.8 KiB
C#
Raw Normal View History

2013-03-05 08:37:33 +03:00
using System;
2011-05-20 08:52:05 +03:00
using System.Collections.Generic;
using System.Threading.Tasks;
2011-04-20 04:20:20 +03:00
using NLog;
2013-02-24 09:48:52 +03:00
using NzbDrone.Core.Configuration;
2013-03-05 08:37:33 +03:00
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Download;
2013-02-21 10:07:34 +03:00
using NzbDrone.Core.Indexers;
2011-05-20 08:52:05 +03:00
using NzbDrone.Core.Model;
using NzbDrone.Core.Model.Notification;
2011-04-20 04:20:20 +03:00
2013-03-05 08:37:33 +03:00
namespace NzbDrone.Core.Jobs.Implementations
2011-04-20 04:20:20 +03:00
{
public class RssSyncJob : IJob
2011-04-20 04:20:20 +03:00
{
2011-05-20 08:52:05 +03:00
private readonly DownloadProvider _downloadProvider;
2013-02-21 10:26:32 +03:00
private readonly IIndexerService _indexerService;
2013-03-07 04:51:47 +03:00
private readonly IDownloadDirector DownloadDirector;
2013-02-24 09:48:52 +03:00
private readonly IConfigService _configService;
2011-04-22 09:23:29 +03:00
2011-04-20 04:20:20 +03:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
2013-03-07 04:51:47 +03:00
public RssSyncJob(DownloadProvider downloadProvider, IIndexerService indexerService, IDownloadDirector downloadDirector, IConfigService configService)
2011-04-20 04:20:20 +03:00
{
2011-05-20 08:52:05 +03:00
_downloadProvider = downloadProvider;
2013-02-21 10:07:34 +03:00
_indexerService = indexerService;
2013-03-07 04:51:47 +03:00
DownloadDirector = downloadDirector;
2013-02-24 09:48:52 +03:00
_configService = configService;
2011-04-20 04:20:20 +03:00
}
public string Name
{
get { return "RSS Sync"; }
}
public TimeSpan DefaultInterval
2011-04-20 04:20:20 +03:00
{
2013-02-24 09:48:52 +03:00
get { return TimeSpan.FromMinutes(_configService.RssSyncInterval); }
2011-04-20 04:20:20 +03:00
}
2012-09-10 22:04:17 +03:00
public void Start(ProgressNotification notification, dynamic options)
2011-04-20 04:20:20 +03:00
{
2011-05-20 08:52:05 +03:00
var reports = new List<EpisodeParseResult>();
notification.CurrentMessage = "Fetching RSS";
2013-02-21 10:07:34 +03:00
Parallel.ForEach(_indexerService.GetEnabledIndexers(), indexer =>
2011-04-20 04:20:20 +03:00
{
2011-05-20 08:52:05 +03:00
try
{
2013-03-05 08:55:36 +03:00
var parseResults = indexer.FetchRss();
lock (reports)
{
reports.AddRange(parseResults);
}
2011-05-20 08:52:05 +03:00
}
catch (Exception e)
{
2011-05-28 22:23:35 +03:00
Logger.ErrorException("An error has occurred while fetching items from " + indexer.Name, e);
2011-05-20 08:52:05 +03:00
}
});
2011-05-20 08:52:05 +03:00
Logger.Debug("Finished fetching reports from all indexers. Total {0}", reports.Count);
2011-05-28 22:23:35 +03:00
notification.CurrentMessage = "Processing downloaded RSS";
2011-05-20 08:52:05 +03:00
foreach (var episodeParseResult in reports)
{
try
{
2013-03-07 04:51:47 +03:00
if (DownloadDirector.GetDownloadDecision(episodeParseResult).Approved)
2011-05-20 08:52:05 +03:00
{
_downloadProvider.DownloadReport(episodeParseResult);
}
}
catch (Exception e)
{
2011-07-06 09:17:21 +03:00
Logger.ErrorException("An error has occurred while processing parse result items from " + episodeParseResult, e);
2011-05-20 08:52:05 +03:00
}
2011-04-20 04:20:20 +03:00
}
2011-05-20 08:52:05 +03:00
2011-07-06 09:17:21 +03:00
notification.CurrentMessage = "RSS Sync Completed";
2012-02-22 07:43:19 +03:00
Logger.Info("RSS Sync completed");
2011-04-20 04:20:20 +03:00
}
}
}