mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
60 lines
1.6 KiB
C#
60 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using NLog;
|
|
using NzbDrone.Common;
|
|
using NzbDrone.Common.Serializer;
|
|
using NzbDrone.Core.Configuration;
|
|
|
|
namespace NzbDrone.Core.DataAugmentation.DailySeries
|
|
{
|
|
|
|
public interface IDailySeriesDataProxy
|
|
{
|
|
IEnumerable<int> GetDailySeriesIds();
|
|
bool IsDailySeries(int tvdbid);
|
|
}
|
|
|
|
public class DailySeriesDataProxy : IDailySeriesDataProxy
|
|
{
|
|
private readonly IHttpProvider _httpProvider;
|
|
private readonly Logger _logger;
|
|
|
|
public DailySeriesDataProxy(IHttpProvider httpProvider, Logger logger)
|
|
{
|
|
_httpProvider = httpProvider;
|
|
_logger = logger;
|
|
}
|
|
|
|
public IEnumerable<int> GetDailySeriesIds()
|
|
{
|
|
try
|
|
{
|
|
var dailySeriesIds = _httpProvider.DownloadString(Services.RootUrl + "/DailySeries/AllIds");
|
|
|
|
var seriesIds = Json.Deserialize<List<int>>(dailySeriesIds);
|
|
|
|
return seriesIds;
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.WarnException("Failed to get Daily Series", ex);
|
|
return new List<int>();
|
|
}
|
|
|
|
}
|
|
|
|
public bool IsDailySeries(int tvdbid)
|
|
{
|
|
try
|
|
{
|
|
var result = _httpProvider.DownloadString(Services.RootUrl + "/DailySeries/Check?seriesId=" + tvdbid);
|
|
return Convert.ToBoolean(result);
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
_logger.WarnException("Failed to check Daily Series status for: " + tvdbid, ex);
|
|
return false;
|
|
}
|
|
}
|
|
}
|
|
} |