void.cat/VoidCat/Services/Users/UserManager.cs
2022-06-08 17:17:53 +01:00

65 lines
2.0 KiB
C#

using VoidCat.Model;
using VoidCat.Services.Abstractions;
namespace VoidCat.Services.Users;
/// <inheritdoc />
public class UserManager : IUserManager
{
private readonly IUserStore _store;
private readonly IEmailVerification _emailVerification;
private static bool _checkFirstRegister;
public UserManager(IUserStore store, IEmailVerification emailVerification)
{
_store = store;
_emailVerification = emailVerification;
}
/// <inheritdoc />
public async ValueTask<InternalVoidUser> Login(string email, string password)
{
var userId = await _store.LookupUser(email);
if (!userId.HasValue) throw new InvalidOperationException("User does not exist");
var user = await _store.GetPrivate(userId.Value);
if (!(user?.CheckPassword(password) ?? false)) throw new InvalidOperationException("User does not exist");
user.LastLogin = DateTimeOffset.UtcNow;
await _store.UpdateLastLogin(user.Id, DateTime.UtcNow);
return user;
}
/// <inheritdoc />
public async ValueTask<InternalVoidUser> Register(string email, string password)
{
var existingUser = await _store.LookupUser(email);
if (existingUser != Guid.Empty && existingUser != null)
throw new InvalidOperationException("User already exists");
var newUser = new InternalVoidUser
{
Id = Guid.NewGuid(),
Email = email,
Password = password.HashPassword(),
Created = DateTimeOffset.UtcNow,
LastLogin = DateTimeOffset.UtcNow
};
// automatically set first user to admin
if (!_checkFirstRegister)
{
_checkFirstRegister = true;
var users = await _store.ListUsers(new(0, 1));
if (users.TotalResults == 0)
{
newUser.Roles.Add(Roles.Admin);
}
}
await _store.Set(newUser.Id, newUser);
await _emailVerification.SendNewCode(newUser);
return newUser;
}
}