using System; using System.Collections.Generic; using System.Linq; using NzbDrone.Core.Model; using NzbDrone.Core.Repository; using SubSonic.Repository; namespace NzbDrone.Core.Providers { public class UpcomingEpisodesProvider { private readonly IRepository _sonicRepo; public UpcomingEpisodesProvider(IRepository sonicRepo) { _sonicRepo = sonicRepo; } public virtual UpcomingEpisodesModel Upcoming() { var allEps = _sonicRepo.All().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 Yesterday() { return _sonicRepo.All().Where(e => e.AirDate == DateTime.Today.AddDays(-1)).ToList(); } public virtual List Today() { return _sonicRepo.All().Where(e => e.AirDate == DateTime.Today).ToList(); } public virtual List Week() { return _sonicRepo.All().Where(e => e.AirDate > DateTime.Today && e.AirDate < DateTime.Today.AddDays(8)) .ToList(); } } }