jellyfin/MediaBrowser.Providers/Plugins/Omdb/OmdbImageProvider.cs

81 lines
2.6 KiB
C#
Raw Normal View History

#nullable disable
#pragma warning disable CS1591
using System.Collections.Generic;
2021-11-19 15:32:07 +01:00
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
2020-08-31 19:05:21 +02:00
using MediaBrowser.Common.Net;
2016-06-04 04:56:04 +02:00
using MediaBrowser.Controller.Configuration;
2014-10-07 01:58:46 +02:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Controller.Entities.Movies;
using MediaBrowser.Controller.Entities.TV;
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
using MediaBrowser.Model.IO;
2014-10-07 01:58:46 +02:00
using MediaBrowser.Model.Providers;
2020-03-09 15:36:02 +01:00
namespace MediaBrowser.Providers.Plugins.Omdb
2014-10-07 01:58:46 +02:00
{
public class OmdbImageProvider : IRemoteImageProvider, IHasOrder
{
2020-08-17 21:10:02 +02:00
private readonly IHttpClientFactory _httpClientFactory;
2021-11-19 15:32:07 +01:00
private readonly OmdbProvider _omdbProvider;
2014-10-07 01:58:46 +02:00
2021-11-16 12:24:17 +01:00
public OmdbImageProvider(IHttpClientFactory httpClientFactory, IFileSystem fileSystem, IServerConfigurationManager configurationManager)
2014-10-07 01:58:46 +02:00
{
2020-08-17 21:10:02 +02:00
_httpClientFactory = httpClientFactory;
2021-11-19 15:32:07 +01:00
_omdbProvider = new OmdbProvider(_httpClientFactory, fileSystem, configurationManager);
2014-10-07 01:58:46 +02:00
}
2020-09-07 13:20:39 +02:00
public string Name => "The Open Movie Database";
// After other internet providers, because they're better
// But before fallback providers like screengrab
public int Order => 90;
2018-09-12 19:26:21 +02:00
public IEnumerable<ImageType> GetSupportedImages(BaseItem item)
2014-10-07 01:58:46 +02:00
{
2023-03-01 00:44:57 +01:00
yield return ImageType.Primary;
2014-10-07 01:58:46 +02:00
}
2018-09-12 19:26:21 +02:00
public async Task<IEnumerable<RemoteImageInfo>> GetImages(BaseItem item, CancellationToken cancellationToken)
2014-10-07 01:58:46 +02:00
{
2020-06-06 21:17:49 +02:00
var imdbId = item.GetProviderId(MetadataProvider.Imdb);
2021-11-19 15:32:07 +01:00
if (string.IsNullOrWhiteSpace(imdbId))
{
return Enumerable.Empty<RemoteImageInfo>();
}
2014-10-07 01:58:46 +02:00
2021-11-19 15:32:07 +01:00
var rootObject = await _omdbProvider.GetRootObject(imdbId, cancellationToken).ConfigureAwait(false);
2016-06-04 04:56:04 +02:00
if (string.IsNullOrEmpty(rootObject.Poster))
2014-10-07 01:58:46 +02:00
{
2021-11-19 15:32:07 +01:00
return Enumerable.Empty<RemoteImageInfo>();
}
2021-11-19 15:32:07 +01:00
// the poster url is sometimes higher quality than the poster api
return new[]
{
new RemoteImageInfo
2014-10-07 01:58:46 +02:00
{
2021-11-19 15:32:07 +01:00
ProviderName = Name,
Url = rootObject.Poster
}
2021-11-19 15:32:07 +01:00
};
2014-10-07 01:58:46 +02:00
}
2020-08-17 21:10:02 +02:00
public Task<HttpResponseMessage> GetImageResponse(string url, CancellationToken cancellationToken)
2014-10-07 01:58:46 +02:00
{
2020-08-31 19:05:21 +02:00
return _httpClientFactory.CreateClient(NamedClient.Default).GetAsync(url, cancellationToken);
2014-10-07 01:58:46 +02:00
}
2018-09-12 19:26:21 +02:00
public bool Supports(BaseItem item)
2014-10-07 01:58:46 +02:00
{
return item is Movie || item is Trailer || item is Episode;
2014-10-07 01:58:46 +02:00
}
}
}