2019-01-13 20:03:10 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:26:31 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Common.Net;
|
2014-02-20 04:53:15 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
2014-02-07 03:10:13 +00:00
|
|
|
using MediaBrowser.Controller.Providers;
|
2014-02-20 04:53:15 +00:00
|
|
|
using MediaBrowser.Model.Providers;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Movies
|
|
|
|
{
|
2016-03-19 15:38:05 +00:00
|
|
|
public class MovieDbTrailerProvider : IHasOrder, IRemoteMetadataProvider<Trailer, TrailerInfo>
|
2014-02-07 03:10:13 +00:00
|
|
|
{
|
2014-03-01 22:34:27 +00:00
|
|
|
private readonly IHttpClient _httpClient;
|
|
|
|
|
|
|
|
public MovieDbTrailerProvider(IHttpClient httpClient)
|
|
|
|
{
|
|
|
|
_httpClient = httpClient;
|
|
|
|
}
|
|
|
|
|
2014-03-02 17:09:35 +00:00
|
|
|
public Task<IEnumerable<RemoteSearchResult>> GetSearchResults(TrailerInfo searchInfo, CancellationToken cancellationToken)
|
2014-02-20 04:53:15 +00:00
|
|
|
{
|
2014-03-02 17:09:35 +00:00
|
|
|
return MovieDbProvider.Current.GetMovieSearchResults(searchInfo, cancellationToken);
|
2014-02-20 04:53:15 +00:00
|
|
|
}
|
|
|
|
|
2016-03-19 15:38:05 +00:00
|
|
|
public Task<MetadataResult<Trailer>> GetMetadata(TrailerInfo info, CancellationToken cancellationToken)
|
2014-09-22 21:56:54 +00:00
|
|
|
{
|
2016-03-19 15:38:05 +00:00
|
|
|
return MovieDbProvider.Current.GetItemMetadata<Trailer>(info, cancellationToken);
|
2014-09-22 21:56:54 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public string Name => MovieDbProvider.Current.Name;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public int Order => 0;
|
2014-02-20 04:53:15 +00:00
|
|
|
|
|
|
|
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
|
|
|
|
{
|
2014-03-01 22:34:27 +00:00
|
|
|
return _httpClient.GetResponse(new HttpRequestOptions
|
|
|
|
{
|
|
|
|
CancellationToken = cancellationToken,
|
2016-10-31 18:39:41 +00:00
|
|
|
Url = url
|
2014-03-01 22:34:27 +00:00
|
|
|
});
|
2014-02-20 04:53:15 +00:00
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
}
|
|
|
|
}
|