41 lines
1.0 KiB
C#
41 lines
1.0 KiB
C#
// <copyright file="IAuthenticationProvider.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
#pragma warning disable CS1591
|
|
|
|
using System.Threading.Tasks;
|
|
using Jellyfin.Database.Implementations.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);
|
|
|
|
Task ChangePassword(User user, string newPassword);
|
|
}
|
|
|
|
public interface IRequiresResolvedUser
|
|
{
|
|
Task<ProviderAuthenticationResult> Authenticate(string username, string password, User? resolvedUser);
|
|
}
|
|
|
|
public interface IHasNewUserPolicy
|
|
{
|
|
UserPolicy GetNewUserPolicy();
|
|
}
|
|
|
|
public class ProviderAuthenticationResult
|
|
{
|
|
public required string Username { get; set; }
|
|
|
|
public string? DisplayName { get; set; }
|
|
}
|
|
}
|