mirror of
https://github.com/jellyfin/jellyfin.git
synced 2024-11-15 09:59:06 -07:00
Add api key to configuration
This commit is contained in:
parent
6ea4c44906
commit
c8da8eefe0
@ -7,6 +7,12 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
||||
/// </summary>
|
||||
public class PluginConfiguration : BasePluginConfiguration
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets a value to use as the API key for accessing TMDb. This is intentionally excluded from the
|
||||
/// settings page as the API key should not need to be changed by most users.
|
||||
/// </summary>
|
||||
public string TmdbApiKey { get; set; } = TmdbUtils.ApiKey;
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether include adult content when searching with TMDb.
|
||||
/// </summary>
|
||||
|
@ -64,9 +64,18 @@
|
||||
|
||||
var clientConfig, pluginConfig;
|
||||
var configureImageScaling = function() {
|
||||
if (clientConfig === null || pluginConfig === null) {
|
||||
if (clientConfig === undefined || pluginConfig === undefined) {
|
||||
return;
|
||||
}
|
||||
if (Object.keys(clientConfig).length === 0) {
|
||||
clientConfig = {
|
||||
PosterSizes: [pluginConfig.PosterSize],
|
||||
BackdropSizes: [pluginConfig.BackdropSize],
|
||||
LogoSizes: [pluginConfig.LogoSize],
|
||||
ProfileSizes: [pluginConfig.ProfileSize],
|
||||
StillSizes: [pluginConfig.StillSize]
|
||||
};
|
||||
}
|
||||
|
||||
var sizeOptionsGenerator = function (size) {
|
||||
return '<option value="' + size + '">' + size + '</option>';
|
||||
@ -104,6 +113,15 @@
|
||||
ApiClient.fetch(request).then(function (config) {
|
||||
clientConfig = config;
|
||||
configureImageScaling();
|
||||
}, function (error) {
|
||||
error.text().then(function (contents) {
|
||||
Dashboard.alert({
|
||||
title: error.statusText,
|
||||
message: contents
|
||||
});
|
||||
clientConfig = {};
|
||||
configureImageScaling();
|
||||
});
|
||||
});
|
||||
|
||||
ApiClient.getPluginConfiguration(PluginConfig.pluginId).then(function (config) {
|
||||
|
@ -36,7 +36,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb
|
||||
public TmdbClientManager(IMemoryCache memoryCache)
|
||||
{
|
||||
_memoryCache = memoryCache;
|
||||
_tmDbClient = new TMDbClient(TmdbUtils.ApiKey);
|
||||
_tmDbClient = new TMDbClient(Plugin.Instance.Configuration.TmdbApiKey);
|
||||
// Not really interested in NotFoundException
|
||||
_tmDbClient.ThrowApiExceptions = false;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user