1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-02 06:31:51 +02:00
Sonarr/NzbDrone.Core/Download/Clients/PneumaticClient.cs

74 lines
2.4 KiB
C#
Raw Normal View History

2012-08-30 03:20:48 +03:00
using System;
using System.Collections.Generic;
2012-08-30 03:20:48 +03:00
using System.IO;
using NLog;
using NzbDrone.Common;
2013-08-31 04:42:30 +03:00
using NzbDrone.Common.Instrumentation;
2013-02-24 09:48:52 +03:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Organizer;
using NzbDrone.Core.Parser.Model;
2012-08-30 03:20:48 +03:00
2013-03-05 08:33:34 +03:00
namespace NzbDrone.Core.Download.Clients
2012-08-30 03:20:48 +03:00
{
public class PneumaticClient : IDownloadClient
2012-08-30 03:20:48 +03:00
{
2013-02-24 09:48:52 +03:00
private readonly IConfigService _configService;
2013-04-11 02:41:45 +03:00
private readonly IHttpProvider _httpProvider;
2013-05-11 02:53:50 +03:00
private readonly IDiskProvider _diskProvider;
2012-08-30 03:20:48 +03:00
2013-08-31 04:42:30 +03:00
private static readonly Logger logger = NzbDroneLogger.GetLogger();
2012-08-30 03:20:48 +03:00
public PneumaticClient(IConfigService configService, IHttpProvider httpProvider,
2013-05-11 02:53:50 +03:00
IDiskProvider diskProvider)
2012-08-30 03:20:48 +03:00
{
2013-02-24 09:48:52 +03:00
_configService = configService;
2012-08-30 03:20:48 +03:00
_httpProvider = httpProvider;
_diskProvider = diskProvider;
}
2013-08-18 02:27:18 +03:00
public void DownloadNzb(RemoteEpisode remoteEpisode)
2012-08-30 03:20:48 +03:00
{
2013-09-14 02:17:58 +03:00
var url = remoteEpisode.Release.DownloadUrl;
var title = remoteEpisode.Release.Title;
2013-08-18 02:27:18 +03:00
if (remoteEpisode.ParsedEpisodeInfo.FullSeason)
2012-08-30 03:20:48 +03:00
{
2013-08-18 02:27:18 +03:00
throw new NotImplementedException("Full season Pneumatic releases are not supported.");
}
2013-08-18 02:27:18 +03:00
title = FileNameBuilder.CleanFilename(title);
2012-08-30 03:20:48 +03:00
2013-08-18 02:27:18 +03: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 03:20:48 +03:00
2013-08-18 02:27:18 +03:00
2012-08-30 03:20:48 +03:00
2013-08-18 02:27:18 +03:00
logger.Trace("Downloading NZB from: {0} to: {1}", url, filename);
_httpProvider.DownloadFile(url, filename);
2012-08-30 03:20:48 +03:00
2013-08-18 02:27:18 +03:00
logger.Trace("NZB Download succeeded, saved to: {0}", filename);
2013-08-18 02:27:18 +03: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 03:20:48 +03: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 03:20:48 +03:00
{
return false;
2012-08-30 03:20:48 +03:00
}
}
}