jellyfin/MediaBrowser.Providers/Plugins/TheTvdb/TvdbClientManager.cs

290 lines
11 KiB
C#
Raw Normal View History

#pragma warning disable CS1591
2019-01-30 23:28:43 +01:00
using System;
2019-02-07 23:56:57 +01:00
using System.Collections.Generic;
2020-08-07 19:26:28 +02:00
using System.Globalization;
2019-02-08 19:48:18 +01:00
using System.Linq;
2019-02-12 19:50:19 +01:00
using System.Reflection;
2020-07-16 15:32:58 +02:00
using System.Runtime.CompilerServices;
2019-02-07 20:28:19 +01:00
using System.Threading;
using System.Threading.Tasks;
2019-02-08 19:48:18 +01:00
using MediaBrowser.Controller.Providers;
using MediaBrowser.Model.Entities;
2019-02-07 20:28:19 +01:00
using Microsoft.Extensions.Caching.Memory;
2019-01-30 23:28:43 +01:00
using TvDbSharper;
2019-02-07 20:28:19 +01:00
using TvDbSharper.Dto;
2019-01-30 23:28:43 +01:00
namespace MediaBrowser.Providers.Plugins.TheTvdb
2019-01-30 23:28:43 +01:00
{
public class TvdbClientManager
2019-01-30 23:28:43 +01:00
{
2019-09-25 17:19:48 +02:00
private const string DefaultLanguage = "en";
2019-02-15 20:11:27 +01:00
private readonly IMemoryCache _cache;
2019-02-20 11:03:04 +01:00
private readonly TvDbClient _tvDbClient;
private DateTime _tokenCreatedAt;
2019-01-30 23:28:43 +01:00
public TvdbClientManager(IMemoryCache memoryCache)
2019-01-30 23:28:43 +01:00
{
2019-02-15 20:11:27 +01:00
_cache = memoryCache;
2019-02-20 11:03:04 +01:00
_tvDbClient = new TvDbClient();
2019-01-30 23:28:43 +01:00
}
private TvDbClient TvDbClient
2019-01-30 23:28:43 +01:00
{
get
{
if (string.IsNullOrEmpty(_tvDbClient.Authentication.Token))
{
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey).GetAwaiter().GetResult();
_tokenCreatedAt = DateTime.Now;
}
2019-01-30 23:28:43 +01:00
// Refresh if necessary
if (_tokenCreatedAt < DateTime.Now.Subtract(TimeSpan.FromHours(20)))
2019-01-30 23:28:43 +01:00
{
try
{
_tvDbClient.Authentication.RefreshTokenAsync().GetAwaiter().GetResult();
2019-01-30 23:28:43 +01:00
}
catch
{
_tvDbClient.Authentication.AuthenticateAsync(TvdbUtils.TvdbApiKey).GetAwaiter().GetResult();
2019-01-30 23:28:43 +01:00
}
2019-02-20 11:03:04 +01:00
_tokenCreatedAt = DateTime.Now;
2019-01-30 23:28:43 +01:00
}
2019-02-12 19:50:19 +01:00
2019-02-20 11:03:04 +01:00
return _tvDbClient;
2019-01-30 23:28:43 +01:00
}
}
2019-02-07 20:28:19 +01:00
2019-02-12 19:50:19 +01:00
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByNameAsync(string name, string language,
CancellationToken cancellationToken)
2019-02-07 20:28:19 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("series", name, language);
2020-03-24 16:12:06 +01:00
return TryGetValue(cacheKey, language, () => TvDbClient.Search.SearchSeriesByNameAsync(name, cancellationToken));
2019-02-07 20:28:19 +01:00
}
2019-02-12 19:50:19 +01:00
public Task<TvDbResponse<Series>> GetSeriesByIdAsync(int tvdbId, string language,
CancellationToken cancellationToken)
2019-02-07 20:28:19 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("series", tvdbId, language);
2020-03-24 16:12:06 +01:00
return TryGetValue(cacheKey, language, () => TvDbClient.Series.GetAsync(tvdbId, cancellationToken));
2019-02-07 21:59:57 +01:00
}
2019-02-12 19:50:19 +01:00
public Task<TvDbResponse<EpisodeRecord>> GetEpisodesAsync(int episodeTvdbId, string language,
CancellationToken cancellationToken)
2019-02-07 21:59:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("episode", episodeTvdbId, language);
2020-03-24 16:12:06 +01:00
return TryGetValue(cacheKey, language, () => TvDbClient.Episodes.GetAsync(episodeTvdbId, cancellationToken));
2019-02-07 21:59:57 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByImdbIdAsync(
string imdbId,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
2019-02-07 21:59:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("series", imdbId, language);
2020-03-24 16:12:06 +01:00
return TryGetValue(cacheKey, language, () => TvDbClient.Search.SearchSeriesByImdbIdAsync(imdbId, cancellationToken));
2019-02-07 21:59:57 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByZap2ItIdAsync(
string zap2ItId,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
2019-02-07 21:59:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("series", zap2ItId, language);
2019-09-25 17:19:48 +02:00
return TryGetValue(cacheKey, language, () => TvDbClient.Search.SearchSeriesByZap2ItIdAsync(zap2ItId, cancellationToken));
2019-02-07 21:59:57 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<Actor[]>> GetActorsAsync(
int tvdbId,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
2019-02-07 21:59:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("actors", tvdbId, language);
2019-09-25 17:19:48 +02:00
return TryGetValue(cacheKey, language, () => TvDbClient.Series.GetActorsAsync(tvdbId, cancellationToken));
2019-02-07 21:59:57 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<Image[]>> GetImagesAsync(
int tvdbId,
ImagesQuery imageQuery,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
2019-02-07 21:59:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("images", tvdbId, language, imageQuery);
2019-09-25 17:19:48 +02:00
return TryGetValue(cacheKey, language, () => TvDbClient.Series.GetImagesAsync(tvdbId, imageQuery, cancellationToken));
}
public Task<TvDbResponse<Language[]>> GetLanguagesAsync(CancellationToken cancellationToken)
{
2019-09-25 17:19:48 +02:00
return TryGetValue("languages", null, () => TvDbClient.Languages.GetAllAsync(cancellationToken));
2019-02-07 20:57:42 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<EpisodesSummary>> GetSeriesEpisodeSummaryAsync(
int tvdbId,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey("seriesepisodesummary", tvdbId, language);
return TryGetValue(cacheKey, language,
() => TvDbClient.Series.GetEpisodesSummaryAsync(tvdbId, cancellationToken));
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<EpisodeRecord[]>> GetEpisodesPageAsync(
int tvdbId,
int page,
EpisodeQuery episodeQuery,
string language,
CancellationToken cancellationToken)
2019-02-07 23:56:57 +01:00
{
2019-02-12 21:04:45 +01:00
var cacheKey = GenerateKey(language, tvdbId, episodeQuery);
2019-02-12 19:50:19 +01:00
return TryGetValue(cacheKey, language,
2019-02-07 23:56:57 +01:00
() => TvDbClient.Series.GetEpisodesAsync(tvdbId, page, episodeQuery, cancellationToken));
}
2019-09-25 17:19:48 +02:00
public Task<string> GetEpisodeTvdbId(
EpisodeInfo searchInfo,
string language,
2019-02-12 19:50:19 +01:00
CancellationToken cancellationToken)
2019-02-08 19:48:18 +01:00
{
2020-10-12 20:05:11 +02:00
searchInfo.SeriesProviderIds.TryGetValue(
nameof(MetadataProvider.Tvdb),
2019-02-08 19:48:18 +01:00
out var seriesTvdbId);
var episodeQuery = new EpisodeQuery();
// Prefer SxE over premiere date as it is more robust
if (searchInfo.IndexNumber.HasValue && searchInfo.ParentIndexNumber.HasValue)
{
switch (searchInfo.SeriesDisplayOrder)
{
case "dvd":
episodeQuery.DvdEpisode = searchInfo.IndexNumber.Value;
episodeQuery.DvdSeason = searchInfo.ParentIndexNumber.Value;
break;
case "absolute":
episodeQuery.AbsoluteNumber = searchInfo.IndexNumber.Value;
break;
2019-08-07 11:24:56 +02:00
default:
// aired order
episodeQuery.AiredEpisode = searchInfo.IndexNumber.Value;
episodeQuery.AiredSeason = searchInfo.ParentIndexNumber.Value;
break;
}
}
else if (searchInfo.PremiereDate.HasValue)
{
// tvdb expects yyyy-mm-dd format
2020-08-07 19:26:28 +02:00
episodeQuery.FirstAired = searchInfo.PremiereDate.Value.ToString("yyyy-MM-dd", CultureInfo.InvariantCulture);
}
2020-08-07 19:26:28 +02:00
return GetEpisodeTvdbId(Convert.ToInt32(seriesTvdbId, CultureInfo.InvariantCulture), episodeQuery, language, cancellationToken);
2019-02-08 19:48:18 +01:00
}
2019-09-25 17:19:48 +02:00
public async Task<string> GetEpisodeTvdbId(
int seriesTvdbId,
EpisodeQuery episodeQuery,
2019-02-13 11:23:54 +01:00
string language,
CancellationToken cancellationToken)
2019-02-08 19:48:18 +01:00
{
2019-02-20 19:35:47 +01:00
var episodePage =
await GetEpisodesPageAsync(Convert.ToInt32(seriesTvdbId), episodeQuery, language, cancellationToken)
.ConfigureAwait(false);
2020-08-07 19:26:28 +02:00
return episodePage.Data.FirstOrDefault()?.Id.ToString(CultureInfo.InvariantCulture);
2019-02-08 19:48:18 +01:00
}
2019-09-25 17:19:48 +02:00
public Task<TvDbResponse<EpisodeRecord[]>> GetEpisodesPageAsync(
int tvdbId,
EpisodeQuery episodeQuery,
string language,
CancellationToken cancellationToken)
{
2019-02-12 19:50:19 +01:00
return GetEpisodesPageAsync(tvdbId, 1, episodeQuery, language, cancellationToken);
}
2020-07-16 15:32:58 +02:00
public async IAsyncEnumerable<KeyType> GetImageKeyTypesForSeriesAsync(int tvdbId, string language, [EnumeratorCancellation] CancellationToken cancellationToken)
{
var cacheKey = GenerateKey(nameof(TvDbClient.Series.GetImagesSummaryAsync), tvdbId);
var imagesSummary = await TryGetValue(cacheKey, language, () => TvDbClient.Series.GetImagesSummaryAsync(tvdbId, cancellationToken)).ConfigureAwait(false);
if (imagesSummary.Data.Fanart > 0)
{
2020-07-15 17:14:39 +02:00
yield return KeyType.Fanart;
}
if (imagesSummary.Data.Series > 0)
{
2020-07-15 17:14:39 +02:00
yield return KeyType.Series;
}
if (imagesSummary.Data.Poster > 0)
{
2020-07-15 17:14:39 +02:00
yield return KeyType.Poster;
}
}
2020-07-16 15:32:58 +02:00
public async IAsyncEnumerable<KeyType> GetImageKeyTypesForSeasonAsync(int tvdbId, string language, [EnumeratorCancellation] CancellationToken cancellationToken)
{
var cacheKey = GenerateKey(nameof(TvDbClient.Series.GetImagesSummaryAsync), tvdbId);
var imagesSummary = await TryGetValue(cacheKey, language, () => TvDbClient.Series.GetImagesSummaryAsync(tvdbId, cancellationToken)).ConfigureAwait(false);
if (imagesSummary.Data.Season > 0)
{
2020-07-15 17:14:39 +02:00
yield return KeyType.Season;
}
if (imagesSummary.Data.Fanart > 0)
{
2020-07-15 17:14:39 +02:00
yield return KeyType.Fanart;
}
// TODO seasonwide is not supported in TvDbSharper
}
2019-02-12 19:50:19 +01:00
private async Task<T> TryGetValue<T>(string key, string language, Func<Task<T>> resultFactory)
2019-02-07 20:57:42 +01:00
{
if (_cache.TryGetValue(key, out T cachedValue))
2019-02-07 20:28:19 +01:00
{
2019-02-07 20:57:42 +01:00
return cachedValue;
}
2020-08-07 19:26:28 +02:00
_tvDbClient.AcceptedLanguage = TvdbUtils.NormalizeLanguage(language) ?? DefaultLanguage;
var result = await resultFactory.Invoke().ConfigureAwait(false);
_cache.Set(key, result, TimeSpan.FromHours(1));
return result;
2019-02-07 20:28:19 +01:00
}
2019-02-12 19:50:19 +01:00
2019-02-12 21:04:45 +01:00
private static string GenerateKey(params object[] objects)
2019-02-12 19:50:19 +01:00
{
var key = string.Empty;
foreach (var obj in objects)
{
var objType = obj.GetType();
if (objType.IsPrimitive || objType == typeof(string))
{
key += obj + ";";
2019-02-12 19:50:19 +01:00
}
else
{
foreach (PropertyInfo propertyInfo in objType.GetProperties())
{
var currentValue = propertyInfo.GetValue(obj, null);
if (currentValue == null)
{
continue;
}
2019-02-13 11:23:54 +01:00
key += propertyInfo.Name + "=" + currentValue + ";";
2019-02-12 19:50:19 +01:00
}
}
}
return key;
}
2019-01-30 23:28:43 +01:00
}
}