2015-01-24 22:33:26 +00:00
|
|
|
|
using MediaBrowser.Common.Security;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
2016-11-03 22:34:16 +00:00
|
|
|
|
namespace Emby.Server.Implementations.Sync
|
2015-01-24 22:33:26 +00:00
|
|
|
|
{
|
|
|
|
|
public class SyncRegistrationInfo : IRequiresRegistration
|
|
|
|
|
{
|
|
|
|
|
private readonly ISecurityManager _securityManager;
|
|
|
|
|
|
|
|
|
|
public static SyncRegistrationInfo Instance;
|
|
|
|
|
|
|
|
|
|
public SyncRegistrationInfo(ISecurityManager securityManager)
|
|
|
|
|
{
|
|
|
|
|
_securityManager = securityManager;
|
|
|
|
|
Instance = this;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private bool _registered;
|
|
|
|
|
public bool IsRegistered
|
|
|
|
|
{
|
|
|
|
|
get { return _registered; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public async Task LoadRegistrationInfoAsync()
|
|
|
|
|
{
|
|
|
|
|
var info = await _securityManager.GetRegistrationStatus("sync").ConfigureAwait(false);
|
|
|
|
|
|
|
|
|
|
_registered = info.IsValid;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|