Radarr/NzbDrone.Core/Providers/UpcomingEpisodesProvider.cs

29 lines
1022 B
C#
Raw Normal View History

2011-03-23 07:06:22 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using NzbDrone.Core.Tv;
2011-03-23 07:06:22 +00:00
using NzbDrone.Core.Model;
using NzbDrone.Core.Repository;
using PetaPoco;
2011-03-23 07:06:22 +00:00
namespace NzbDrone.Core.Providers
{
2011-04-08 15:18:01 +00:00
public class UpcomingEpisodesProvider
2011-03-23 07:06:22 +00:00
{
private readonly IDatabase _database;
2011-03-23 07:06:22 +00:00
public UpcomingEpisodesProvider(IDatabase database)
2011-03-23 07:06:22 +00:00
{
_database = database;
2011-03-23 07:06:22 +00:00
}
2013-02-20 07:45:52 +00:00
//Todo: Might be best if this is part of episode repo (when its there)
public virtual List<Episode> UpcomingEpisodes()
2011-03-23 07:06:22 +00:00
{
return _database.Fetch<Episode, Series>(@"SELECT * FROM Episodes
INNER JOIN Series ON Episodes.SeriesId = Series.SeriesId
WHERE Series.Monitored = 1 AND Ignored = 0 AND AirDate BETWEEN @0 AND @1"
,DateTime.Today.AddDays(-1).Date, DateTime.Today.AddDays(8).Date);
2011-03-23 07:06:22 +00:00
}
}
2011-04-10 02:44:01 +00:00
}