jellyfin/MediaBrowser.Controller/Authentication/IAuthenticationProvider.cs

34 lines
1006 B
C#
Raw Normal View History

using System.Threading.Tasks;
2018-12-27 18:27:57 -05:00
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Users;
namespace MediaBrowser.Controller.Authentication
{
public interface IAuthenticationProvider
{
string Name { get; }
bool IsEnabled { get; }
Task<ProviderAuthenticationResult> Authenticate(string username, string password);
2019-05-21 13:28:34 -04:00
bool HasPassword(User user);
2018-12-27 18:27:57 -05:00
Task ChangePassword(User user, string newPassword);
void ChangeEasyPassword(User user, string newPassword, string newPasswordHash);
string GetEasyPasswordHash(User user);
2018-12-27 18:27:57 -05:00
}
public interface IRequiresResolvedUser
{
Task<ProviderAuthenticationResult> Authenticate(string username, string password, User resolvedUser);
}
public interface IHasNewUserPolicy
{
UserPolicy GetNewUserPolicy();
}
public class ProviderAuthenticationResult
{
public string Username { get; set; }
public string DisplayName { get; set; }
}
}