2012-02-07 05:08:07 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-07 00:19:49 +00:00
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-03-06 21:20:33 +00:00
|
|
|
|
using NzbDrone.Core.Organizer;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download.Clients
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
public class BlackholeProvider : IDownloadClient
|
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
private readonly IConfigService _configService;
|
2013-04-10 23:41:45 +00:00
|
|
|
|
private readonly IHttpProvider _httpProvider;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly UpgradeHistorySpecification _upgradeHistorySpecification;
|
|
|
|
|
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-04-10 23:41:45 +00:00
|
|
|
|
public BlackholeProvider(IConfigService configService, IHttpProvider httpProvider,
|
2012-02-07 05:08:07 +00:00
|
|
|
|
DiskProvider diskProvider, UpgradeHistorySpecification upgradeHistorySpecification)
|
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService = configService;
|
2012-02-07 05:08:07 +00:00
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_upgradeHistorySpecification = upgradeHistorySpecification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BlackholeProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-23 02:56:27 +00:00
|
|
|
|
public virtual bool DownloadNzb(string url, string title, bool recentlyAired)
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-03-06 21:20:33 +00:00
|
|
|
|
title = FileNameBuilder.CleanFilename(title);
|
2012-11-19 02:17:00 +00:00
|
|
|
|
|
2013-02-24 06:48:52 +00:00
|
|
|
|
var filename = Path.Combine(_configService.BlackholeDirectory, title + ".nzb");
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
|
|
|
|
if (_diskProvider.FileExists(filename))
|
|
|
|
|
{
|
|
|
|
|
//Return true so a lesser quality is not returned.
|
2012-02-11 08:16:26 +00:00
|
|
|
|
logger.Info("NZB already exists on disk: {0}", filename);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
logger.Trace("Downloading NZB from: {0} to: {1}", url, filename);
|
|
|
|
|
_httpProvider.DownloadFile(url, filename);
|
|
|
|
|
|
|
|
|
|
logger.Trace("NZB Download succeeded, saved to: {0}", filename);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
logger.WarnException("Failed to download NZB: " + url, ex);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-07 19:01:24 +00:00
|
|
|
|
public virtual bool IsInQueue(IndexerParseResult newParseResult)
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
|
|
|
|
return !_upgradeHistorySpecification.IsSatisfiedBy(newParseResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|