@
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> @
This commit is contained in:
@@ -10,6 +10,24 @@ public sealed class SeamOptions
|
||||
|
||||
public FieldEncryptionOptions FieldEncryption { get; set; } = new();
|
||||
public ObjectStorageOptions ObjectStorage { get; set; } = new();
|
||||
public BankOwnershipOptions BankOwnership { get; set; } = new();
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Tunes the mock <c>IBankAccountOwnershipVerifier</c> (استعلام شبا). A submitted IBAN equal to
|
||||
/// <see cref="MismatchIban"/> returns an ownership mismatch so the payout-gating path is testable; every
|
||||
/// other IBAN returns a match. The real vendor implementation ignores these.
|
||||
/// </summary>
|
||||
public sealed class BankOwnershipOptions
|
||||
{
|
||||
/// <summary>The designated test IBAN that returns <c>matched_national_id = false</c>.</summary>
|
||||
public string MismatchIban { get; set; } = "IR000000000000000000000000";
|
||||
|
||||
/// <summary>The account-holder name the mock echoes back for a matching inquiry.</summary>
|
||||
public string MatchedHolderName { get; set; } = "Verified Account Holder";
|
||||
|
||||
/// <summary>The account-holder name the mock returns for the mismatch IBAN.</summary>
|
||||
public string MismatchHolderName { get; set; } = "Unmatched Account Holder";
|
||||
}
|
||||
|
||||
public sealed class FieldEncryptionOptions
|
||||
|
||||
Reference in New Issue
Block a user