Radarr/NzbDrone.Api/Series/SeriesLookupModule.cs

28 lines
701 B
C#
Raw Normal View History

2013-01-28 18:06:54 +00:00
using System.Linq;
using Nancy;
2013-02-23 20:35:26 +00:00
using NzbDrone.Api.Extensions;
2013-01-28 18:06:54 +00:00
using NzbDrone.Api.QualityType;
using NzbDrone.Core.MetadataSource;
2013-01-28 18:06:54 +00:00
using NzbDrone.Core.Providers;
namespace NzbDrone.Api.Series
{
public class SeriesLookupModule : NzbDroneApiModule
{
private readonly TvDbProxy _tvDbProxy;
2013-01-28 18:06:54 +00:00
public SeriesLookupModule(TvDbProxy tvDbProxy)
2013-01-28 18:06:54 +00:00
: base("/Series/lookup")
{
_tvDbProxy = tvDbProxy;
2013-01-28 18:06:54 +00:00
Get["/"] = x => GetQualityType();
}
private Response GetQualityType()
{
var tvDbResults = _tvDbProxy.SearchSeries((string)Request.Query.term);
2013-01-28 18:06:54 +00:00
return tvDbResults.AsResponse();
}
}
}