Lidarr/NzbDrone.Core/Download/Clients/Nzbget/NzbgetProvider.cs

172 lines
5.6 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using Newtonsoft.Json;
using NLog;
using NzbDrone.Common;
2013-02-24 06:48:52 +00:00
using NzbDrone.Core.Configuration;
using NzbDrone.Core.Model;
using NzbDrone.Core.Tv;
2013-03-05 05:33:34 +00:00
namespace NzbDrone.Core.Download.Clients.Nzbget
{
public class NzbgetProvider : IDownloadClient
{
2013-02-24 06:48:52 +00:00
private readonly IConfigService _configService;
2013-04-10 23:41:45 +00:00
private readonly IHttpProvider _httpProvider;
private readonly Logger _logger;
2013-04-10 23:41:45 +00:00
public NzbgetProvider(IConfigService configService, IHttpProvider httpProvider, Logger logger)
{
2013-02-24 06:48:52 +00:00
_configService = configService;
_httpProvider = httpProvider;
2013-04-10 23:41:45 +00:00
_logger = logger;
}
public NzbgetProvider()
{
}
public virtual bool IsInQueue(IndexerParseResult newParseResult)
{
try
{
var queue = GetQueue().Where(c => c.ParseResult != null);
var matchigTitle = queue.Where(q => String.Equals(q.ParseResult.CleanTitle, newParseResult.Series.CleanTitle, StringComparison.InvariantCultureIgnoreCase));
var matchingTitleWithQuality = matchigTitle.Where(q => q.ParseResult.Quality >= newParseResult.Quality);
2013-03-24 04:16:00 +00:00
if (newParseResult.Series.SeriesType == SeriesTypes.Daily)
{
return matchingTitleWithQuality.Any(q => q.ParseResult.AirDate.Value.Date == newParseResult.AirDate.Value.Date);
}
var matchingSeason = matchingTitleWithQuality.Where(q => q.ParseResult.SeasonNumber == newParseResult.SeasonNumber);
if (newParseResult.FullSeason)
{
return matchingSeason.Any();
}
return matchingSeason.Any(q => q.ParseResult.EpisodeNumbers != null && q.ParseResult.EpisodeNumbers.Any(e => newParseResult.EpisodeNumbers.Contains(e)));
}
catch (Exception ex)
{
2013-04-10 23:41:45 +00:00
_logger.WarnException("Unable to connect to Nzbget to check queue.", ex);
return false;
}
}
public virtual bool DownloadNzb(string url, string title, bool recentlyAired)
{
try
{
2013-02-24 06:48:52 +00:00
string cat = _configService.NzbgetTvCategory;
int priority = recentlyAired ? (int)_configService.NzbgetRecentTvPriority : (int)_configService.NzbgetBacklogTvPriority;
var command = new JsonRequest
{
Method = "appendurl",
Params = new object[]{ title, cat, priority, false, url }
};
2013-04-10 23:41:45 +00:00
_logger.Info("Adding report [{0}] to the queue.", title);
var response = PostCommand(JsonConvert.SerializeObject(command));
CheckForError(response);
var success = JsonConvert.DeserializeObject<EnqueueResponse>(response).Result;
2013-04-10 23:41:45 +00:00
_logger.Debug("Queue Response: [{0}]", success);
return true;
}
catch (WebException ex)
{
2013-04-10 23:41:45 +00:00
_logger.Error("Error communicating with Nzbget: " + ex.Message);
}
return false;
}
public virtual List<QueueItem> GetQueue()
{
var command = new JsonRequest
{
Method = "listgroups",
Params = null
};
var response = PostCommand(JsonConvert.SerializeObject(command));
CheckForError(response);
return JsonConvert.DeserializeObject<Queue>(response).QueueItems;
}
public virtual VersionModel GetVersion(string host = null, int port = 0, string username = null, string password = null)
{
//Get saved values if any of these are defaults
if (host == null)
2013-02-24 06:48:52 +00:00
host = _configService.NzbgetHost;
if (port == 0)
2013-02-24 06:48:52 +00:00
port = _configService.NzbgetPort;
if (username == null)
2013-02-24 06:48:52 +00:00
username = _configService.NzbgetUsername;
if (password == null)
2013-02-24 06:48:52 +00:00
password = _configService.NzbgetPassword;
var command = new JsonRequest
{
Method = "version",
Params = null
};
2013-01-24 07:31:41 +00:00
var address = String.Format(@"{0}:{1}", host, port);
var response = _httpProvider.PostCommand(address, username, password, JsonConvert.SerializeObject(command));
CheckForError(response);
return JsonConvert.DeserializeObject<VersionModel>(response);
}
2013-01-24 07:31:41 +00:00
public virtual string Test(string host, int port, string username, string password)
{
try
{
var version = GetVersion(host, port, username, password);
return version.Result;
}
catch(Exception ex)
{
2013-04-10 23:41:45 +00:00
_logger.DebugException("Failed to Test Nzbget", ex);
}
return String.Empty;
}
private string PostCommand(string command)
{
2013-01-24 07:31:41 +00:00
var url = String.Format(@"{0}:{1}",
2013-02-24 06:48:52 +00:00
_configService.NzbgetHost,
_configService.NzbgetPort);
2013-02-24 06:48:52 +00:00
return _httpProvider.PostCommand(url, _configService.NzbgetUsername, _configService.NzbgetPassword, command);
}
private void CheckForError(string response)
{
var result = JsonConvert.DeserializeObject<JsonError>(response);
if (result.Error != null)
throw new ApplicationException(result.Error.ToString());
}
}
}