2019-01-30 20:23:23 +00:00
|
|
|
using System;
|
2019-01-13 20:03:10 +00:00
|
|
|
using System.Collections.Generic;
|
2019-01-13 19:26:31 +00:00
|
|
|
using System.Globalization;
|
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
using MediaBrowser.Common.Net;
|
2014-01-28 18:37:01 +00:00
|
|
|
using MediaBrowser.Controller.Configuration;
|
2013-11-01 15:55:25 +00:00
|
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
using MediaBrowser.Controller.Entities.TV;
|
|
|
|
using MediaBrowser.Controller.Library;
|
|
|
|
using MediaBrowser.Controller.Providers;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2019-01-13 19:26:31 +00:00
|
|
|
using MediaBrowser.Model.Providers;
|
2019-01-30 20:23:23 +00:00
|
|
|
using TvDbSharper;
|
|
|
|
using TvDbSharper.Dto;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
2019-02-09 09:10:33 +00:00
|
|
|
namespace MediaBrowser.Providers.TV.TheTVDB
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
2016-05-25 00:42:12 +00:00
|
|
|
public class TvdbEpisodeImageProvider : IRemoteImageProvider
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
|
|
|
private readonly CultureInfo _usCulture = new CultureInfo("en-US");
|
2014-01-28 18:37:01 +00:00
|
|
|
private readonly IHttpClient _httpClient;
|
2019-01-30 22:28:43 +00:00
|
|
|
private readonly TvDbClientManager _tvDbClientManager;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
public TvdbEpisodeImageProvider(IHttpClient httpClient)
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
2014-01-28 18:37:01 +00:00
|
|
|
_httpClient = httpClient;
|
2019-01-30 22:28:43 +00:00
|
|
|
_tvDbClientManager = TvDbClientManager.Instance;
|
2013-11-01 15:55:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public string Name => "TheTVDB";
|
2013-11-01 15:55:25 +00:00
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public bool Supports(BaseItem item)
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
|
|
|
return item is Episode;
|
|
|
|
}
|
|
|
|
|
2018-09-12 17:26:21 +00:00
|
|
|
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
|
2014-01-28 18:37:01 +00:00
|
|
|
{
|
|
|
|
return new List<ImageType>
|
|
|
|
{
|
|
|
|
ImageType.Primary
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
|
|
|
var episode = (Episode)item;
|
2014-02-06 15:58:49 +00:00
|
|
|
var series = episode.Series;
|
2013-11-01 15:55:25 +00:00
|
|
|
|
2015-11-24 18:45:52 +00:00
|
|
|
if (series != null && TvdbSeriesProvider.IsValidSeries(series.ProviderIds))
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
2019-01-30 20:23:23 +00:00
|
|
|
var tvdbId = episode.GetProviderId(MetadataProviders.Tvdb);
|
2013-11-01 15:55:25 +00:00
|
|
|
// Process images
|
2019-01-30 22:28:43 +00:00
|
|
|
var episodeResult = await _tvDbClientManager.TvDbClient.Episodes.GetAsync(Convert.ToInt32(tvdbId), cancellationToken);
|
2013-11-01 15:55:25 +00:00
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
var image = GetImageInfo(episodeResult.Data);
|
|
|
|
return new List<RemoteImageInfo>
|
|
|
|
{
|
|
|
|
image
|
|
|
|
};
|
2013-11-01 15:55:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
return new RemoteImageInfo[] { };
|
2013-11-01 15:55:25 +00:00
|
|
|
}
|
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
private RemoteImageInfo GetImageInfo(EpisodeRecord episode)
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
|
|
|
var height = 225;
|
|
|
|
var width = 400;
|
|
|
|
var url = string.Empty;
|
|
|
|
|
2019-01-30 20:23:23 +00:00
|
|
|
if (string.IsNullOrEmpty(episode.Filename))
|
2013-11-01 15:55:25 +00:00
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
return new RemoteImageInfo
|
|
|
|
{
|
2019-01-30 20:23:23 +00:00
|
|
|
Width = Convert.ToInt32(episode.ThumbWidth),
|
|
|
|
Height = Convert.ToInt32(episode.ThumbHeight),
|
2013-11-01 15:55:25 +00:00
|
|
|
ProviderName = Name,
|
2019-01-30 20:23:23 +00:00
|
|
|
Url = TVUtils.BannerUrl + episode.Filename,
|
2013-11-01 15:55:25 +00:00
|
|
|
Type = ImageType.Primary
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-01-13 20:31:14 +00:00
|
|
|
public int Order => 0;
|
2014-01-28 18:37:01 +00:00
|
|
|
|
|
|
|
public Task<HttpResponseInfo> GetImageResponse(string url, CancellationToken cancellationToken)
|
|
|
|
{
|
|
|
|
return _httpClient.GetResponse(new HttpRequestOptions
|
|
|
|
{
|
|
|
|
CancellationToken = cancellationToken,
|
2017-04-30 02:37:51 +00:00
|
|
|
Url = url
|
2014-01-28 18:37:01 +00:00
|
|
|
});
|
|
|
|
}
|
2013-11-01 15:55:25 +00:00
|
|
|
}
|
|
|
|
}
|