mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-05 10:32:35 +01:00
39 lines
1.1 KiB
C#
39 lines
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 EpisodeService _episodeService;
|
|
|
|
public CalendarModule(EpisodeService episodeService)
|
|
: base("/calendar")
|
|
{
|
|
_episodeService = episodeService;
|
|
Get["/"] = x => Calendar();
|
|
}
|
|
|
|
private Response Calendar()
|
|
{
|
|
var year = DateTime.Now.Year;
|
|
var month = DateTime.Now.Month;
|
|
|
|
var yearQuery = Request.Query.Year;
|
|
var monthQuery = Request.Query.Month;
|
|
|
|
if (yearQuery.HasValue) year = Convert.ToInt32(yearQuery.Value);
|
|
|
|
if(monthQuery.HasValue) month = Convert.ToInt32(monthQuery.Value);
|
|
|
|
var episodes = _episodeService.GetEpisodesAiredInMonth(year, month);
|
|
return Mapper.Map<List<Episode>, List<CalendarResource>>(episodes).AsResponse();
|
|
}
|
|
}
|
|
} |