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