39a979b1a7
backend phase 3: identity profiles, patients & nurse bank accounts Add the role-attached identity layer on top of the b2 auth spine: nurse seller profiles (guarded is_verified, read-only aggregates), thin customer payer profiles, first-class patients (tenancy-scoped), and nurse payout bank accounts hardened with an iban_hash uniqueness guard and an automated استعلام شبا IBAN-ownership inquiry. - Four usr tables via one migration (1:1 uniques, UNIQUE(iban_hash), filtered UNIQUE(nurse_id) WHERE is_primary=1, guarded is_verified, encrypted PII, soft-delete on nurse_profiles) - 15 CQRS slices + 4 role-scoped controllers; reads projected + paginated, IBAN masked (last-4); ownership-inquiry endpoints rate-limited - New IBankAccountOwnershipVerifier seam (mock deterministic شبا match) + per-domain repositories on IUnitOfWork + encrypted-PII value converters - Activate FluentValidation repo-wide (validators were never registered) - Handler unit tests + WebApplicationFactory integration tests (76 pass); contract identity-profiles.md + swagger snapshot; docs, handoff & report Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> @
35 lines
1.4 KiB
C#
35 lines
1.4 KiB
C#
using Baya.Domain.Entities.Identity;
|
|
using Baya.Domain.Entities.User;
|
|
using Microsoft.EntityFrameworkCore;
|
|
using Microsoft.EntityFrameworkCore.Metadata.Builders;
|
|
|
|
namespace Baya.Infrastructure.Persistence.Configuration.IdentityConfig;
|
|
|
|
internal sealed class NurseProfileConfig : IEntityTypeConfiguration<NurseProfile>
|
|
{
|
|
public void Configure(EntityTypeBuilder<NurseProfile> builder)
|
|
{
|
|
builder.ToTable("NurseProfiles", "usr");
|
|
|
|
builder.Property(p => p.Bio).HasMaxLength(2000);
|
|
builder.Property(p => p.EducationLevel).HasMaxLength(100);
|
|
builder.Property(p => p.EducationField).HasMaxLength(150);
|
|
builder.Property(p => p.IsVerified).HasDefaultValue(false);
|
|
builder.Property(p => p.IsAcceptingBookings).HasDefaultValue(false);
|
|
|
|
// Read-only quality aggregates — default 0, recomputed by reviews/bookings phases.
|
|
builder.Property(p => p.AverageRating).HasPrecision(3, 2).HasDefaultValue(0m);
|
|
builder.Property(p => p.TotalReviews).HasDefaultValue(0);
|
|
builder.Property(p => p.TotalCompletedBookings).HasDefaultValue(0);
|
|
|
|
// 1:1 with the owning user.
|
|
builder.HasIndex(p => p.UserId).IsUnique();
|
|
builder.HasOne(p => p.User)
|
|
.WithOne()
|
|
.HasForeignKey<NurseProfile>(p => p.UserId)
|
|
.IsRequired();
|
|
|
|
builder.HasQueryFilter(p => p.DeletedAt == null);
|
|
}
|
|
}
|