2012-02-07 06:08:07 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 07:48:52 +01:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-07 01:19:49 +01:00
|
|
|
|
using NzbDrone.Core.DecisionEngine.Specifications;
|
2013-02-23 22:29:22 +01:00
|
|
|
|
using NzbDrone.Core.History;
|
2013-03-01 08:03:41 +01:00
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
using NzbDrone.Core.Model;
|
2013-02-19 03:19:38 +01:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2013-03-06 22:20:33 +01:00
|
|
|
|
using NzbDrone.Core.Organizer;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
2013-03-05 06:33:34 +01:00
|
|
|
|
namespace NzbDrone.Core.Download.Clients
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
|
|
|
|
public class BlackholeProvider : IDownloadClient
|
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
private readonly IConfigService _configService;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
private readonly HttpProvider _httpProvider;
|
|
|
|
|
private readonly DiskProvider _diskProvider;
|
|
|
|
|
private readonly UpgradeHistorySpecification _upgradeHistorySpecification;
|
|
|
|
|
|
|
|
|
|
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
2013-02-24 07:48:52 +01:00
|
|
|
|
public BlackholeProvider(IConfigService configService, HttpProvider httpProvider,
|
2012-02-07 06:08:07 +01:00
|
|
|
|
DiskProvider diskProvider, UpgradeHistorySpecification upgradeHistorySpecification)
|
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_configService = configService;
|
2012-02-07 06:08:07 +01:00
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_upgradeHistorySpecification = upgradeHistorySpecification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public BlackholeProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-23 03:56:27 +01:00
|
|
|
|
public virtual bool DownloadNzb(string url, string title, bool recentlyAired)
|
2012-02-07 06:08:07 +01:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2013-03-06 22:20:33 +01:00
|
|
|
|
title = FileNameBuilder.CleanFilename(title);
|
2012-11-19 03:17:00 +01:00
|
|
|
|
|
2013-02-24 07:48:52 +01:00
|
|
|
|
var filename = Path.Combine(_configService.BlackholeDirectory, title + ".nzb");
|
2012-02-07 06:08:07 +01:00
|
|
|
|
|
|
|
|
|
if (_diskProvider.FileExists(filename))
|
|
|
|
|
{
|
|
|
|
|
//Return true so a lesser quality is not returned.
|
2012-02-11 09:16:26 +01:00
|
|
|
|
logger.Info("NZB already exists on disk: {0}", filename);
|
2012-02-07 06:08:07 +01: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;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsInQueue(EpisodeParseResult newParseResult)
|
|
|
|
|
{
|
|
|
|
|
return !_upgradeHistorySpecification.IsSatisfiedBy(newParseResult);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|