2012-10-17 07:00:28 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NLog;
|
|
|
|
|
using Newtonsoft.Json;
|
|
|
|
|
using Newtonsoft.Json.Linq;
|
|
|
|
|
using NzbDrone.Common;
|
|
|
|
|
using NzbDrone.Core.Model.Xem;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
|
|
|
|
public class XemCommunicationProvider
|
|
|
|
|
{
|
2013-04-11 01:41:45 +02:00
|
|
|
|
private readonly IHttpProvider _httpProvider;
|
2012-10-17 07:00:28 +02:00
|
|
|
|
|
|
|
|
|
private static readonly Logger _logger = LogManager.GetCurrentClassLogger();
|
|
|
|
|
|
|
|
|
|
private const string XEM_BASE_URL = "http://thexem.de/map/";
|
|
|
|
|
|
2013-04-11 01:41:45 +02:00
|
|
|
|
public XemCommunicationProvider(IHttpProvider httpProvider)
|
2012-10-17 07:00:28 +02:00
|
|
|
|
{
|
|
|
|
|
_httpProvider = httpProvider;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public XemCommunicationProvider()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual List<Int32> GetXemSeriesIds(string origin = "tvdb")
|
|
|
|
|
{
|
|
|
|
|
_logger.Trace("Fetching Series IDs from: {0}", origin);
|
2012-10-18 08:49:53 +02:00
|
|
|
|
|
|
|
|
|
var url = String.Format("{0}havemap?origin={1}", XEM_BASE_URL, origin);
|
2012-10-17 07:00:28 +02:00
|
|
|
|
var response =_httpProvider.DownloadString(url);
|
|
|
|
|
|
|
|
|
|
CheckForFailureResult(response);
|
|
|
|
|
|
2012-10-18 08:49:53 +02:00
|
|
|
|
var result = JsonConvert.DeserializeObject<XemResult<List<Int32>>>(response);
|
2012-10-17 07:00:28 +02:00
|
|
|
|
|
2012-10-18 08:49:53 +02:00
|
|
|
|
return result.Data.ToList();
|
2012-10-17 07:00:28 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual List<XemSceneTvdbMapping> GetSceneTvdbMappings(int id)
|
|
|
|
|
{
|
|
|
|
|
_logger.Trace("Fetching Mappings for: {0}", id);
|
|
|
|
|
var url = String.Format("{0}all?id={1}&origin=tvdb", XEM_BASE_URL, id);
|
|
|
|
|
var response = _httpProvider.DownloadString(url);
|
|
|
|
|
|
|
|
|
|
CheckForFailureResult(response);
|
|
|
|
|
|
|
|
|
|
var result = JsonConvert.DeserializeObject<List<XemSceneTvdbMapping>>(JObject.Parse(response).SelectToken("data").ToString());
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public virtual void CheckForFailureResult(string response)
|
|
|
|
|
{
|
|
|
|
|
var result = JsonConvert.DeserializeObject<XemResult<dynamic>>(response);
|
|
|
|
|
|
|
|
|
|
if (result != null && result.Result.Equals("failure", StringComparison.InvariantCultureIgnoreCase))
|
|
|
|
|
throw new Exception("Error response received from Xem: " + result.Message);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|