mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-07-09 03:04:24 -04:00
Move SecurityManager to BaseKernel/IKernel
This commit is contained in:
parent
1925288a86
commit
4b2cf29fe1
@ -203,9 +203,9 @@ namespace MediaBrowser.Api
|
|||||||
|
|
||||||
var result = new PluginSecurityInfo
|
var result = new PluginSecurityInfo
|
||||||
{
|
{
|
||||||
IsMBSupporter = kernel.PluginSecurityManager.IsMBSupporter,
|
IsMBSupporter = kernel.SecurityManager.IsMBSupporter,
|
||||||
SupporterKey = kernel.PluginSecurityManager.SupporterKey,
|
SupporterKey = kernel.SecurityManager.SupporterKey,
|
||||||
LegacyKey = kernel.PluginSecurityManager.LegacyKey
|
LegacyKey = kernel.SecurityManager.LegacyKey
|
||||||
};
|
};
|
||||||
|
|
||||||
return ToOptimizedResult(result);
|
return ToOptimizedResult(result);
|
||||||
@ -221,8 +221,8 @@ namespace MediaBrowser.Api
|
|||||||
|
|
||||||
var info = _jsonSerializer.DeserializeFromStream<PluginSecurityInfo>(request.RequestStream);
|
var info = _jsonSerializer.DeserializeFromStream<PluginSecurityInfo>(request.RequestStream);
|
||||||
|
|
||||||
kernel.PluginSecurityManager.SupporterKey = info.SupporterKey;
|
kernel.SecurityManager.SupporterKey = info.SupporterKey;
|
||||||
kernel.PluginSecurityManager.LegacyKey = info.LegacyKey;
|
kernel.SecurityManager.LegacyKey = info.LegacyKey;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
using MediaBrowser.Common.Events;
|
using MediaBrowser.Common.Events;
|
||||||
using MediaBrowser.Common.Plugins;
|
using MediaBrowser.Common.Plugins;
|
||||||
|
using MediaBrowser.Common.Security;
|
||||||
using MediaBrowser.Model.Configuration;
|
using MediaBrowser.Model.Configuration;
|
||||||
using MediaBrowser.Model.Logging;
|
using MediaBrowser.Model.Logging;
|
||||||
using MediaBrowser.Model.Serialization;
|
using MediaBrowser.Model.Serialization;
|
||||||
@ -152,6 +153,12 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
/// <value>The TCP manager.</value>
|
/// <value>The TCP manager.</value>
|
||||||
public IServerManager ServerManager { get; private set; }
|
public IServerManager ServerManager { get; private set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the plug-in security manager.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The plug-in security manager.</value>
|
||||||
|
public ISecurityManager SecurityManager { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the UDP server port number.
|
/// Gets the UDP server port number.
|
||||||
/// This can't be configurable because then the user would have to configure their client to discover the server.
|
/// This can't be configurable because then the user would have to configure their client to discover the server.
|
||||||
|
@ -1,4 +1,5 @@
|
|||||||
using MediaBrowser.Common.Plugins;
|
using MediaBrowser.Common.Plugins;
|
||||||
|
using MediaBrowser.Common.Security;
|
||||||
using MediaBrowser.Model.Configuration;
|
using MediaBrowser.Model.Configuration;
|
||||||
using MediaBrowser.Model.System;
|
using MediaBrowser.Model.System;
|
||||||
using System;
|
using System;
|
||||||
@ -89,6 +90,12 @@ namespace MediaBrowser.Common.Kernel
|
|||||||
/// <value>The TCP manager.</value>
|
/// <value>The TCP manager.</value>
|
||||||
IServerManager ServerManager { get; }
|
IServerManager ServerManager { get; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Gets the plug-in security manager.
|
||||||
|
/// </summary>
|
||||||
|
/// <value>The plug-in security manager.</value>
|
||||||
|
ISecurityManager SecurityManager { get; set; }
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gets the web socket listeners.
|
/// Gets the web socket listeners.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
using MediaBrowser.Common.Kernel;
|
using MediaBrowser.Common.Kernel;
|
||||||
using MediaBrowser.Common.Plugins;
|
using MediaBrowser.Common.Plugins;
|
||||||
using MediaBrowser.Common.ScheduledTasks;
|
using MediaBrowser.Common.ScheduledTasks;
|
||||||
|
using MediaBrowser.Common.Security;
|
||||||
using MediaBrowser.Common.Updates;
|
using MediaBrowser.Common.Updates;
|
||||||
using MediaBrowser.Controller.Drawing;
|
using MediaBrowser.Controller.Drawing;
|
||||||
using MediaBrowser.Controller.Entities;
|
using MediaBrowser.Controller.Entities;
|
||||||
@ -91,12 +92,6 @@ namespace MediaBrowser.Controller
|
|||||||
/// <value>The user data manager.</value>
|
/// <value>The user data manager.</value>
|
||||||
public UserDataManager UserDataManager { get; private set; }
|
public UserDataManager UserDataManager { get; private set; }
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Gets the plug-in security manager.
|
|
||||||
/// </summary>
|
|
||||||
/// <value>The plug-in security manager.</value>
|
|
||||||
public PluginSecurityManager PluginSecurityManager { get; private set; }
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// The _users
|
/// The _users
|
||||||
/// </summary>
|
/// </summary>
|
||||||
@ -321,7 +316,7 @@ namespace MediaBrowser.Controller
|
|||||||
ImageManager = (ImageManager)ApplicationHost.CreateInstance(typeof(ImageManager));
|
ImageManager = (ImageManager)ApplicationHost.CreateInstance(typeof(ImageManager));
|
||||||
ProviderManager = (ProviderManager)ApplicationHost.CreateInstance(typeof(ProviderManager));
|
ProviderManager = (ProviderManager)ApplicationHost.CreateInstance(typeof(ProviderManager));
|
||||||
UserDataManager = (UserDataManager)ApplicationHost.CreateInstance(typeof(UserDataManager));
|
UserDataManager = (UserDataManager)ApplicationHost.CreateInstance(typeof(UserDataManager));
|
||||||
PluginSecurityManager = (PluginSecurityManager)ApplicationHost.CreateInstance(typeof(PluginSecurityManager));
|
SecurityManager = (PluginSecurityManager)ApplicationHost.CreateInstance(typeof(PluginSecurityManager));
|
||||||
|
|
||||||
base.FindParts();
|
base.FindParts();
|
||||||
|
|
||||||
|
@ -183,7 +183,7 @@ namespace MediaBrowser.Controller.Updates
|
|||||||
PackageType? packageType = null,
|
PackageType? packageType = null,
|
||||||
Version applicationVersion = null)
|
Version applicationVersion = null)
|
||||||
{
|
{
|
||||||
var data = new Dictionary<string, string> { { "key", Kernel.PluginSecurityManager.SupporterKey }, { "mac", _networkManager.GetMacAddress() } };
|
var data = new Dictionary<string, string> { { "key", Kernel.SecurityManager.SupporterKey }, { "mac", _networkManager.GetMacAddress() } };
|
||||||
|
|
||||||
using (var json = await HttpClient.Post(Controller.Kernel.MBAdminUrl + "service/package/retrieveall", data, Kernel.ResourcePools.Mb, cancellationToken).ConfigureAwait(false))
|
using (var json = await HttpClient.Post(Controller.Kernel.MBAdminUrl + "service/package/retrieveall", data, Kernel.ResourcePools.Mb, cancellationToken).ConfigureAwait(false))
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user