jellyfin/Jellyfin.Server.Implementat.../Users/DefaultPasswordResetProvide...

138 lines
4.9 KiB
C#
Raw Normal View History

2020-06-09 12:21:21 -04:00
#nullable enable
2019-05-21 13:28:34 -04:00
using System;
using System.Collections.Generic;
using System.IO;
2019-06-09 16:08:01 -04:00
using System.Security.Cryptography;
using System.Text.Json;
2019-05-21 13:28:34 -04:00
using System.Threading.Tasks;
2020-05-15 17:24:01 -04:00
using Jellyfin.Data.Entities;
2020-06-20 17:58:09 -04:00
using MediaBrowser.Common;
2019-05-21 13:28:34 -04:00
using MediaBrowser.Common.Extensions;
using MediaBrowser.Controller.Authentication;
using MediaBrowser.Controller.Configuration;
using MediaBrowser.Controller.Library;
using MediaBrowser.Model.Users;
2020-05-15 17:24:01 -04:00
namespace Jellyfin.Server.Implementations.Users
2019-05-21 13:28:34 -04:00
{
2019-11-01 13:38:54 -04:00
/// <summary>
/// The default password reset provider.
/// </summary>
2019-05-21 13:28:34 -04:00
public class DefaultPasswordResetProvider : IPasswordResetProvider
{
2019-06-09 16:08:01 -04:00
private const string BaseResetFileName = "passwordreset";
2019-05-21 13:28:34 -04:00
2020-06-20 17:58:09 -04:00
private readonly IApplicationHost _appHost;
2019-05-21 13:28:34 -04:00
private readonly string _passwordResetFileBase;
private readonly string _passwordResetFileBaseDir;
2019-11-01 13:38:54 -04:00
/// <summary>
/// Initializes a new instance of the <see cref="DefaultPasswordResetProvider"/> class.
/// </summary>
/// <param name="configurationManager">The configuration manager.</param>
2020-06-20 17:58:09 -04:00
/// <param name="appHost">The application host.</param>
public DefaultPasswordResetProvider(IServerConfigurationManager configurationManager, IApplicationHost appHost)
2019-05-21 13:28:34 -04:00
{
_passwordResetFileBaseDir = configurationManager.ApplicationPaths.ProgramDataPath;
2019-06-09 16:08:01 -04:00
_passwordResetFileBase = Path.Combine(_passwordResetFileBaseDir, BaseResetFileName);
2020-06-20 17:58:09 -04:00
_appHost = appHost;
// TODO: Remove the circular dependency on UserManager
2019-05-21 13:28:34 -04:00
}
2019-06-09 16:08:01 -04:00
/// <inheritdoc />
public string Name => "Default Password Reset Provider";
/// <inheritdoc />
public bool IsEnabled => true;
/// <inheritdoc />
2019-05-21 13:28:34 -04:00
public async Task<PinRedeemResult> RedeemPasswordResetPin(string pin)
{
2020-06-20 17:58:09 -04:00
var userManager = _appHost.Resolve<IUserManager>();
2020-05-30 00:19:36 -04:00
var usersReset = new List<string>();
2020-05-12 22:10:35 -04:00
foreach (var resetFile in Directory.EnumerateFiles(_passwordResetFileBaseDir, $"{BaseResetFileName}*"))
2019-05-21 13:28:34 -04:00
{
2020-05-30 00:19:36 -04:00
SerializablePasswordReset spr;
2020-05-12 22:10:35 -04:00
await using (var str = File.OpenRead(resetFile))
2019-05-21 13:28:34 -04:00
{
spr = await JsonSerializer.DeserializeAsync<SerializablePasswordReset>(str).ConfigureAwait(false);
2019-05-21 13:28:34 -04:00
}
2020-05-30 00:19:36 -04:00
if (spr.ExpirationDate < DateTime.UtcNow)
2019-05-21 13:28:34 -04:00
{
2020-05-12 22:10:35 -04:00
File.Delete(resetFile);
2019-05-21 13:28:34 -04:00
}
2019-06-09 16:08:01 -04:00
else if (string.Equals(
2019-11-01 13:38:54 -04:00
spr.Pin.Replace("-", string.Empty, StringComparison.Ordinal),
pin.Replace("-", string.Empty, StringComparison.Ordinal),
2019-06-09 16:08:01 -04:00
StringComparison.InvariantCultureIgnoreCase))
2019-05-21 13:28:34 -04:00
{
2020-06-20 17:58:09 -04:00
var resetUser = userManager.GetUserByName(spr.UserName)
2020-05-30 00:19:36 -04:00
?? throw new ResourceNotFoundException($"User with a username of {spr.UserName} not found");
2019-05-21 13:28:34 -04:00
2020-06-20 17:58:09 -04:00
await userManager.ChangePassword(resetUser, pin).ConfigureAwait(false);
2020-05-12 22:10:35 -04:00
usersReset.Add(resetUser.Username);
File.Delete(resetFile);
2019-05-21 13:28:34 -04:00
}
}
2020-05-12 22:10:35 -04:00
if (usersReset.Count < 1)
2019-05-21 13:28:34 -04:00
{
throw new ResourceNotFoundException($"No Users found with a password reset request matching pin {pin}");
}
2020-05-12 22:10:35 -04:00
return new PinRedeemResult
2019-05-21 13:28:34 -04:00
{
2020-05-12 22:10:35 -04:00
Success = true,
UsersReset = usersReset.ToArray()
};
2019-05-21 13:28:34 -04:00
}
2019-06-09 16:08:01 -04:00
/// <inheritdoc />
2020-05-15 17:24:01 -04:00
public async Task<ForgotPasswordResult> StartForgotPasswordProcess(User user, bool isInNetwork)
2019-05-21 13:28:34 -04:00
{
2020-05-12 22:10:35 -04:00
string pin;
2019-06-09 16:08:01 -04:00
using (var cryptoRandom = RandomNumberGenerator.Create())
2019-05-21 13:28:34 -04:00
{
byte[] bytes = new byte[4];
cryptoRandom.GetBytes(bytes);
pin = BitConverter.ToString(bytes);
}
2020-05-30 00:19:36 -04:00
DateTime expireTime = DateTime.UtcNow.AddMinutes(30);
string filePath = _passwordResetFileBase + user.Id + ".json";
SerializablePasswordReset spr = new SerializablePasswordReset
{
ExpirationDate = expireTime,
Pin = pin,
PinFile = filePath,
UserName = user.Username
};
await using (FileStream fileStream = File.OpenWrite(filePath))
{
fileStream.Write(JsonSerializer.SerializeToUtf8Bytes(spr));
2020-05-30 00:19:36 -04:00
await fileStream.FlushAsync().ConfigureAwait(false);
}
2019-05-21 13:28:34 -04:00
2020-05-12 22:10:35 -04:00
user.EasyPassword = pin;
2019-05-21 13:28:34 -04:00
return new ForgotPasswordResult
{
Action = ForgotPasswordAction.PinCode,
PinExpirationDate = expireTime,
};
}
2020-06-09 12:21:21 -04:00
#nullable disable
2019-05-21 13:28:34 -04:00
private class SerializablePasswordReset : PasswordPinCreationResult
{
public string Pin { get; set; }
public string UserName { get; set; }
}
}
}