2013-02-23 17:42:15 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Globalization;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using AutoMapper;
|
|
|
|
|
using Nancy;
|
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-02-23 23:08:22 +00:00
|
|
|
|
private readonly EpisodeService _episodeService;
|
2013-02-23 17:42:15 +00:00
|
|
|
|
|
2013-02-23 23:08:22 +00:00
|
|
|
|
public CalendarModule(EpisodeService episodeService)
|
|
|
|
|
: base("/calendar")
|
2013-02-23 17:42:15 +00:00
|
|
|
|
{
|
2013-02-23 23:08:22 +00:00
|
|
|
|
_episodeService = episodeService;
|
2013-02-23 17:42:15 +00:00
|
|
|
|
Get["/"] = x => Calendar();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Response Calendar()
|
|
|
|
|
{
|
2013-02-26 03:30:24 +00:00
|
|
|
|
var start = DateTime.Today;
|
|
|
|
|
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-02-23 23:08:22 +00:00
|
|
|
|
return Mapper.Map<List<Episode>, List<CalendarResource>>(episodes).AsResponse();
|
2013-02-23 17:42:15 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|