mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 04:22:30 +01:00
343a794c2a
requests are sent to server sequentially not to kill the client.
27 lines
715 B
C#
27 lines
715 B
C#
using System.Threading;
|
|
using Nancy;
|
|
using NzbDrone.Api.Extensions;
|
|
using NzbDrone.Core.MetadataSource;
|
|
using System.Linq;
|
|
|
|
namespace NzbDrone.Api.Series
|
|
{
|
|
public class SeriesLookupModule : NzbDroneApiModule
|
|
{
|
|
private readonly ISearchForNewSeries _searchProxy;
|
|
|
|
public SeriesLookupModule(ISearchForNewSeries searchProxy)
|
|
: base("/Series/lookup")
|
|
{
|
|
_searchProxy = searchProxy;
|
|
Get["/"] = x => GetQualityType();
|
|
}
|
|
|
|
|
|
private Response GetQualityType()
|
|
{
|
|
var tvDbResults = _searchProxy.SearchForNewSeries((string)Request.Query.term);
|
|
return tvDbResults.FirstOrDefault().AsResponse();
|
|
}
|
|
}
|
|
} |