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