2020-06-19 18:24:13 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-02-13 10:21:56 +00:00
|
|
|
using System;
|
|
|
|
using MediaBrowser.Model.Entities;
|
2020-03-09 14:53:07 +00:00
|
|
|
|
|
|
|
namespace MediaBrowser.Providers.Plugins.TheTvdb
|
2019-02-13 10:21:56 +00:00
|
|
|
{
|
|
|
|
public static class TvdbUtils
|
|
|
|
{
|
2019-02-20 18:52:50 +00:00
|
|
|
public const string TvdbApiKey = "OG4V3YJ3FAP7FP2K";
|
|
|
|
public const string TvdbBaseUrl = "https://www.thetvdb.com/";
|
2020-07-15 14:45:14 +00:00
|
|
|
public const string TvdbImageBaseUrl = "https://www.thetvdb.com";
|
|
|
|
public const string BannerUrl = TvdbImageBaseUrl + "/banners/";
|
2019-02-13 10:21:56 +00:00
|
|
|
|
|
|
|
public static ImageType GetImageTypeFromKeyType(string keyType)
|
|
|
|
{
|
|
|
|
switch (keyType.ToLowerInvariant())
|
|
|
|
{
|
|
|
|
case "poster":
|
|
|
|
case "season": return ImageType.Primary;
|
|
|
|
case "series":
|
|
|
|
case "seasonwide": return ImageType.Banner;
|
|
|
|
case "fanart": return ImageType.Backdrop;
|
|
|
|
default: throw new ArgumentException($"Invalid or unknown keytype: {keyType}", nameof(keyType));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static string NormalizeLanguage(string language)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrWhiteSpace(language))
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
// pt-br is just pt to tvdb
|
|
|
|
return language.Split('-')[0].ToLowerInvariant();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|