1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-11-01 00:12:30 +01:00
Sonarr/NzbDrone.Core/DataAugmentation/DailySeries/DailySeriesService.cs

45 lines
1.1 KiB
C#
Raw Normal View History

2013-03-02 19:25:39 +01:00
using NzbDrone.Core.Tv;
2013-02-24 07:48:52 +01:00
2013-04-01 04:43:58 +02:00
namespace NzbDrone.Core.DataAugmentation.DailySeries
2013-02-24 07:48:52 +01:00
{
public interface IDailySeriesService
{
void UpdateDailySeries();
bool IsDailySeries(int tvdbid);
}
public class DailySeriesService : IDailySeriesService
2013-02-24 07:48:52 +01:00
{
2013-05-07 02:39:33 +02:00
//TODO: add timer command
2013-03-02 19:25:39 +01:00
private readonly IDailySeriesDataProxy _proxy;
private readonly ISeriesService _seriesService;
2013-02-24 07:48:52 +01:00
2013-03-02 19:25:39 +01:00
public DailySeriesService(IDailySeriesDataProxy proxy, ISeriesService seriesService)
2013-02-24 07:48:52 +01:00
{
2013-03-02 19:25:39 +01:00
_proxy = proxy;
_seriesService = seriesService;
2013-02-24 07:48:52 +01:00
}
public void UpdateDailySeries()
2013-02-24 07:48:52 +01:00
{
2013-03-02 19:25:39 +01:00
var dailySeries = _proxy.GetDailySeriesIds();
2013-02-24 07:48:52 +01:00
2013-03-02 19:25:39 +01:00
foreach (var tvdbId in dailySeries)
2013-02-24 07:48:52 +01:00
{
2013-03-02 19:25:39 +01:00
var series = _seriesService.FindByTvdbId(tvdbId);
2013-02-24 07:48:52 +01:00
2013-03-02 19:25:39 +01:00
if (series != null)
{
_seriesService.SetSeriesType(series.Id, SeriesTypes.Daily);
2013-03-02 19:25:39 +01:00
}
2013-02-24 07:48:52 +01:00
}
}
public bool IsDailySeries(int tvdbid)
{
return _proxy.IsDailySeries(tvdbid);
}
2013-02-24 07:48:52 +01:00
}
}