mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-04 10:02:40 +01:00
51 lines
1.6 KiB
C#
51 lines
1.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using NzbDrone.Core.Model;
|
|
using NzbDrone.Core.Repository;
|
|
using SubSonic.Repository;
|
|
|
|
namespace NzbDrone.Core.Providers
|
|
{
|
|
public class UpcomingEpisodesProvider
|
|
{
|
|
private IRepository _sonicRepo;
|
|
|
|
public UpcomingEpisodesProvider(IRepository sonicRepo)
|
|
{
|
|
_sonicRepo = sonicRepo;
|
|
}
|
|
|
|
#region UpcomingEpisodesProvider Members
|
|
|
|
public virtual UpcomingEpisodesModel Upcoming()
|
|
{
|
|
var allEps = _sonicRepo.All<Episode>().Where(e => e.AirDate >= DateTime.Today.AddDays(-1) && e.AirDate < DateTime.Today.AddDays(8));
|
|
|
|
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};
|
|
}
|
|
|
|
public virtual List<Episode> Yesterday()
|
|
{
|
|
return _sonicRepo.All<Episode>().Where(e => e.AirDate == DateTime.Today.AddDays(-1)).ToList();
|
|
}
|
|
|
|
public virtual List<Episode> Today()
|
|
{
|
|
return _sonicRepo.All<Episode>().Where(e => e.AirDate == DateTime.Today).ToList();
|
|
}
|
|
|
|
public virtual List<Episode> Week()
|
|
{
|
|
return _sonicRepo.All<Episode>().Where(e => e.AirDate > DateTime.Today && e.AirDate < DateTime.Today.AddDays(8)).ToList();
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|