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

128 lines
4.6 KiB
C#
Raw Normal View History

2019-05-21 19:28:34 +02:00
using System;
using System.Collections.Generic;
using System.IO;
2019-06-09 22:08:01 +02:00
using System.Security.Cryptography;
2019-05-21 19:28:34 +02:00
using System.Threading.Tasks;
2020-05-15 23:24:01 +02:00
using Jellyfin.Data.Entities;
2019-05-21 19:28:34 +02:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Authentication;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Serialization;
using MediaBrowser.Model.Users;
2020-05-15 23:24:01 +02:00
namespace Jellyfin.Server.Implementations.Users
2019-05-21 19:28:34 +02:00
{
2019-11-01 18:38:54 +01:00
/// <summary>
/// The default password reset provider.
/// </summary>
2019-05-21 19:28:34 +02:00
public class DefaultPasswordResetProvider : IPasswordResetProvider
{
2019-06-09 22:08:01 +02:00
private const string BaseResetFileName = "passwordreset";
2019-05-21 19:28:34 +02:00
2019-06-09 22:08:01 +02:00
private readonly IJsonSerializer _jsonSerializer;
private readonly IUserManager _userManager;
2019-05-21 19:28:34 +02:00
private readonly string _passwordResetFileBase;
private readonly string _passwordResetFileBaseDir;
2019-11-01 18:38:54 +01:00
/// <summary>
/// Initializes a new instance of the <see cref="DefaultPasswordResetProvider"/> class.
/// </summary>
/// <param name="configurationManager">The configuration manager.</param>
/// <param name="jsonSerializer">The JSON serializer.</param>
/// <param name="userManager">The user manager.</param>
2019-06-09 22:08:01 +02:00
public DefaultPasswordResetProvider(
IServerConfigurationManager configurationManager,
IJsonSerializer jsonSerializer,
IUserManager userManager)
2019-05-21 19:28:34 +02:00
{
_passwordResetFileBaseDir = configurationManager.ApplicationPaths.ProgramDataPath;
2019-06-09 22:08:01 +02:00
_passwordResetFileBase = Path.Combine(_passwordResetFileBaseDir, BaseResetFileName);
2019-05-21 19:28:34 +02:00
_jsonSerializer = jsonSerializer;
_userManager = userManager;
}
2019-06-09 22:08:01 +02:00
/// <inheritdoc />
public string Name => "Default Password Reset Provider";
/// <inheritdoc />
public bool IsEnabled => true;
/// <inheritdoc />
2019-05-21 19:28:34 +02:00
public async Task<PinRedeemResult> RedeemPasswordResetPin(string pin)
{
SerializablePasswordReset spr;
2020-05-13 04:10:35 +02:00
List<string> usersReset = new List<string>();
foreach (var resetFile in Directory.EnumerateFiles(_passwordResetFileBaseDir, $"{BaseResetFileName}*"))
2019-05-21 19:28:34 +02:00
{
2020-05-13 04:10:35 +02:00
await using (var str = File.OpenRead(resetFile))
2019-05-21 19:28:34 +02:00
{
spr = await _jsonSerializer.DeserializeFromStreamAsync<SerializablePasswordReset>(str).ConfigureAwait(false);
}
if (spr.ExpirationDate < DateTime.Now)
{
2020-05-13 04:10:35 +02:00
File.Delete(resetFile);
2019-05-21 19:28:34 +02:00
}
2019-06-09 22:08:01 +02:00
else if (string.Equals(
2019-11-01 18:38:54 +01:00
spr.Pin.Replace("-", string.Empty, StringComparison.Ordinal),
pin.Replace("-", string.Empty, StringComparison.Ordinal),
2019-06-09 22:08:01 +02:00
StringComparison.InvariantCultureIgnoreCase))
2019-05-21 19:28:34 +02:00
{
var resetUser = _userManager.GetUserByName(spr.UserName);
if (resetUser == null)
{
2019-06-09 22:08:01 +02:00
throw new ResourceNotFoundException($"User with a username of {spr.UserName} not found");
2019-05-21 19:28:34 +02:00
}
await _userManager.ChangePassword(resetUser, pin).ConfigureAwait(false);
2020-05-13 04:10:35 +02:00
usersReset.Add(resetUser.Username);
File.Delete(resetFile);
2019-05-21 19:28:34 +02:00
}
}
2020-05-13 04:10:35 +02:00
if (usersReset.Count < 1)
2019-05-21 19:28:34 +02:00
{
throw new ResourceNotFoundException($"No Users found with a password reset request matching pin {pin}");
}
2020-05-13 04:10:35 +02:00
return new PinRedeemResult
2019-05-21 19:28:34 +02:00
{
2020-05-13 04:10:35 +02:00
Success = true,
UsersReset = usersReset.ToArray()
};
2019-05-21 19:28:34 +02:00
}
2019-06-09 22:08:01 +02:00
/// <inheritdoc />
2020-05-15 23:24:01 +02:00
public async Task<ForgotPasswordResult> StartForgotPasswordProcess(User user, bool isInNetwork)
2019-05-21 19:28:34 +02:00
{
2020-05-13 04:10:35 +02:00
string pin;
2019-06-09 22:08:01 +02:00
using (var cryptoRandom = RandomNumberGenerator.Create())
2019-05-21 19:28:34 +02:00
{
byte[] bytes = new byte[4];
cryptoRandom.GetBytes(bytes);
pin = BitConverter.ToString(bytes);
}
DateTime expireTime = DateTime.Now.AddMinutes(30);
2020-05-13 04:10:35 +02:00
user.EasyPassword = pin;
await _userManager.UpdateUserAsync(user).ConfigureAwait(false);
2019-05-21 19:28:34 +02:00
return new ForgotPasswordResult
{
Action = ForgotPasswordAction.PinCode,
PinExpirationDate = expireTime,
};
}
private class SerializablePasswordReset : PasswordPinCreationResult
{
public string Pin { get; set; }
public string UserName { get; set; }
}
}
}