2012-08-30 00:20:48 +00:00
|
|
|
|
using System;
|
2013-04-15 01:41:39 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-08-30 00:20:48 +00:00
|
|
|
|
using System.IO;
|
|
|
|
|
using NLog;
|
|
|
|
|
using NzbDrone.Common;
|
2013-08-31 01:42:30 +00:00
|
|
|
|
using NzbDrone.Common.Instrumentation;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-03-06 21:20:33 +00:00
|
|
|
|
using NzbDrone.Core.Organizer;
|
2013-04-15 01:41:39 +00:00
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
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
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public class PneumaticClient : IDownloadClient
|
2012-08-30 00:20:48 +00:00
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
private readonly IConfigService _configService;
|
2013-04-10 23:41:45 +00:00
|
|
|
|
private readonly IHttpProvider _httpProvider;
|
2013-05-10 23:53:50 +00:00
|
|
|
|
private readonly IDiskProvider _diskProvider;
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-08-31 01:42:30 +00:00
|
|
|
|
private static readonly Logger logger = NzbDroneLogger.GetLogger();
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public PneumaticClient(IConfigService configService, IHttpProvider httpProvider,
|
2013-05-10 23:53:50 +00:00
|
|
|
|
IDiskProvider 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;
|
|
|
|
|
}
|
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
public void DownloadNzb(RemoteEpisode remoteEpisode)
|
2012-08-30 00:20:48 +00:00
|
|
|
|
{
|
2013-09-13 23:17:58 +00:00
|
|
|
|
var url = remoteEpisode.Release.DownloadUrl;
|
|
|
|
|
var title = remoteEpisode.Release.Title;
|
2013-07-08 03:15:15 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
if (remoteEpisode.ParsedEpisodeInfo.FullSeason)
|
2012-08-30 00:20:48 +00:00
|
|
|
|
{
|
2013-08-17 23:27:18 +00:00
|
|
|
|
throw new NotImplementedException("Full season Pneumatic releases are not supported.");
|
|
|
|
|
}
|
2012-11-19 02:17:00 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
title = FileNameBuilder.CleanFilename(title);
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
//Save to the Pneumatic directory (The user will need to ensure its accessible by XBMC)
|
|
|
|
|
var filename = Path.Combine(_configService.PneumaticFolder, title + ".nzb");
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
logger.Trace("Downloading NZB from: {0} to: {1}", url, filename);
|
|
|
|
|
_httpProvider.DownloadFile(url, filename);
|
2012-08-30 00:20:48 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
logger.Trace("NZB Download succeeded, saved to: {0}", filename);
|
2013-04-07 19:01:24 +00:00
|
|
|
|
|
2013-08-17 23:27:18 +00:00
|
|
|
|
var contents = String.Format("plugin://plugin.program.pneumatic/?mode=strm&type=add_file&nzb={0}&nzbname={1}", filename, title);
|
|
|
|
|
_diskProvider.WriteAllText(Path.Combine(_configService.DownloadedEpisodesFolder, title + ".strm"), contents);
|
2012-08-30 00:20:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-31 05:49:41 +00:00
|
|
|
|
public bool IsConfigured
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return !string.IsNullOrWhiteSpace(_configService.PneumaticFolder);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public IEnumerable<QueueItem> GetQueue()
|
|
|
|
|
{
|
|
|
|
|
return new QueueItem[0];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual bool IsInQueue(RemoteEpisode newEpisode)
|
2012-08-30 00:20:48 +00:00
|
|
|
|
{
|
2013-03-26 05:51:56 +00:00
|
|
|
|
return false;
|
2012-08-30 00:20:48 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|