mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
32 lines
915 B
C#
32 lines
915 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Serializer;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.Scene
|
|
{
|
|
public interface ISceneMappingProxy
|
|
{
|
|
List<SceneMapping> Fetch();
|
|
}
|
|
|
|
public class SceneMappingProxy : ISceneMappingProxy
|
|
{
|
|
private readonly IHttpProvider _httpProvider;
|
|
private readonly IConfigService _configService;
|
|
|
|
|
|
public SceneMappingProxy(IHttpProvider httpProvider, IConfigService configService)
|
|
{
|
|
_httpProvider = httpProvider;
|
|
_configService = configService;
|
|
|
|
}
|
|
|
|
public List<SceneMapping> Fetch()
|
|
{
|
|
var mappingsJson = _httpProvider.DownloadString(_configService.ServiceRootUrl + "/SceneMapping/Active");
|
|
return Json.Deserialize<List<SceneMapping>>(mappingsJson);
|
|
}
|
|
}
|
|
} |