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

37 lines
1 KiB
C#
Raw Normal View History

using System.Threading.Tasks;
2020-05-20 19:07:53 +02:00
using Jellyfin.Data.Entities;
using MediaBrowser.Controller.Authentication;
2020-05-15 23:24:01 +02:00
namespace Jellyfin.Server.Implementations.Users
{
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 />
2020-10-03 21:24:04 +02:00
public bool IsEnabled => false;
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-20 19:07:53 +02:00
public bool HasPassword(User user)
{
2019-05-21 19:28:34 +02:00
return true;
}
2019-11-01 18:38:54 +01:00
/// <inheritdoc />
2020-05-20 19:07:53 +02:00
public Task ChangePassword(User user, string newPassword)
{
return Task.CompletedTask;
}
}
}