2011-03-23 08:06:22 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
2013-02-19 07:01:03 +01:00
|
|
|
|
using NzbDrone.Core.Tv;
|
2011-03-23 08:06:22 +01:00
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
2011-06-18 01:01:09 +02:00
|
|
|
|
using PetaPoco;
|
2011-03-23 08:06:22 +01:00
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 17:18:01 +02:00
|
|
|
|
public class UpcomingEpisodesProvider
|
2011-03-23 08:06:22 +01:00
|
|
|
|
{
|
2011-06-18 01:01:09 +02:00
|
|
|
|
private readonly IDatabase _database;
|
2011-03-23 08:06:22 +01:00
|
|
|
|
|
2011-06-18 01:01:09 +02:00
|
|
|
|
public UpcomingEpisodesProvider(IDatabase database)
|
2011-03-23 08:06:22 +01:00
|
|
|
|
{
|
2011-06-18 01:01:09 +02:00
|
|
|
|
_database = database;
|
2011-03-23 08:06:22 +01:00
|
|
|
|
}
|
|
|
|
|
|
2012-05-18 03:23:32 +02:00
|
|
|
|
public virtual List<Episode> UpcomingEpisodes()
|
2011-03-23 08:06:22 +01:00
|
|
|
|
{
|
2011-06-20 05:08:09 +02:00
|
|
|
|
return _database.Fetch<Episode, Series>(@"SELECT * FROM Episodes
|
|
|
|
|
INNER JOIN Series ON Episodes.SeriesId = Series.SeriesId
|
2012-02-12 01:02:36 +01:00
|
|
|
|
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 08:06:22 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 04:44:01 +02:00
|
|
|
|
}
|