2014-02-20 04:53:15 +00:00
|
|
|
|
using MediaBrowser.Common.Net;
|
2014-09-22 21:56:54 +00:00
|
|
|
|
using MediaBrowser.Controller.Channels;
|
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-09-22 21:56:54 +00:00
|
|
|
|
using MediaBrowser.Model.Channels;
|
2014-09-28 15:27:26 +00:00
|
|
|
|
using MediaBrowser.Model.Entities;
|
2014-02-20 04:53:15 +00:00
|
|
|
|
using MediaBrowser.Model.Providers;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
using System;
|
2014-02-20 04:53:15 +00:00
|
|
|
|
using System.Collections.Generic;
|
2014-02-07 03:10:13 +00:00
|
|
|
|
using System.Threading;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Movies
|
|
|
|
|
{
|
2014-12-03 03:13:03 +00:00
|
|
|
|
public class MovieDbTrailerProvider : IHasOrder, IRemoteMetadataProvider<ChannelVideoItem, ChannelItemLookupInfo>
|
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
|
|
|
|
}
|
|
|
|
|
|
2014-09-22 21:56:54 +00:00
|
|
|
|
public Task<MetadataResult<ChannelVideoItem>> GetMetadata(ChannelItemLookupInfo info, CancellationToken cancellationToken)
|
|
|
|
|
{
|
2014-09-28 15:27:26 +00:00
|
|
|
|
if (info.ContentType != ChannelMediaContentType.MovieExtra || info.ExtraType != ExtraType.Trailer)
|
2014-09-22 21:56:54 +00:00
|
|
|
|
{
|
|
|
|
|
return Task.FromResult(new MetadataResult<ChannelVideoItem>());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return MovieDbProvider.Current.GetItemMetadata<ChannelVideoItem>(info, cancellationToken);
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-28 15:27:26 +00:00
|
|
|
|
public Task<IEnumerable<RemoteSearchResult>> GetSearchResults(ChannelItemLookupInfo info, CancellationToken cancellationToken)
|
2014-09-22 21:56:54 +00:00
|
|
|
|
{
|
2014-09-28 15:27:26 +00:00
|
|
|
|
if (info.ContentType != ChannelMediaContentType.MovieExtra || info.ExtraType != ExtraType.Trailer)
|
2014-09-22 21:56:54 +00:00
|
|
|
|
{
|
|
|
|
|
return Task.FromResult<IEnumerable<RemoteSearchResult>>(new List<RemoteSearchResult>());
|
|
|
|
|
}
|
2014-09-28 15:27:26 +00:00
|
|
|
|
|
|
|
|
|
return MovieDbProvider.Current.GetMovieSearchResults(info, cancellationToken);
|
2014-09-22 21:56:54 +00:00
|
|
|
|
}
|
|
|
|
|
|
2014-02-07 03:10:13 +00:00
|
|
|
|
public string Name
|
|
|
|
|
{
|
|
|
|
|
get { return MovieDbProvider.Current.Name; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public bool HasChanged(IHasMetadata item, DateTime date)
|
|
|
|
|
{
|
|
|
|
|
return MovieDbProvider.Current.HasChanged(item, date);
|
|
|
|
|
}
|
2014-02-15 16:36:09 +00:00
|
|
|
|
|
|
|
|
|
public int Order
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
// After Omdb
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
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,
|
|
|
|
|
Url = url,
|
|
|
|
|
ResourcePool = MovieDbProvider.Current.MovieDbResourcePool
|
|
|
|
|
});
|
2014-02-20 04:53:15 +00:00
|
|
|
|
}
|
2014-02-07 03:10:13 +00:00
|
|
|
|
}
|
|
|
|
|
}
|