1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/NzbDrone.Api/Series/SeriesLookupModule.cs

25 lines
655 B
C#
Raw Normal View History

2013-03-31 22:25:39 +02:00
using Nancy;
2013-02-23 21:35:26 +01:00
using NzbDrone.Api.Extensions;
using NzbDrone.Core.MetadataSource;
2013-01-28 19:06:54 +01:00
namespace NzbDrone.Api.Series
{
public class SeriesLookupModule : NzbDroneApiModule
{
2013-03-31 22:25:39 +02:00
private readonly ISearchForNewSeries _searchProxy;
2013-01-28 19:06:54 +01:00
2013-03-31 22:25:39 +02:00
public SeriesLookupModule(ISearchForNewSeries searchProxy)
2013-01-28 19:06:54 +01:00
: base("/Series/lookup")
{
2013-03-31 22:25:39 +02:00
_searchProxy = searchProxy;
2013-01-28 19:06:54 +01:00
Get["/"] = x => GetQualityType();
}
private Response GetQualityType()
{
2013-03-31 22:25:39 +02:00
var tvDbResults = _searchProxy.SearchForNewSeries((string)Request.Query.term);
2013-01-28 19:06:54 +01:00
return tvDbResults.AsResponse();
}
}
}