mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
48 lines
1.4 KiB
C#
48 lines
1.4 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.DailySeries
|
|
{
|
|
|
|
public interface IDailySeriesDataProxy
|
|
{
|
|
IEnumerable<int> GetDailySeriesIds();
|
|
}
|
|
|
|
public class DailySeriesDataProxy : IDailySeriesDataProxy
|
|
{
|
|
private readonly IHttpProvider _httpProvider;
|
|
private readonly IConfigService _configService;
|
|
private readonly IJsonSerializer _jsonSerializer;
|
|
private readonly Logger _logger;
|
|
|
|
public DailySeriesDataProxy(IHttpProvider httpProvider, IConfigService configService, IJsonSerializer jsonSerializer, Logger logger)
|
|
{
|
|
_httpProvider = httpProvider;
|
|
_configService = configService;
|
|
_jsonSerializer = jsonSerializer;
|
|
_logger = logger;
|
|
}
|
|
|
|
public IEnumerable<int> GetDailySeriesIds()
|
|
{
|
|
try
|
|
{
|
|
var dailySeriesIds = _httpProvider.DownloadString(_configService.ServiceRootUrl + "/DailySeries/AllIds");
|
|
|
|
var seriesIds = _jsonSerializer.Deserialize<List<int>>(dailySeriesIds);
|
|
|
|
return seriesIds;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.WarnException("Failed to get Daily Series", ex);
|
|
return new List<int>();
|
|
}
|
|
|
|
}
|
|
}
|
|
} |