2013-04-01 08:22:16 +02:00
|
|
|
|
using System;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
using System.Collections.Generic;
|
2013-04-01 08:22:16 +02:00
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common.Eventing;
|
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2013-04-01 08:22:16 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-04-07 09:30:37 +02:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2013-04-01 08:22:16 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Download
|
|
|
|
|
{
|
|
|
|
|
public interface IDownloadService
|
|
|
|
|
{
|
2013-04-07 21:01:24 +02:00
|
|
|
|
bool DownloadReport(IndexerParseResult parseResult);
|
2013-04-01 08:22:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class DownloadService : IDownloadService
|
|
|
|
|
{
|
|
|
|
|
private readonly IProvideDownloadClient _downloadClientProvider;
|
|
|
|
|
private readonly IConfigService _configService;
|
|
|
|
|
private readonly IEventAggregator _eventAggregator;
|
|
|
|
|
private readonly Logger _logger;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public DownloadService(IProvideDownloadClient downloadClientProvider, IConfigService configService,
|
|
|
|
|
IEventAggregator eventAggregator, Logger logger)
|
|
|
|
|
{
|
|
|
|
|
_downloadClientProvider = downloadClientProvider;
|
|
|
|
|
_configService = configService;
|
|
|
|
|
_eventAggregator = eventAggregator;
|
|
|
|
|
_logger = logger;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 21:01:24 +02:00
|
|
|
|
public bool DownloadReport(IndexerParseResult parseResult)
|
2013-04-01 08:22:16 +02:00
|
|
|
|
{
|
|
|
|
|
var downloadTitle = parseResult.OriginalString;
|
|
|
|
|
if (!_configService.DownloadClientUseSceneName)
|
|
|
|
|
{
|
|
|
|
|
downloadTitle = parseResult.GetDownloadTitle();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
var provider = _downloadClientProvider.GetDownloadClient();
|
|
|
|
|
var recentEpisode = ContainsRecentEpisode(parseResult);
|
|
|
|
|
|
|
|
|
|
bool success = provider.DownloadNzb(parseResult.NzbUrl, downloadTitle, recentEpisode);
|
|
|
|
|
|
|
|
|
|
if (success)
|
|
|
|
|
{
|
2013-04-07 09:30:37 +02:00
|
|
|
|
_logger.Info("Report sent to download client. {0}", downloadTitle);
|
2013-04-01 08:22:16 +02:00
|
|
|
|
_eventAggregator.Publish(new EpisodeGrabbedEvent(parseResult));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return success;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 21:01:24 +02:00
|
|
|
|
private static bool ContainsRecentEpisode(IndexerParseResult parseResult)
|
2013-04-01 08:22:16 +02:00
|
|
|
|
{
|
|
|
|
|
return parseResult.Episodes.Any(e => e.AirDate >= DateTime.Today.AddDays(-7));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|