2013-02-23 17:42:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using AutoMapper;
|
|
|
|
|
using Nancy;
|
2013-05-01 01:54:15 +00:00
|
|
|
|
using NzbDrone.Api.Episodes;
|
2013-02-23 23:21:02 +00:00
|
|
|
|
using NzbDrone.Api.Extensions;
|
2013-02-23 17:42:15 +00:00
|
|
|
|
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-02-23 17:42:15 +00:00
|
|
|
|
|
2013-04-01 06:22:16 +00:00
|
|
|
|
public CalendarModule(IEpisodeService episodeService)
|
2013-02-23 23:08:22 +00:00
|
|
|
|
: base("/calendar")
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2013-02-23 23:08:22 +00:00
|
|
|
|
_episodeService = episodeService;
|
2013-02-27 03:55:52 +00:00
|
|
|
|
Get["/"] = x => GetEpisodesBetweenStartAndEndDate();
|
2013-02-23 17:42:15 +00:00
|
|
|
|
}
|
|
|
|
|
|
2013-02-27 03:55:52 +00:00
|
|
|
|
private Response GetEpisodesBetweenStartAndEndDate()
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2013-03-01 04:59:06 +00:00
|
|
|
|
var start = DateTime.Today.AddDays(-1);
|
2013-02-26 03:30:24 +00:00
|
|
|
|
var end = DateTime.Today.AddDays(7);
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
var queryStart = Request.Query.Start;
|
|
|
|
|
var queryEnd = Request.Query.End;
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
if (queryStart.HasValue) start = DateTime.Parse(queryStart.Value);
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
if(queryEnd.HasValue) end = DateTime.Parse(queryEnd.Value);
|
2013-02-23 23:08:22 +00:00
|
|
|
|
|
2013-02-26 03:30:24 +00:00
|
|
|
|
var episodes = _episodeService.EpisodesBetweenDates(start, end);
|
2013-05-01 01:54:15 +00:00
|
|
|
|
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
|
2013-02-23 17:42:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|