- Add EF Core migrations for initial schema (clubs, members, work_items, shifts, shift_signups) - Implement RLS policies with SET LOCAL for tenant isolation - Add Finbuckle multi-tenant middleware with ClaimStrategy + HeaderStrategy fallback - Create TenantValidationMiddleware to enforce JWT claims match X-Tenant-Id header - Add tenant-aware DB interceptors (SaveChangesTenantInterceptor, TenantDbConnectionInterceptor) - Configure AppDbContext with tenant scoping and RLS support - Add test infrastructure: CustomWebApplicationFactory, TestAuthHandler, DatabaseFixture - Write TDD integration tests for multi-tenant isolation and RLS enforcement - Add health check null safety for connection string Tasks: 7 (PostgreSQL schema + migrations + RLS), 8 (Finbuckle multi-tenancy + validation), 12 (test infrastructure)
54 lines
1.4 KiB
C#
54 lines
1.4 KiB
C#
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
using WorkClub.Domain.Entities;
|
|
|
|
namespace WorkClub.Infrastructure.Data.Configurations;
|
|
|
|
public class MemberConfiguration : IEntityTypeConfiguration<Member>
|
|
{
|
|
public void Configure(EntityTypeBuilder<Member> builder)
|
|
{
|
|
builder.ToTable("members");
|
|
|
|
builder.HasKey(m => m.Id);
|
|
|
|
builder.Property(m => m.TenantId)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(m => m.ExternalUserId)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(m => m.DisplayName)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(m => m.Email)
|
|
.IsRequired()
|
|
.HasMaxLength(200);
|
|
|
|
builder.Property(m => m.Role)
|
|
.IsRequired()
|
|
.HasConversion<int>();
|
|
|
|
builder.Property(m => m.ClubId)
|
|
.IsRequired();
|
|
|
|
builder.Property(m => m.CreatedAt)
|
|
.IsRequired();
|
|
|
|
builder.Property(m => m.UpdatedAt)
|
|
.IsRequired();
|
|
|
|
builder.HasIndex(m => m.TenantId)
|
|
.HasDatabaseName("ix_members_tenant_id");
|
|
|
|
builder.HasIndex(m => m.ClubId)
|
|
.HasDatabaseName("ix_members_club_id");
|
|
|
|
builder.HasIndex(m => new { m.TenantId, m.ExternalUserId })
|
|
.HasDatabaseName("ix_members_tenant_external_user");
|
|
}
|
|
}
|