mirror of https://github.com/lidarr/Lidarr
31 lines
821 B
C#
31 lines
821 B
C#
using System.Collections.Generic;
|
|
using NzbDrone.Api.REST;
|
|
using NzbDrone.Core.Tv;
|
|
|
|
namespace NzbDrone.Api.Episodes
|
|
{
|
|
public class EpisodeModule : NzbDroneRestModule<EpisodeResource>
|
|
{
|
|
private readonly IEpisodeService _episodeService;
|
|
|
|
public EpisodeModule(IEpisodeService episodeService)
|
|
: base("/episodes")
|
|
{
|
|
_episodeService = episodeService;
|
|
|
|
GetResourceAll = GetEpisodes;
|
|
}
|
|
|
|
private List<EpisodeResource> GetEpisodes()
|
|
{
|
|
var seriesId = (int?)Request.Query.SeriesId;
|
|
|
|
if (seriesId == null)
|
|
{
|
|
throw new BadRequestException("seriesId is missing");
|
|
}
|
|
|
|
return ToListResource(() => _episodeService.GetEpisodeBySeries(seriesId.Value));
|
|
}
|
|
}
|
|
} |