2013-02-23 09:42:15 -08:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using AutoMapper;
|
|
|
|
using Nancy;
|
2013-04-30 18:54:15 -07:00
|
|
|
using NzbDrone.Api.Episodes;
|
2013-02-23 15:21:02 -08:00
|
|
|
using NzbDrone.Api.Extensions;
|
2013-02-23 09:42:15 -08:00
|
|
|
using NzbDrone.Core.Tv;
|
|
|
|
|
|
|
|
namespace NzbDrone.Api.Calendar
|
|
|
|
{
|
|
|
|
public class CalendarModule : NzbDroneApiModule
|
|
|
|
{
|
2013-03-31 23:22:16 -07:00
|
|
|
private readonly IEpisodeService _episodeService;
|
2013-02-23 09:42:15 -08:00
|
|
|
|
2013-03-31 23:22:16 -07:00
|
|
|
public CalendarModule(IEpisodeService episodeService)
|
2013-02-23 15:08:22 -08:00
|
|
|
: base("/calendar")
|
2013-02-23 09:42:15 -08:00
|
|
|
{
|
2013-02-23 15:08:22 -08:00
|
|
|
_episodeService = episodeService;
|
2013-02-26 19:55:52 -08:00
|
|
|
Get["/"] = x => GetEpisodesBetweenStartAndEndDate();
|
2013-02-23 09:42:15 -08:00
|
|
|
}
|
|
|
|
|
2013-02-26 19:55:52 -08:00
|
|
|
private Response GetEpisodesBetweenStartAndEndDate()
|
2013-02-23 09:42:15 -08:00
|
|
|
{
|
2013-02-28 20:59:06 -08:00
|
|
|
var start = DateTime.Today.AddDays(-1);
|
2013-02-25 19:30:24 -08:00
|
|
|
var end = DateTime.Today.AddDays(7);
|
2013-02-23 15:08:22 -08:00
|
|
|
|
2013-02-25 19:30:24 -08:00
|
|
|
var queryStart = Request.Query.Start;
|
|
|
|
var queryEnd = Request.Query.End;
|
2013-02-23 15:08:22 -08:00
|
|
|
|
2013-02-25 19:30:24 -08:00
|
|
|
if (queryStart.HasValue) start = DateTime.Parse(queryStart.Value);
|
2013-02-23 15:08:22 -08:00
|
|
|
|
2013-02-25 19:30:24 -08:00
|
|
|
if(queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
|
2013-02-23 15:08:22 -08:00
|
|
|
|
2013-02-25 19:30:24 -08:00
|
|
|
var episodes = _episodeService.EpisodesBetweenDates(start, end);
|
2013-04-30 18:54:15 -07:00
|
|
|
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
|
2013-02-23 09:42:15 -08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|