1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-01-17 10:45:49 +02:00
Sonarr/NzbDrone.Api/Episodes/EpisodeModule.cs

30 lines
881 B
C#
Raw Normal View History

using System.Collections.Generic;
2013-03-02 22:13:23 +03:00
using System.Linq;
using AutoMapper;
using Nancy;
using NzbDrone.Api.Extensions;
using NzbDrone.Core.Tv;
namespace NzbDrone.Api.Episodes
{
public class EpisodeModule : NzbDroneApiModule
{
2013-04-01 09:22:16 +03:00
private readonly IEpisodeService _episodeService;
2013-03-02 22:13:23 +03:00
2013-04-01 09:22:16 +03:00
public EpisodeModule(IEpisodeService episodeService)
2013-03-02 22:13:23 +03:00
: base("/episodes")
{
_episodeService = episodeService;
Get["/"] = x => GetEpisodesForSeries();
2013-03-02 22:13:23 +03:00
}
private Response GetEpisodesForSeries()
2013-03-02 22:13:23 +03:00
{
var seriesId = (int)Request.Query.SeriesId;
var seasonNumber = (int)Request.Query.SeasonNumber;
var episodes = _episodeService.GetEpisodesBySeason(seriesId, seasonNumber);
2013-03-02 22:13:23 +03:00
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
}
}
}