Radarr/NzbDrone.Core/Providers/SabProvider.cs

139 lines
5.0 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
2010-09-28 03:40:01 +00:00
using System.Web;
using System.Xml.Linq;
2010-10-05 06:21:18 +00:00
using NLog;
using NzbDrone.Core.Model;
2011-04-04 03:50:12 +00:00
using NzbDrone.Core.Providers.Core;
namespace NzbDrone.Core.Providers
{
2011-04-08 15:36:34 +00:00
public class SabProvider
{
2011-04-10 02:44:01 +00:00
private static readonly Logger Logger = LogManager.GetCurrentClassLogger();
private readonly ConfigProvider _config;
2011-04-07 02:25:52 +00:00
private readonly HttpProvider _http;
public SabProvider(ConfigProvider config, HttpProvider http)
{
_config = config;
2010-09-28 03:40:01 +00:00
_http = http;
}
2011-04-08 15:36:34 +00:00
public virtual bool AddByUrl(string url, string title)
{
2010-09-28 03:40:01 +00:00
const string mode = "addurl";
string cat = _config.GetValue("SabTvCategory", String.Empty, true);
//string cat = "tv";
string priority = _config.GetValue("SabTvPriority", String.Empty, false);
2010-09-28 05:35:15 +00:00
string name = url.Replace("&", "%26");
string nzbName = HttpUtility.UrlEncode(title);
2010-09-28 03:40:01 +00:00
2011-04-10 02:44:01 +00:00
string action = string.Format("mode={0}&name={1}&priority={2}&cat={3}&nzbname={4}", mode, name, priority,
cat, nzbName);
2010-09-28 03:40:01 +00:00
string request = GetSabRequest(action);
2010-10-05 06:21:18 +00:00
Logger.Debug("Adding report [{0}] to the queue.", nzbName);
2010-09-28 05:01:54 +00:00
string response = _http.DownloadString(request).Replace("\n", String.Empty);
2010-10-05 06:21:18 +00:00
Logger.Debug("Queue Repsonse: [{0}]", response);
2010-09-28 03:40:01 +00:00
2010-09-28 06:09:24 +00:00
if (response == "ok")
return true;
2010-09-28 03:40:01 +00:00
return false;
}
2011-04-08 15:36:34 +00:00
public virtual bool IsInQueue(string title)
{
2010-09-28 06:09:24 +00:00
const string action = "mode=queue&output=xml";
2010-09-28 03:40:01 +00:00
string request = GetSabRequest(action);
2010-09-28 05:01:54 +00:00
string response = _http.DownloadString(request);
2010-09-28 03:40:01 +00:00
XDocument xDoc = XDocument.Parse(response);
2011-04-20 01:20:20 +00:00
//If an Error Occurred, return)
2010-09-28 06:09:24 +00:00
if (xDoc.Descendants("error").Count() != 0)
return false;
2010-09-28 03:40:01 +00:00
2010-09-28 06:09:24 +00:00
if (xDoc.Descendants("queue").Count() == 0)
return false;
2010-09-28 03:40:01 +00:00
//Get the Count of Items in Queue where 'filename' is Equal to goodName, if not zero, return true (isInQueue)))
2011-04-10 02:44:01 +00:00
if (
(xDoc.Descendants("slot").Where(
s => s.Element("filename").Value.Equals(title, StringComparison.InvariantCultureIgnoreCase))).Count() !=
0)
2010-09-28 03:40:01 +00:00
{
2010-10-05 06:21:18 +00:00
Logger.Debug("Episode in queue - '{0}'", title);
2010-09-28 03:40:01 +00:00
return true;
}
return false; //Not in Queue
}
2011-04-08 15:36:34 +00:00
public virtual bool AddById(string id, string title)
{
//mode=addid&name=333333&pp=3&script=customscript.cmd&cat=Example&priority=-1
const string mode = "addid";
string cat = _config.GetValue("SabTvCategory", String.Empty, true);
//string cat = "tv";
string priority = _config.GetValue("SabTvPriority", String.Empty, false);
string nzbName = HttpUtility.UrlEncode(title);
2011-04-10 02:44:01 +00:00
string action = string.Format("mode={0}&name={1}&priority={2}&cat={3}&nzbname={4}", mode, id, priority, cat,
nzbName);
string request = GetSabRequest(action);
Logger.Debug("Adding report [{0}] to the queue.", nzbName);
string response = _http.DownloadString(request).Replace("\n", String.Empty);
Logger.Debug("Queue Repsonse: [{0}]", response);
if (response == "ok")
return true;
return false;
}
2010-09-28 03:40:01 +00:00
private string GetSabRequest(string action)
{
2011-04-10 02:44:01 +00:00
string sabnzbdInfo = _config.GetValue("SabHost", String.Empty, false) + ":" +
_config.GetValue("SabPort", String.Empty, false);
string username = _config.GetValue("SabUsername", String.Empty, false);
string password = _config.GetValue("SabPassword", String.Empty, false);
string apiKey = _config.GetValue("SabApiKey", String.Empty, false);
2011-04-10 02:44:01 +00:00
return
string.Format(@"http://{0}/api?$Action&apikey={1}&ma_username={2}&ma_password={3}", sabnzbdInfo, apiKey,
username, password).Replace("$Action", action);
}
public String GetSabTitle(EpisodeParseResult parseResult)
{
//Show Name - 1x01-1x02 - Episode Name
//Show Name - 1x01 - Episode Name
var episodeString = new List<String>();
foreach (var episode in parseResult.Episodes)
{
episodeString.Add(String.Format("{0}x{1}", parseResult.SeasonNumber, episode));
}
var epNumberString = String.Join("-", episodeString);
var result = String.Format("{0} - {1} - {2} {3}", parseResult.FolderName, epNumberString, parseResult.EpisodeTitle, parseResult.Quality);
if (parseResult.Proper)
{
result += " [Proper]";
}
return result;
}
}
2010-09-28 05:58:49 +00:00
}