jellyfin/Jellyfin.Server.Implementations/User/InvalidAuthProvider.cs

48 lines
1.3 KiB
C#
Raw Normal View History

using System.Threading.Tasks;
using MediaBrowser.Controller.Authentication;
2020-05-13 04:10:35 +02:00
namespace Jellyfin.Server.Implementations.User
{
2019-11-01 18:38:54 +01:00
/// <summary>
/// An invalid authentication provider.
/// </summary>
public class InvalidAuthProvider : IAuthenticationProvider
{
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
public string Name => "InvalidOrMissingAuthenticationProvider";
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
public bool IsEnabled => true;
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
public Task<ProviderAuthenticationResult> Authenticate(string username, string password)
{
2019-05-21 19:28:34 +02:00
throw new AuthenticationException("User Account cannot login with this provider. The Normal provider for this user cannot be found");
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2020-05-13 04:10:35 +02:00
public bool HasPassword(Data.Entities.User user)
{
2019-05-21 19:28:34 +02:00
return true;
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2020-05-13 04:10:35 +02:00
public Task ChangePassword(Data.Entities.User user, string newPassword)
{
return Task.CompletedTask;
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2020-05-13 04:10:35 +02:00
public void ChangeEasyPassword(Data.Entities.User user, string newPassword, string newPasswordHash)
{
2019-05-21 19:28:34 +02:00
// Nothing here
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2020-05-13 04:10:35 +02:00
public string GetEasyPasswordHash(Data.Entities.User user)
{
return string.Empty;
}
}
}