Radarr/NzbDrone.Core/DataAugmentation/Scene/SceneMappingProxy.cs

32 lines
915 B
C#
Raw Normal View History

2013-04-01 02:43:58 +00:00
using System.Collections.Generic;
using NzbDrone.Common;
2013-05-12 15:18:17 +00:00
using NzbDrone.Common.Serializer;
2013-04-01 02:43:58 +00:00
using NzbDrone.Core.Configuration;
namespace NzbDrone.Core.DataAugmentation.Scene
{
public interface ISceneMappingProxy
{
List<SceneMapping> Fetch();
}
public class SceneMappingProxy : ISceneMappingProxy
{
2013-04-10 23:41:45 +00:00
private readonly IHttpProvider _httpProvider;
2013-04-01 02:43:58 +00:00
private readonly IConfigService _configService;
2013-05-13 02:52:55 +00:00
2013-04-01 02:43:58 +00:00
2013-05-13 02:52:55 +00:00
public SceneMappingProxy(IHttpProvider httpProvider, IConfigService configService)
2013-04-01 02:43:58 +00:00
{
_httpProvider = httpProvider;
_configService = configService;
2013-05-13 02:52:55 +00:00
2013-04-01 02:43:58 +00:00
}
public List<SceneMapping> Fetch()
{
var mappingsJson = _httpProvider.DownloadString(_configService.ServiceRootUrl + "/SceneMapping/Active");
2013-05-13 02:52:55 +00:00
return Json.Deserialize<List<SceneMapping>>(mappingsJson);
2013-04-01 02:43:58 +00:00
}
}
}