You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.3 KiB
48 lines
1.3 KiB
12 years ago
|
using System;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Linq;
|
||
|
using NLog;
|
||
|
using Newtonsoft.Json;
|
||
|
using NzbDrone.Common;
|
||
|
using NzbDrone.Core.Configuration;
|
||
|
|
||
|
namespace NzbDrone.Core.ReferenceData
|
||
|
{
|
||
|
|
||
|
public interface IDailySeriesDataProxy
|
||
|
{
|
||
|
IEnumerable<int> GetDailySeriesIds();
|
||
|
}
|
||
|
|
||
|
public class DailySeriesDataProxy : IDailySeriesDataProxy
|
||
|
{
|
||
|
private readonly HttpProvider _httpProvider;
|
||
|
private readonly IConfigService _configService;
|
||
|
private readonly Logger _logger;
|
||
|
|
||
|
public DailySeriesDataProxy(HttpProvider httpProvider, IConfigService configService, Logger logger)
|
||
|
{
|
||
|
_httpProvider = httpProvider;
|
||
|
_configService = configService;
|
||
|
_logger = logger;
|
||
|
}
|
||
|
|
||
|
public IEnumerable<int> GetDailySeriesIds()
|
||
|
{
|
||
|
try
|
||
|
{
|
||
|
var dailySeriesIds = _httpProvider.DownloadString(_configService.ServiceRootUrl + "/DailySeries/AllIds");
|
||
|
|
||
|
var seriesIds = JsonConvert.DeserializeObject<List<int>>(dailySeriesIds);
|
||
|
|
||
|
return seriesIds;
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
_logger.WarnException("Failed to get Daily Series", ex);
|
||
|
return new List<int>();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
}
|
||
|
}
|