2011-03-23 07:06:22 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using NzbDrone.Core.Model;
|
|
|
|
|
using NzbDrone.Core.Repository;
|
|
|
|
|
using SubSonic.Repository;
|
|
|
|
|
|
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
|
|
|
{
|
2011-04-08 15:18:01 +00:00
|
|
|
|
public class UpcomingEpisodesProvider
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
private readonly IRepository _repository;
|
2011-03-23 07:06:22 +00:00
|
|
|
|
|
2011-04-26 00:28:33 +00:00
|
|
|
|
public UpcomingEpisodesProvider(IRepository repository)
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_repository = repository;
|
2011-03-23 07:06:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:18:01 +00:00
|
|
|
|
public virtual UpcomingEpisodesModel Upcoming()
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-10 02:44:01 +00:00
|
|
|
|
var allEps =
|
2011-04-26 00:28:33 +00:00
|
|
|
|
_repository.All<Episode>().Where(
|
2011-04-10 02:44:01 +00:00
|
|
|
|
e => e.AirDate >= DateTime.Today.AddDays(-1) && e.AirDate < DateTime.Today.AddDays(8));
|
2011-03-23 07:06:22 +00:00
|
|
|
|
|
|
|
|
|
var yesterday = allEps.Where(e => e.AirDate == DateTime.Today.AddDays(-1)).ToList();
|
|
|
|
|
var today = allEps.Where(e => e.AirDate == DateTime.Today).ToList();
|
|
|
|
|
var week = allEps.Where(e => e.AirDate > DateTime.Today).ToList();
|
|
|
|
|
|
|
|
|
|
return new UpcomingEpisodesModel {Yesterday = yesterday, Today = today, Week = week};
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:18:01 +00:00
|
|
|
|
public virtual List<Episode> Yesterday()
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
return _repository.All<Episode>().Where(e => e.AirDate == DateTime.Today.AddDays(-1)).ToList();
|
2011-03-23 07:06:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:18:01 +00:00
|
|
|
|
public virtual List<Episode> Today()
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-26 00:28:33 +00:00
|
|
|
|
return _repository.All<Episode>().Where(e => e.AirDate == DateTime.Today).ToList();
|
2011-03-23 07:06:22 +00:00
|
|
|
|
}
|
|
|
|
|
|
2011-04-27 23:51:38 +00:00
|
|
|
|
public virtual List<Episode> Tomorrow()
|
|
|
|
|
{
|
|
|
|
|
return _repository.All<Episode>().Where(e => e.AirDate == DateTime.Today.AddDays(1)).ToList();
|
|
|
|
|
}
|
|
|
|
|
|
2011-04-08 15:18:01 +00:00
|
|
|
|
public virtual List<Episode> Week()
|
2011-03-23 07:06:22 +00:00
|
|
|
|
{
|
2011-04-10 02:44:01 +00:00
|
|
|
|
return
|
2011-04-27 23:51:38 +00:00
|
|
|
|
_repository.All<Episode>().Where(e => e.AirDate > DateTime.Today.AddDays(1) && e.AirDate < DateTime.Today.AddDays(8))
|
2011-04-10 02:44:01 +00:00
|
|
|
|
.ToList();
|
2011-03-23 07:06:22 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2011-04-10 02:44:01 +00:00
|
|
|
|
}
|