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.
Lidarr/NzbDrone.Api/Calendar/CalendarModule.cs

38 lines
1.1 KiB

using System;
using System.Collections.Generic;
using AutoMapper;
using Nancy;
using NzbDrone.Api.Episodes;
using NzbDrone.Api.Extensions;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Calendar
{
public class CalendarModule : NzbDroneApiModule
{
private readonly IEpisodeService _episodeService;
public CalendarModule(IEpisodeService episodeService)
: base("/calendar")
{
_episodeService = episodeService;
Get["/"] = x => GetEpisodesBetweenStartAndEndDate();
}
private Response GetEpisodesBetweenStartAndEndDate()
{
var start = DateTime.Today.AddDays(-1);
var end = DateTime.Today.AddDays(7);
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 episodes = _episodeService.EpisodesBetweenDates(start, end);
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
}
}
}