Radarr/NzbDrone.Api/Calendar/CalendarModule.cs

39 lines
1.1 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using AutoMapper;
using Nancy;
2013-05-01 01:54:15 +00:00
using NzbDrone.Api.Episodes;
using NzbDrone.Api.Extensions;
using NzbDrone.Api.Mapping;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Calendar
{
public class CalendarModule : NzbDroneApiModule
{
2013-04-01 06:22:16 +00:00
private readonly IEpisodeService _episodeService;
2013-04-01 06:22:16 +00:00
public CalendarModule(IEpisodeService episodeService)
: base("/calendar")
{
_episodeService = episodeService;
2013-02-27 03:55:52 +00:00
Get["/"] = x => GetEpisodesBetweenStartAndEndDate();
}
2013-02-27 03:55:52 +00:00
private Response GetEpisodesBetweenStartAndEndDate()
{
var start = DateTime.Today.AddDays(-1);
2013-02-26 03:30:24 +00:00
var end = DateTime.Today.AddDays(7);
2013-02-26 03:30:24 +00:00
var queryStart = Request.Query.Start;
var queryEnd = Request.Query.End;
2013-02-26 03:30:24 +00:00
if (queryStart.HasValue) start = DateTime.Parse(queryStart.Value);
2013-02-26 03:30:24 +00:00
if(queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
2013-02-26 03:30:24 +00:00
var episodes = _episodeService.EpisodesBetweenDates(start, end);
return episodes.InjectTo<List<EpisodeResource>>().AsResponse();
}
}
}