2012-08-30 02:20:48 +02: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-01 08:03:41 +01:00
|
|
|
|
using NzbDrone.Core.MediaFiles;
|
2012-08-30 02:20:48 +02:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Providers.Core;
|
2013-02-19 03:19:38 +01:00
|
|
|
|
using NzbDrone.Core.DecisionEngine;
|
2012-08-30 02:20:48 +02:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers.DownloadClients
|
|
|
|
|
{
|
|
|
|
|
public class PneumaticProvider : IDownloadClient
|
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
private readonly IConfigService _configService;
|
2012-08-30 02:20:48 +02: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 PneumaticProvider(IConfigService configService, HttpProvider httpProvider,
|
2012-08-30 02:20:48 +02:00
|
|
|
|
DiskProvider diskProvider, UpgradeHistorySpecification upgradeHistorySpecification)
|
|
|
|
|
{
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_configService = configService;
|
2012-08-30 02:20:48 +02:00
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
_diskProvider = diskProvider;
|
|
|
|
|
_upgradeHistorySpecification = upgradeHistorySpecification;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public PneumaticProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2012-11-23 03:56:27 +01:00
|
|
|
|
public virtual bool DownloadNzb(string url, string title, bool recentlyAired)
|
2012-08-30 02:20:48 +02:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
//Todo: Allow full season releases
|
|
|
|
|
if (Parser.ParseTitle(title).FullSeason)
|
|
|
|
|
{
|
2012-08-30 17:33:09 +02:00
|
|
|
|
logger.Info("Skipping Full Season Release: {0}", title);
|
2012-08-30 02:20:48 +02:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-01 08:03:41 +01:00
|
|
|
|
title = MediaFileService.CleanFilename(title);
|
2012-11-19 03:17:00 +01:00
|
|
|
|
|
2012-08-30 02:20:48 +02:00
|
|
|
|
//Save to the Pneumatic directory (The user will need to ensure its accessible by XBMC)
|
2013-02-24 07:48:52 +01:00
|
|
|
|
var filename = Path.Combine(_configService.PneumaticDirectory, title + ".nzb");
|
2012-08-30 02:20:48 +02:00
|
|
|
|
|
|
|
|
|
if (_diskProvider.FileExists(filename))
|
|
|
|
|
{
|
|
|
|
|
//Return true so a lesser quality is not returned.
|
|
|
|
|
logger.Info("NZB already exists on disk: {0}", filename);
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
|
|
var contents = String.Format("plugin://plugin.program.pneumatic/?mode=strm&type=add_file&nzb={0}&nzbname={1}", filename, title);
|
2013-02-24 07:48:52 +01:00
|
|
|
|
_diskProvider.WriteAllText(Path.Combine(_configService.DownloadClientTvDirectory, title + ".strm"), contents);
|
2012-08-30 02:20:48 +02:00
|
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|