97 lines
3.0 KiB
C#
97 lines
3.0 KiB
C#
using System;
|
|
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
using MediaBrowser.Controller.Library;
|
|
using Microsoft.Extensions.Caching.Memory;
|
|
using Microsoft.Extensions.Internal;
|
|
using TvDbSharper;
|
|
using TvDbSharper.Dto;
|
|
|
|
namespace MediaBrowser.Providers.TV
|
|
{
|
|
public sealed class TvDbClientManager
|
|
{
|
|
private static volatile TvDbClientManager instance;
|
|
// TODO add to DI once Bond's PR is merged
|
|
private static MemoryCache _cache;
|
|
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)
|
|
{
|
|
instance = new TvDbClientManager();
|
|
_cache = new MemoryCache(new MemoryCacheOptions());
|
|
}
|
|
}
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
public async Task<SeriesSearchResult[]> GetSeriesByName(string name, CancellationToken cancellationToken)
|
|
{
|
|
if (_cache.TryGetValue(name, out SeriesSearchResult[] series))
|
|
{
|
|
return series;
|
|
}
|
|
var result = await TvDbClient.Search.SearchSeriesByNameAsync(name, cancellationToken);
|
|
_cache.Set(name, result.Data, DateTimeOffset.UtcNow.AddHours(1));
|
|
return result.Data;
|
|
}
|
|
|
|
public async Task<Series> GetSeriesById(int tvdbId, CancellationToken cancellationToken)
|
|
{
|
|
if (_cache.TryGetValue(tvdbId, out Series series))
|
|
{
|
|
return series;
|
|
}
|
|
var result = await TvDbClient.Series.GetAsync(tvdbId, cancellationToken);
|
|
_cache.Set(tvdbId, result.Data, DateTimeOffset.UtcNow.AddHours(1));
|
|
return result.Data;
|
|
}
|
|
}
|
|
}
|