Radarr/NzbDrone.Core/Download/Clients/PneumaticProvider.cs

77 lines
2.7 KiB
C#
Raw Normal View History

2012-08-30 00:20:48 +00:00
using System;
using System.IO;
using System.Linq;
using NLog;
using NzbDrone.Common;
2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.DecisionEngine.Specifications;
2013-03-01 07:03:41 +00:00
using NzbDrone.Core.MediaFiles;
2012-08-30 00:20:48 +00:00
using NzbDrone.Core.Model;
2013-02-19 02:19:38 +00:00
using NzbDrone.Core.DecisionEngine;
using NzbDrone.Core.Organizer;
2012-08-30 00:20:48 +00:00
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients
2012-08-30 00:20:48 +00:00
{
public class PneumaticProvider : IDownloadClient
{
2013-02-24 06:48:52 +00:00
private readonly IConfigService _configService;
2012-08-30 00:20:48 +00:00
private readonly HttpProvider _httpProvider;
private readonly DiskProvider _diskProvider;
private static readonly Logger logger = LogManager.GetCurrentClassLogger();
2013-02-24 06:48:52 +00:00
public PneumaticProvider(IConfigService configService, HttpProvider httpProvider,
DiskProvider diskProvider)
2012-08-30 00:20:48 +00:00
{
2013-02-24 06:48:52 +00:00
_configService = configService;
2012-08-30 00:20:48 +00:00
_httpProvider = httpProvider;
_diskProvider = diskProvider;
}
public virtual bool DownloadNzb(string url, string title, bool recentlyAired)
2012-08-30 00:20:48 +00:00
{
try
{
//Todo: Allow full season releases
if (Parser.ParseTitle(title).FullSeason)
{
2012-08-30 15:33:09 +00:00
logger.Info("Skipping Full Season Release: {0}", title);
2012-08-30 00:20:48 +00:00
return false;
}
title = FileNameBuilder.CleanFilename(title);
2012-08-30 00:20:48 +00:00
//Save to the Pneumatic directory (The user will need to ensure its accessible by XBMC)
2013-02-24 06:48:52 +00:00
var filename = Path.Combine(_configService.PneumaticDirectory, title + ".nzb");
2012-08-30 00:20:48 +00: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 06:48:52 +00:00
_diskProvider.WriteAllText(Path.Combine(_configService.DownloadClientTvDirectory, title + ".strm"), contents);
2012-08-30 00:20:48 +00:00
return true;
}
catch (Exception ex)
{
logger.WarnException("Failed to download NZB: " + url, ex);
return false;
}
}
public virtual bool IsInQueue(EpisodeParseResult newParseResult)
{
return false;
2012-08-30 00:20:48 +00:00
}
}
}