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

91 lines
2.9 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;
using NzbDrone.Common.Disk;
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.Messaging.Commands;
using NzbDrone.Core.Organizer;
using NzbDrone.Core.Parser.Model;
2012-08-30 00:20:48 +00:00
namespace NzbDrone.Core.Download.Clients.Pneumatic
2012-08-30 00:20:48 +00:00
{
public class Pneumatic : DownloadClientBase<FolderSettings>, IExecute<TestPneumaticCommand>
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 Pneumatic(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;
}
public override string 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
{
throw new NotImplementedException("Full season releases are not supported with Pneumatic.");
2013-08-17 23:27:18 +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(Settings.Folder, title + ".nzb");
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);
return null;
2012-08-30 00:20:48 +00:00
}
public bool IsConfigured
{
get
{
return !string.IsNullOrWhiteSpace(Settings.Folder);
}
}
public override IEnumerable<QueueItem> GetQueue()
{
return new QueueItem[0];
}
public override IEnumerable<HistoryItem> GetHistory(int start = 0, int limit = 10)
2013-10-22 07:31:36 +00:00
{
return new HistoryItem[0];
}
public override void RemoveFromQueue(string id)
{
}
public override void RemoveFromHistory(string id)
{
}
public void Execute(TestPneumaticCommand message)
2012-08-30 00:20:48 +00:00
{
var testPath = Path.Combine(message.Folder, "drone_test.txt");
_diskProvider.WriteAllText(testPath, DateTime.Now.ToString());
_diskProvider.DeleteFile(testPath);
2012-08-30 00:20:48 +00:00
}
}
}