1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-14 11:23:42 +02:00
Sonarr/NzbDrone.Api/Series/SeriesLookupModule.cs

28 lines
701 B
C#
Raw Normal View History

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