You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.7 KiB
52 lines
1.7 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using NzbDrone.Api.Episodes;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Api.Mapping;
|
|
using NzbDrone.Core.Messaging.Commands;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.Calendar
|
|
{
|
|
public class CalendarModule : EpisodeModuleWithSignalR<EpisodeResource, Episode>
|
|
{
|
|
private readonly IEpisodeService _episodeService;
|
|
private readonly SeriesRepository _seriesRepository;
|
|
|
|
public CalendarModule(ICommandExecutor commandExecutor,
|
|
IEpisodeService episodeService,
|
|
SeriesRepository seriesRepository)
|
|
: base(commandExecutor, "calendar")
|
|
{
|
|
_episodeService = episodeService;
|
|
_seriesRepository = seriesRepository;
|
|
|
|
GetResourceAll = GetCalendar;
|
|
GetResourceById = GetEpisode;
|
|
}
|
|
|
|
private EpisodeResource GetEpisode(int id)
|
|
{
|
|
return _episodeService.GetEpisode(id).InjectTo<EpisodeResource>();
|
|
}
|
|
|
|
private List<EpisodeResource> GetCalendar()
|
|
{
|
|
var start = DateTime.Today;
|
|
var end = DateTime.Today.AddDays(2);
|
|
|
|
var queryStart = Request.Query.Start;
|
|
var queryEnd = Request.Query.End;
|
|
|
|
if (queryStart.HasValue) start = DateTime.Parse(queryStart.Value);
|
|
if (queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
|
|
|
|
var resources = ToListResource(() => _episodeService.EpisodesBetweenDates(start, end))
|
|
.LoadSubtype(e => e.SeriesId, _seriesRepository);
|
|
|
|
return resources.OrderBy(e => e.AirDateUtc).ToList();
|
|
}
|
|
}
|
|
}
|