jellyfin/MediaBrowser.Controller/Plugins/PluginSecurityManager.cs

130 lines
4.1 KiB
C#
Raw Normal View History

2013-02-21 02:33:05 +01:00
using Mediabrowser.Model.Entities;
using Mediabrowser.PluginSecurity;
2013-02-23 23:44:42 +01:00
using MediaBrowser.Common.Kernel;
using MediaBrowser.Common.Net;
using System;
2013-02-21 02:33:05 +01:00
using System.Threading;
using System.Threading.Tasks;
namespace MediaBrowser.Controller.Plugins
{
/// <summary>
/// Class PluginSecurityManager
/// </summary>
2013-02-23 23:44:42 +01:00
public class PluginSecurityManager
2013-02-21 02:33:05 +01:00
{
/// <summary>
/// The _is MB supporter
/// </summary>
2013-02-21 02:33:05 +01:00
private bool? _isMBSupporter;
/// <summary>
/// The _is MB supporter initialized
/// </summary>
2013-02-21 02:33:05 +01:00
private bool _isMBSupporterInitialized;
/// <summary>
/// The _is MB supporter sync lock
/// </summary>
2013-02-21 02:33:05 +01:00
private object _isMBSupporterSyncLock = new object();
/// <summary>
/// Gets a value indicating whether this instance is MB supporter.
/// </summary>
/// <value><c>true</c> if this instance is MB supporter; otherwise, <c>false</c>.</value>
2013-02-21 02:33:05 +01:00
public bool IsMBSupporter
{
get
{
LazyInitializer.EnsureInitialized(ref _isMBSupporter, ref _isMBSupporterInitialized, ref _isMBSupporterSyncLock, () => GetRegistrationStatus("MBSupporter").Result.IsRegistered);
return _isMBSupporter.Value;
}
}
2013-02-23 23:44:42 +01:00
/// <summary>
/// The _network manager
/// </summary>
private INetworkManager _networkManager;
2013-02-25 01:13:45 +01:00
/// <summary>
/// The _kernel
/// </summary>
private readonly IKernel _kernel;
2013-02-23 23:44:42 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="PluginSecurityManager" /> class.
/// </summary>
/// <param name="kernel">The kernel.</param>
2013-02-23 23:44:42 +01:00
/// <param name="networkManager">The network manager.</param>
public PluginSecurityManager(IKernel kernel, INetworkManager networkManager)
2013-02-21 02:33:05 +01:00
{
2013-02-23 23:44:42 +01:00
if (kernel == null)
{
throw new ArgumentNullException("kernel");
}
if (networkManager == null)
{
throw new ArgumentNullException("networkManager");
}
_kernel = kernel;
_networkManager = networkManager;
2013-02-21 02:33:05 +01:00
}
/// <summary>
/// Gets the registration status.
/// </summary>
/// <param name="feature">The feature.</param>
/// <param name="mb2Equivalent">The MB2 equivalent.</param>
/// <returns>Task{MBRegistrationRecord}.</returns>
2013-02-21 02:33:05 +01:00
public async Task<MBRegistrationRecord> GetRegistrationStatus(string feature, string mb2Equivalent = null)
{
return await MBRegistration.GetRegistrationStatus(feature, mb2Equivalent).ConfigureAwait(false);
}
/// <summary>
/// Gets or sets the supporter key.
/// </summary>
/// <value>The supporter key.</value>
2013-02-21 02:33:05 +01:00
public string SupporterKey
{
get { return MBRegistration.SupporterKey; }
2013-02-23 23:44:42 +01:00
set
{
2013-02-21 02:33:05 +01:00
if (value != MBRegistration.SupporterKey)
{
MBRegistration.SupporterKey = value;
// Clear this so it will re-evaluate
ResetSupporterInfo();
// And we'll need to restart to re-evaluate the status of plug-ins
2013-02-23 23:44:42 +01:00
_kernel.NotifyPendingRestart();
2013-02-21 02:33:05 +01:00
}
}
}
/// <summary>
/// Gets or sets the legacy key.
/// </summary>
/// <value>The legacy key.</value>
2013-02-21 02:33:05 +01:00
public string LegacyKey
{
get { return MBRegistration.LegacyKey; }
2013-02-23 23:44:42 +01:00
set
{
2013-02-21 02:33:05 +01:00
MBRegistration.LegacyKey = value;
// And we'll need to restart to re-evaluate the status of plug-ins
2013-02-23 23:44:42 +01:00
_kernel.NotifyPendingRestart();
2013-02-21 02:33:05 +01:00
}
}
/// <summary>
/// Resets the supporter info.
/// </summary>
2013-02-21 02:33:05 +01:00
private void ResetSupporterInfo()
{
_isMBSupporter = null;
_isMBSupporterInitialized = false;
}
}
}