2010-09-25 16:26:31 +00:00
|
|
|
|
using System;
|
2011-04-23 20:53:13 +00:00
|
|
|
|
using System.Collections.Generic;
|
2012-10-20 20:03:18 +00:00
|
|
|
|
using System.Net;
|
2010-09-28 03:40:01 +00:00
|
|
|
|
using System.Web;
|
2012-01-19 04:05:03 +00:00
|
|
|
|
using Newtonsoft.Json;
|
2012-01-20 08:18:38 +00:00
|
|
|
|
using Newtonsoft.Json.Linq;
|
2010-10-05 06:21:18 +00:00
|
|
|
|
using NLog;
|
2012-02-11 00:48:20 +00:00
|
|
|
|
using NzbDrone.Common;
|
2013-02-24 06:48:52 +00:00
|
|
|
|
using NzbDrone.Core.Configuration;
|
2013-04-28 19:46:13 +00:00
|
|
|
|
using NzbDrone.Core.Parser.Model;
|
|
|
|
|
using RestSharp;
|
2010-09-25 16:26:31 +00:00
|
|
|
|
|
2013-03-05 05:33:34 +00:00
|
|
|
|
namespace NzbDrone.Core.Download.Clients.Sabnzbd
|
2010-09-25 16:26:31 +00:00
|
|
|
|
{
|
2013-04-28 19:46:13 +00:00
|
|
|
|
public class SabRequestBuilder
|
|
|
|
|
{
|
|
|
|
|
private readonly IConfigService _configService;
|
|
|
|
|
|
|
|
|
|
public SabRequestBuilder(IConfigService configService)
|
|
|
|
|
{
|
|
|
|
|
_configService = configService;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public IRestRequest AddToQueueRequest(RemoteEpisode remoteEpisode)
|
|
|
|
|
{
|
|
|
|
|
string cat = _configService.SabTvCategory;
|
2013-07-04 01:00:46 +00:00
|
|
|
|
int priority = (int)_configService.SabRecentTvPriority;
|
2013-04-28 19:46:13 +00:00
|
|
|
|
|
|
|
|
|
string name = remoteEpisode.Report.NzbUrl.Replace("&", "%26");
|
|
|
|
|
string nzbName = HttpUtility.UrlEncode(remoteEpisode.Report.Title);
|
|
|
|
|
|
|
|
|
|
string action = string.Format("mode=addurl&name={0}&priority={1}&pp=3&cat={2}&nzbname={3}&output=json",
|
|
|
|
|
name, priority, cat, nzbName);
|
|
|
|
|
|
|
|
|
|
string request = GetSabRequest(action);
|
|
|
|
|
|
|
|
|
|
return new RestRequest(request);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private string GetSabRequest(string action)
|
|
|
|
|
{
|
|
|
|
|
return string.Format(@"http://{0}:{1}/api?{2}&apikey={3}&ma_username={4}&ma_password={5}",
|
|
|
|
|
_configService.SabHost,
|
|
|
|
|
_configService.SabPort,
|
|
|
|
|
action,
|
|
|
|
|
_configService.SabApiKey,
|
|
|
|
|
_configService.SabUsername,
|
|
|
|
|
_configService.SabPassword);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public class SabnzbdClient : IDownloadClient
|
2010-09-25 16:26:31 +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-04-28 19:46:13 +00:00
|
|
|
|
private readonly Logger _logger;
|
2010-09-25 16:26:31 +00:00
|
|
|
|
|
2013-04-28 19:46:13 +00:00
|
|
|
|
public SabnzbdClient(IConfigService configService, IHttpProvider httpProvider, Logger logger)
|
2010-09-25 16:26:31 +00:00
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService = configService;
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_httpProvider = httpProvider;
|
2013-04-28 19:46:13 +00:00
|
|
|
|
_logger = logger;
|
2010-09-25 16:26:31 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-07-08 03:15:15 +00:00
|
|
|
|
public virtual bool DownloadNzb(RemoteEpisode remoteEpisode)
|
2012-02-07 05:08:07 +00:00
|
|
|
|
{
|
2013-07-08 03:15:15 +00:00
|
|
|
|
var url = remoteEpisode.Report.NzbUrl;
|
|
|
|
|
var title = remoteEpisode.Report.Title;
|
|
|
|
|
|
2012-10-20 20:03:18 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
2013-02-24 06:48:52 +00:00
|
|
|
|
string cat = _configService.SabTvCategory;
|
2013-07-08 03:15:15 +00:00
|
|
|
|
int priority = remoteEpisode.IsRecentEpisode() ? (int)_configService.SabRecentTvPriority : (int)_configService.SabOlderTvPriority;
|
2012-11-23 02:56:27 +00:00
|
|
|
|
|
2012-12-03 03:47:28 +00:00
|
|
|
|
string name = url.Replace("&", "%26");
|
2012-10-20 20:03:18 +00:00
|
|
|
|
string nzbName = HttpUtility.UrlEncode(title);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-10-23 06:57:01 +00:00
|
|
|
|
string action = string.Format("mode=addurl&name={0}&priority={1}&pp=3&cat={2}&nzbname={3}&output=json",
|
2012-10-20 20:03:18 +00:00
|
|
|
|
name, priority, cat, nzbName);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-10-20 20:03:18 +00:00
|
|
|
|
string request = GetSabRequest(action);
|
2013-04-28 19:46:13 +00:00
|
|
|
|
_logger.Info("Adding report [{0}] to the queue.", title);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-10-23 06:57:01 +00:00
|
|
|
|
var response = _httpProvider.DownloadString(request);
|
2013-04-15 01:41:39 +00:00
|
|
|
|
|
2013-04-28 19:46:13 +00:00
|
|
|
|
_logger.Debug("Queue Response: [{0}]", response);
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-10-23 06:57:01 +00:00
|
|
|
|
CheckForError(response);
|
|
|
|
|
return true;
|
2012-10-20 20:03:18 +00:00
|
|
|
|
}
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
2012-10-20 20:03:18 +00:00
|
|
|
|
catch (WebException ex)
|
|
|
|
|
{
|
2013-04-28 19:46:13 +00:00
|
|
|
|
_logger.Error("Error communicating with SAB: " + ex.Message);
|
2012-10-20 20:03:18 +00:00
|
|
|
|
}
|
2012-02-07 05:08:07 +00:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-15 01:41:39 +00:00
|
|
|
|
public IEnumerable<QueueItem> GetQueue()
|
2012-01-19 00:05:44 +00:00
|
|
|
|
{
|
2013-04-15 01:41:39 +00:00
|
|
|
|
string action = String.Format("mode=queue&output=json&start={0}&limit={1}", 0, 0);
|
2012-01-19 00:05:44 +00:00
|
|
|
|
string request = GetSabRequest(action);
|
|
|
|
|
string response = _httpProvider.DownloadString(request);
|
|
|
|
|
|
2012-01-19 04:05:03 +00:00
|
|
|
|
CheckForError(response);
|
2012-01-19 00:05:44 +00:00
|
|
|
|
|
2013-04-28 19:46:13 +00:00
|
|
|
|
var sabQueue = JsonConvert.DeserializeObject<SabQueue>(JObject.Parse(response).SelectToken("queue").ToString()).Items;
|
2013-04-15 01:41:39 +00:00
|
|
|
|
|
2013-04-28 19:46:13 +00:00
|
|
|
|
foreach (var sabQueueItem in sabQueue)
|
2013-04-15 01:41:39 +00:00
|
|
|
|
{
|
|
|
|
|
var queueItem = new QueueItem();
|
|
|
|
|
queueItem.Id = sabQueueItem.Id;
|
|
|
|
|
queueItem.Title = sabQueueItem.Title;
|
|
|
|
|
queueItem.Size = sabQueueItem.Size;
|
|
|
|
|
queueItem.SizeLeft = sabQueueItem.Size;
|
|
|
|
|
|
|
|
|
|
yield return queueItem;
|
|
|
|
|
}
|
2012-01-19 04:05:03 +00:00
|
|
|
|
}
|
2012-01-19 00:05:44 +00:00
|
|
|
|
|
2012-01-19 04:05:03 +00:00
|
|
|
|
public virtual List<SabHistoryItem> GetHistory(int start = 0, int limit = 0)
|
|
|
|
|
{
|
|
|
|
|
string action = String.Format("mode=history&output=json&start={0}&limit={1}", start, limit);
|
|
|
|
|
string request = GetSabRequest(action);
|
|
|
|
|
string response = _httpProvider.DownloadString(request);
|
2012-01-19 00:05:44 +00:00
|
|
|
|
|
2012-01-19 04:05:03 +00:00
|
|
|
|
CheckForError(response);
|
2012-01-19 00:05:44 +00:00
|
|
|
|
|
2012-01-20 08:18:38 +00:00
|
|
|
|
var items = JsonConvert.DeserializeObject<SabHistory>(JObject.Parse(response).SelectToken("history").ToString()).Items;
|
|
|
|
|
return items ?? new List<SabHistoryItem>();
|
2012-01-19 00:05:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-01-19 04:05:03 +00:00
|
|
|
|
public virtual SabCategoryModel GetCategories(string host = null, int port = 0, string apiKey = null, string username = null, string password = null)
|
2011-08-26 17:45:59 +00:00
|
|
|
|
{
|
|
|
|
|
//Get saved values if any of these are defaults
|
|
|
|
|
if (host == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
host = _configService.SabHost;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
|
|
|
|
if (port == 0)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
port = _configService.SabPort;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
|
|
|
|
if (apiKey == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
apiKey = _configService.SabApiKey;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
|
|
|
|
if (username == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
username = _configService.SabUsername;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
|
|
|
|
if (password == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
password = _configService.SabPassword;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
|
|
|
|
const string action = "mode=get_cats&output=json";
|
|
|
|
|
|
|
|
|
|
var command = string.Format(@"http://{0}:{1}/api?{2}&apikey={3}&ma_username={4}&ma_password={5}",
|
|
|
|
|
host, port, action, apiKey, username, password);
|
|
|
|
|
|
|
|
|
|
var response = _httpProvider.DownloadString(command);
|
|
|
|
|
|
|
|
|
|
if (String.IsNullOrWhiteSpace(response))
|
2012-01-20 05:37:08 +00:00
|
|
|
|
return new SabCategoryModel { categories = new List<string>() };
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
2012-01-20 05:37:08 +00:00
|
|
|
|
var categories = JsonConvert.DeserializeObject<SabCategoryModel>(response);
|
2011-08-26 17:45:59 +00:00
|
|
|
|
|
2012-01-20 05:37:08 +00:00
|
|
|
|
return categories;
|
2011-08-26 17:45:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2012-03-18 04:14:32 +00:00
|
|
|
|
public virtual SabVersionModel GetVersion(string host = null, int port = 0, string apiKey = null, 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.SabHost;
|
2012-03-18 04:14:32 +00:00
|
|
|
|
|
|
|
|
|
if (port == 0)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
port = _configService.SabPort;
|
2012-03-18 04:14:32 +00:00
|
|
|
|
|
|
|
|
|
if (apiKey == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
apiKey = _configService.SabApiKey;
|
2012-03-18 04:14:32 +00:00
|
|
|
|
|
|
|
|
|
if (username == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
username = _configService.SabUsername;
|
2012-03-18 04:14:32 +00:00
|
|
|
|
|
|
|
|
|
if (password == null)
|
2013-02-24 06:48:52 +00:00
|
|
|
|
password = _configService.SabPassword;
|
2012-03-18 04:14:32 +00:00
|
|
|
|
|
|
|
|
|
const string action = "mode=version&output=json";
|
|
|
|
|
|
|
|
|
|
var command = string.Format(@"http://{0}:{1}/api?{2}&apikey={3}&ma_username={4}&ma_password={5}",
|
|
|
|
|
host, port, action, apiKey, username, password);
|
|
|
|
|
|
|
|
|
|
var response = _httpProvider.DownloadString(command);
|
|
|
|
|
|
|
|
|
|
if (String.IsNullOrWhiteSpace(response))
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
var version = JsonConvert.DeserializeObject<SabVersionModel>(response);
|
|
|
|
|
|
|
|
|
|
return version;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual string Test(string host, int port, string apiKey, string username, string password)
|
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
var version = GetVersion(host, port, apiKey, username, password);
|
|
|
|
|
return version.Version;
|
|
|
|
|
}
|
2013-04-15 01:41:39 +00:00
|
|
|
|
catch (Exception ex)
|
2012-03-18 04:14:32 +00:00
|
|
|
|
{
|
2013-04-28 19:46:13 +00:00
|
|
|
|
_logger.DebugException("Failed to Test SABnzbd", ex);
|
2012-03-18 04:14:32 +00:00
|
|
|
|
}
|
2013-04-15 01:41:39 +00:00
|
|
|
|
|
2012-03-18 04:14:32 +00:00
|
|
|
|
return String.Empty;
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-26 17:45:59 +00:00
|
|
|
|
private string GetSabRequest(string action)
|
|
|
|
|
{
|
|
|
|
|
return string.Format(@"http://{0}:{1}/api?{2}&apikey={3}&ma_username={4}&ma_password={5}",
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService.SabHost,
|
|
|
|
|
_configService.SabPort,
|
2011-08-26 17:45:59 +00:00
|
|
|
|
action,
|
2013-02-24 06:48:52 +00:00
|
|
|
|
_configService.SabApiKey,
|
|
|
|
|
_configService.SabUsername,
|
|
|
|
|
_configService.SabPassword);
|
2011-08-26 17:45:59 +00:00
|
|
|
|
}
|
2012-01-19 04:05:03 +00:00
|
|
|
|
|
|
|
|
|
private void CheckForError(string response)
|
|
|
|
|
{
|
|
|
|
|
var result = JsonConvert.DeserializeObject<SabJsonError>(response);
|
2012-01-20 05:37:08 +00:00
|
|
|
|
|
2012-01-20 06:59:37 +00:00
|
|
|
|
if (result.Status != null && result.Status.Equals("false", StringComparison.InvariantCultureIgnoreCase))
|
2012-01-19 04:05:03 +00:00
|
|
|
|
throw new ApplicationException(result.Error);
|
|
|
|
|
}
|
2010-09-25 16:26:31 +00:00
|
|
|
|
}
|
2010-09-28 05:58:49 +00:00
|
|
|
|
}
|