mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 08:22:35 +01:00
30 lines
881 B
C#
30 lines
881 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using AutoMapper;
|
|
using Nancy;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.Episodes
|
|
{
|
|
public class EpisodeModule : NzbDroneApiModule
|
|
{
|
|
private readonly IEpisodeService _episodeService;
|
|
|
|
public EpisodeModule(IEpisodeService episodeService)
|
|
: base("/episodes")
|
|
{
|
|
_episodeService = episodeService;
|
|
Get["/"] = x => GetEpisodesForSeries();
|
|
}
|
|
|
|
private Response GetEpisodesForSeries()
|
|
{
|
|
var seriesId = (int)Request.Query.SeriesId;
|
|
var seasonNumber = (int)Request.Query.SeasonNumber;
|
|
|
|
var episodes = _episodeService.GetEpisodesBySeason(seriesId, seasonNumber);
|
|
return Mapper.Map<List<Episode>, List<EpisodeResource>>(episodes).AsResponse();
|
|
}
|
|
}
|
|
} |