You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
84 lines
2.9 KiB
84 lines
2.9 KiB
using System;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Xml.Linq;
|
|
using log4net;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class SabProvider : IDownloadProvider
|
|
{
|
|
private readonly IConfigProvider _config;
|
|
private readonly ILog _logger;
|
|
private readonly IHttpProvider _http;
|
|
|
|
public SabProvider(IConfigProvider config, ILog logger, IHttpProvider http)
|
|
{
|
|
_config = config;
|
|
_logger = logger;
|
|
_http = http;
|
|
}
|
|
|
|
#region IDownloadProvider Members
|
|
|
|
public bool AddByUrl(string url, string title)
|
|
{
|
|
const string mode = "addurl";
|
|
const string cat = "tv";
|
|
string priority = _config.GetValue("Priority", String.Empty, false);
|
|
string name = url.Replace("&", "%26");
|
|
string nzbName = HttpUtility.UrlEncode(title);
|
|
|
|
string action = string.Format("mode={0}&name={1}&priority={2}&cat={3}&nzbname={4}", mode, name, priority, cat, nzbName);
|
|
string request = GetSabRequest(action);
|
|
|
|
_logger.DebugFormat("Adding report [{0}] to the queue.", nzbName);
|
|
|
|
string response = _http.DownloadString(request).Replace("\n", String.Empty);
|
|
_logger.DebugFormat("Queue Repsonse: [{0}]", response);
|
|
|
|
if (response == "ok")
|
|
return true;
|
|
|
|
return false;
|
|
}
|
|
|
|
public bool IsInQueue(string title)
|
|
{
|
|
const string action = "mode=queue&output=xml";
|
|
string request = GetSabRequest(action);
|
|
string response = _http.DownloadString(request);
|
|
|
|
XDocument xDoc = XDocument.Parse(response);
|
|
|
|
//If an Error Occurred, retuyrn)
|
|
if (xDoc.Descendants("error").Count() != 0)
|
|
return false;
|
|
|
|
if (xDoc.Descendants("queue").Count() == 0)
|
|
return false;
|
|
|
|
//Get the Count of Items in Queue where 'filename' is Equal to goodName, if not zero, return true (isInQueue)))
|
|
if ((xDoc.Descendants("slot").Where(s => s.Element("filename").Value.Equals(title, StringComparison.InvariantCultureIgnoreCase))).Count() != 0)
|
|
{
|
|
_logger.DebugFormat("Episode in queue - '{0}'", title);
|
|
|
|
return true;
|
|
}
|
|
|
|
return false; //Not in Queue
|
|
}
|
|
|
|
#endregion
|
|
|
|
private string GetSabRequest(string action)
|
|
{
|
|
string sabnzbdInfo = _config.GetValue("SabnzbdInfo", String.Empty, false);
|
|
string username = _config.GetValue("Username", String.Empty, false);
|
|
string password = _config.GetValue("Password", String.Empty, false);
|
|
string apiKey = _config.GetValue("ApiKey", String.Empty, false);
|
|
|
|
return string.Format(@"http://{0}/sabnzbd/api?$Action&apikey={1}&ma_username={2}&ma_password={3}", sabnzbdInfo, apiKey, username, password).Replace("$Action", action);
|
|
}
|
|
}
|
|
} |