mirror of https://github.com/Radarr/Radarr
30 lines
893 B
C#
30 lines
893 B
C#
|
using System.Collections.Generic;
|
||
|
using Newtonsoft.Json;
|
||
|
using NzbDrone.Common;
|
||
|
using NzbDrone.Core.Configuration;
|
||
|
|
||
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
||
|
{
|
||
|
public interface ISceneMappingProxy
|
||
|
{
|
||
|
List<SceneMapping> Fetch();
|
||
|
}
|
||
|
|
||
|
public class SceneMappingProxy : ISceneMappingProxy
|
||
|
{
|
||
|
private readonly HttpProvider _httpProvider;
|
||
|
private readonly IConfigService _configService;
|
||
|
|
||
|
public SceneMappingProxy(HttpProvider httpProvider, IConfigService configService)
|
||
|
{
|
||
|
_httpProvider = httpProvider;
|
||
|
_configService = configService;
|
||
|
}
|
||
|
|
||
|
public List<SceneMapping> Fetch()
|
||
|
{
|
||
|
var mappingsJson = _httpProvider.DownloadString(_configService.ServiceRootUrl + "/SceneMapping/Active");
|
||
|
return JsonConvert.DeserializeObject<List<SceneMapping>>(mappingsJson);
|
||
|
}
|
||
|
}
|
||
|
}
|