2019-06-09 02:54:31 +00:00
|
|
|
using System.Threading.Tasks;
|
2020-05-20 17:07:53 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2019-06-09 02:54:31 +00:00
|
|
|
using MediaBrowser.Controller.Authentication;
|
|
|
|
|
2020-05-15 21:24:01 +00:00
|
|
|
namespace Jellyfin.Server.Implementations.Users
|
2019-06-09 02:54:31 +00:00
|
|
|
{
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <summary>
|
|
|
|
/// An invalid authentication provider.
|
|
|
|
/// </summary>
|
2019-06-09 02:54:31 +00:00
|
|
|
public class InvalidAuthProvider : IAuthenticationProvider
|
|
|
|
{
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2019-06-09 17:41:14 +00:00
|
|
|
public string Name => "InvalidOrMissingAuthenticationProvider";
|
2019-06-09 02:54:31 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-10-03 19:24:04 +00:00
|
|
|
public bool IsEnabled => false;
|
2019-06-09 02:54:31 +00:00
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2019-06-09 02:54:31 +00:00
|
|
|
public Task<ProviderAuthenticationResult> Authenticate(string username, string password)
|
|
|
|
{
|
2019-05-21 17:28:34 +00:00
|
|
|
throw new AuthenticationException("User Account cannot login with this provider. The Normal provider for this user cannot be found");
|
2019-06-09 02:54:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-20 17:07:53 +00:00
|
|
|
public bool HasPassword(User user)
|
2019-06-09 02:54:31 +00:00
|
|
|
{
|
2019-05-21 17:28:34 +00:00
|
|
|
return true;
|
2019-06-09 02:54:31 +00:00
|
|
|
}
|
|
|
|
|
2019-11-01 17:38:54 +00:00
|
|
|
/// <inheritdoc />
|
2020-05-20 17:07:53 +00:00
|
|
|
public Task ChangePassword(User user, string newPassword)
|
2019-06-09 02:54:31 +00:00
|
|
|
{
|
2019-06-09 17:41:14 +00:00
|
|
|
return Task.CompletedTask;
|
2019-06-09 02:54:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|