2021-05-06 22:39:20 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2020-08-22 19:56:24 +00:00
|
|
|
#pragma warning disable CS1591
|
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
using System;
|
|
|
|
using System.Threading.Tasks;
|
2020-05-13 02:10:35 +00:00
|
|
|
using Jellyfin.Data.Entities;
|
2019-03-22 07:01:23 +00:00
|
|
|
using MediaBrowser.Model.Users;
|
|
|
|
|
|
|
|
namespace MediaBrowser.Controller.Authentication
|
|
|
|
{
|
|
|
|
public interface IPasswordResetProvider
|
|
|
|
{
|
|
|
|
string Name { get; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
bool IsEnabled { get; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
Task<ForgotPasswordResult> StartForgotPasswordProcess(User user, bool isInNetwork);
|
2020-08-22 19:56:24 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
Task<PinRedeemResult> RedeemPasswordResetPin(string pin);
|
|
|
|
}
|
2019-05-21 17:28:34 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
public class PasswordPinCreationResult
|
|
|
|
{
|
|
|
|
public string PinFile { get; set; }
|
2020-06-15 21:43:52 +00:00
|
|
|
|
2019-03-22 07:01:23 +00:00
|
|
|
public DateTime ExpirationDate { get; set; }
|
|
|
|
}
|
|
|
|
}
|