2019-01-30 22:28:43 +00:00
|
|
|
using System;
|
2019-02-07 19:28:19 +00:00
|
|
|
using System.Threading;
|
|
|
|
using System.Threading.Tasks;
|
2019-01-30 22:28:43 +00:00
|
|
|
using MediaBrowser.Controller.Library;
|
2019-02-07 19:28:19 +00:00
|
|
|
using Microsoft.Extensions.Caching.Memory;
|
2019-01-30 22:28:43 +00:00
|
|
|
using TvDbSharper;
|
2019-02-07 19:28:19 +00:00
|
|
|
using TvDbSharper.Dto;
|
2019-01-30 22:28:43 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
|
|
{
|
2019-02-07 20:59:57 +00:00
|
|
|
// TODO add to DI once Bond's PR is merged
|
2019-01-30 22:28:43 +00:00
|
|
|
public sealed class TvDbClientManager
|
|
|
|
{
|
|
|
|
private static volatile TvDbClientManager instance;
|
2019-02-07 19:28:19 +00:00
|
|
|
// TODO add to DI once Bond's PR is merged
|
2019-02-07 19:57:42 +00:00
|
|
|
private readonly SemaphoreSlim _cacheWriteLock = new SemaphoreSlim(1, 1);
|
2019-02-07 19:28:19 +00:00
|
|
|
private static MemoryCache _cache;
|
2019-01-30 22:28:43 +00:00
|
|
|
private static readonly object syncRoot = new object();
|
|
|
|
private static TvDbClient tvDbClient;
|
|
|
|
private static DateTime tokenCreatedAt;
|
|
|
|
|
|
|
|
private TvDbClientManager()
|
|
|
|
{
|
|
|
|
tvDbClient = new TvDbClient();
|
|
|
|
tvDbClient.Authentication.AuthenticateAsync(TVUtils.TvdbApiKey);
|
|
|
|
tokenCreatedAt = DateTime.Now;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static TvDbClientManager Instance
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
if (instance != null)
|
|
|
|
{
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
|
|
|
lock (syncRoot)
|
|
|
|
{
|
|
|
|
if (instance == null)
|
2019-02-07 19:28:19 +00:00
|
|
|
{
|
2019-01-30 22:28:43 +00:00
|
|
|
instance = new TvDbClientManager();
|
2019-02-07 19:28:19 +00:00
|
|
|
_cache = new MemoryCache(new MemoryCacheOptions());
|
|
|
|
}
|
2019-01-30 22:28:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public TvDbClient TvDbClient
|
|
|
|
{
|
|
|
|
get
|
|
|
|
{
|
|
|
|
// Refresh if necessary
|
|
|
|
if (tokenCreatedAt > DateTime.Now.Subtract(TimeSpan.FromHours(20)))
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
tvDbClient.Authentication.RefreshTokenAsync();
|
|
|
|
}
|
|
|
|
catch
|
|
|
|
{
|
|
|
|
tvDbClient.Authentication.AuthenticateAsync(TVUtils.TvdbApiKey);
|
|
|
|
}
|
|
|
|
|
|
|
|
tokenCreatedAt = DateTime.Now;
|
|
|
|
}
|
|
|
|
// Default to English
|
|
|
|
tvDbClient.AcceptedLanguage = "en";
|
|
|
|
return tvDbClient;
|
|
|
|
}
|
|
|
|
}
|
2019-02-07 19:28:19 +00:00
|
|
|
|
2019-02-07 20:59:57 +00:00
|
|
|
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByNameAsync(string name, CancellationToken cancellationToken)
|
2019-02-07 19:28:19 +00:00
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("series" + name,() => TvDbClient.Search.SearchSeriesByNameAsync(name, cancellationToken));
|
2019-02-07 19:28:19 +00:00
|
|
|
}
|
|
|
|
|
2019-02-07 20:59:57 +00:00
|
|
|
public Task<TvDbResponse<Series>> GetSeriesByIdAsync(int tvdbId, CancellationToken cancellationToken)
|
2019-02-07 19:28:19 +00:00
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("series" + tvdbId,() => TvDbClient.Series.GetAsync(tvdbId, cancellationToken));
|
2019-02-07 20:59:57 +00:00
|
|
|
}
|
|
|
|
|
2019-02-07 21:42:02 +00:00
|
|
|
public Task<TvDbResponse<EpisodeRecord>> GetEpisodesAsync(int episodeTvdbId, CancellationToken cancellationToken)
|
2019-02-07 20:59:57 +00:00
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("episode" + episodeTvdbId,() => TvDbClient.Episodes.GetAsync(episodeTvdbId, cancellationToken));
|
2019-02-07 20:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByImdbIdAsync(string imdbId, CancellationToken cancellationToken)
|
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("series" + imdbId,() => TvDbClient.Search.SearchSeriesByImdbIdAsync(imdbId, cancellationToken));
|
2019-02-07 20:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Task<TvDbResponse<SeriesSearchResult[]>> GetSeriesByZap2ItIdAsync(string zap2ItId, CancellationToken cancellationToken)
|
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("series" + zap2ItId,() => TvDbClient.Search.SearchSeriesByImdbIdAsync(zap2ItId, cancellationToken));
|
2019-02-07 20:59:57 +00:00
|
|
|
}
|
|
|
|
public Task<TvDbResponse<Actor[]>> GetActorsAsync(int tvdbId, CancellationToken cancellationToken)
|
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("actors" + tvdbId,() => TvDbClient.Series.GetActorsAsync(tvdbId, cancellationToken));
|
2019-02-07 20:59:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public Task<TvDbResponse<Image[]>> GetImagesAsync(int tvdbId, ImagesQuery imageQuery, CancellationToken cancellationToken)
|
|
|
|
{
|
2019-02-07 21:42:02 +00:00
|
|
|
return TryGetValue("images" + tvdbId,() => TvDbClient.Series.GetImagesAsync(tvdbId, imageQuery, cancellationToken));
|
|
|
|
}
|
|
|
|
|
|
|
|
public Task<TvDbResponse<Language[]>> GetLanguagesAsync(CancellationToken cancellationToken)
|
|
|
|
{
|
|
|
|
return TryGetValue("languages",() => TvDbClient.Languages.GetAllAsync(cancellationToken));
|
2019-02-07 19:57:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private async Task<T> TryGetValue<T>(object key, Func<Task<T>> resultFactory)
|
|
|
|
{
|
|
|
|
if (_cache.TryGetValue(key, out T cachedValue))
|
2019-02-07 19:28:19 +00:00
|
|
|
{
|
2019-02-07 19:57:42 +00:00
|
|
|
return cachedValue;
|
|
|
|
}
|
2019-02-07 20:05:58 +00:00
|
|
|
|
|
|
|
await _cacheWriteLock.WaitAsync().ConfigureAwait(false);
|
|
|
|
try
|
2019-02-07 19:57:42 +00:00
|
|
|
{
|
|
|
|
if (_cache.TryGetValue(key, out cachedValue))
|
|
|
|
{
|
|
|
|
return cachedValue;
|
|
|
|
}
|
2019-02-07 20:05:58 +00:00
|
|
|
|
2019-02-07 19:57:42 +00:00
|
|
|
var result = await resultFactory.Invoke();
|
2019-02-07 20:05:58 +00:00
|
|
|
_cache.Set(key, result, TimeSpan.FromHours(1));
|
2019-02-07 19:57:42 +00:00
|
|
|
return result;
|
2019-02-07 19:28:19 +00:00
|
|
|
}
|
2019-02-07 20:05:58 +00:00
|
|
|
finally
|
|
|
|
{
|
|
|
|
_cacheWriteLock.Release();
|
|
|
|
}
|
2019-02-07 19:28:19 +00:00
|
|
|
}
|
2019-01-30 22:28:43 +00:00
|
|
|
}
|
|
|
|
}
|