Lidarr/src/NzbDrone.Core/Download/Clients/PneumaticClient.cs

74 lines
2.4 KiB
C#
Raw Normal View History

2012-08-30 00:20:48 +00:00
using System;
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;
using NzbDrone.Core.Organizer;
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
{
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
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-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.");
}
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-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
}
public bool IsConfigured
{
get
{
return !string.IsNullOrWhiteSpace(_configService.PneumaticFolder);
}
}
public IEnumerable<QueueItem> GetQueue()
{
return new QueueItem[0];
}
public virtual bool IsInQueue(RemoteEpisode newEpisode)
2012-08-30 00:20:48 +00:00
{
return false;
2012-08-30 00:20:48 +00:00
}
}
}