1
0
Fork 0
mirror of https://github.com/Sonarr/Sonarr synced 2024-12-26 09:47:39 +00:00
Sonarr/NzbDrone.Api/Calendar/CalendarModule.cs
2013-03-31 23:22:16 -07:00

39 lines
No EOL
1.1 KiB
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using AutoMapper;
using Nancy;
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<CalendarResource>>(episodes).AsResponse();
}
}
}