1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/NzbDrone.Core/DataAugmentation/Scene/SceneMappingProxy.cs

32 lines
915 B
C#
Raw Normal View History

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