Refactor authentication system to use MongoDB
Some checks failed
Publish Container / publish (push) Has been cancelled

- Removed Entity Framework Core identity schema and related migrations.
- Introduced MongoDB-based authentication service with user seeding functionality.
- Updated Program.cs to configure authentication and authorization using cookies.
- Created new Login.razor component for user login interface.
- Added RedirectToLogin component for handling unauthorized access.
- Updated Dockerfile and docker-compose files for development and production environments.
- Removed SQLite connection strings and related configurations.
- Added MongoDB connection settings in appsettings.json and Docker configurations.
- Implemented IMongoAuthService interface and MongoAuthService class for user management.
- Created MongoAuthUser model for MongoDB user representation.
This commit is contained in:
MaddoScientisto 2026-03-16 21:54:44 +01:00
commit 7029e374cc
64 changed files with 338 additions and 3556 deletions

View file

@ -1,22 +1,20 @@
using Microsoft.AspNetCore.Identity;
using Microsoft.Extensions.Options;
using WorkTracker.Configuration;
using WorkTracker.Data;
namespace WorkTracker.Services.Auth;
public sealed class SingleUserSeedService : IHostedService
{
private readonly IServiceProvider serviceProvider;
private readonly IMongoAuthService authService;
private readonly IOptions<SingleUserOptions> options;
private readonly ILogger<SingleUserSeedService> logger;
public SingleUserSeedService(
IServiceProvider serviceProvider,
IMongoAuthService authService,
IOptions<SingleUserOptions> options,
ILogger<SingleUserSeedService> logger)
{
this.serviceProvider = serviceProvider;
this.authService = authService;
this.options = options;
this.logger = logger;
}
@ -28,33 +26,14 @@ public sealed class SingleUserSeedService : IHostedService
return;
}
using var scope = serviceProvider.CreateScope();
var userManager = scope.ServiceProvider.GetRequiredService<UserManager<ApplicationUser>>();
var configuredEmail = options.Value.Email;
var existingUser = await userManager.FindByEmailAsync(configuredEmail);
if (existingUser is not null)
try
{
return;
await authService.EnsureSeedUserAsync(cancellationToken);
}
var user = new ApplicationUser
catch (Exception ex)
{
UserName = configuredEmail,
Email = configuredEmail,
EmailConfirmed = true
};
var result = await userManager.CreateAsync(user, options.Value.Password);
if (!result.Succeeded)
{
var errors = string.Join("; ", result.Errors.Select(x => x.Description));
logger.LogError("Unable to seed single user account {Email}. Errors: {Errors}", configuredEmail, errors);
return;
logger.LogError(ex, "Unable to seed MongoDB single user account {Email}", options.Value.Email);
}
logger.LogInformation("Seeded single user account {Email}", configuredEmail);
}
public Task StopAsync(CancellationToken cancellationToken) => Task.CompletedTask;