fix(tenant): check the environment wherever a uuid comes from the request

Phase 7 was scoped to guard aggregate children, which the Doctrine filter cannot
reach. Measuring first — as the plan required — moved the target: all 22 children
and their 20 repositories were already sound. Every list query anchors on its
root, and ServiceItemRepository even joins service_sections and filters on the
pair by hand. A repository-level guard would have found nothing.

The real exposure was one layer up. Where a uuid arrives from a request body or
query string, the entity it names is loaded by uuid alone, and the filter is no
help: aggregate children have no tenant column, and a panel user who never chose
an environment is not filtered at all. Three leaks, each proven by removing the
fix and watching the new tests go red:

- GET /api/v1/appointment-service-slots accepted service_item_uuids from any
  environment. Existence, bookable state and duration leaked through the error
  messages and the returned slots. The booking path in the same controller had
  guarded this since it was written; the slot path never did.
- POST /api/v1/my/appointment attached service_section_uuid, service_item_uuid,
  staff_uuid and the service list without any check, and persisted them onto the
  appointment. A write, not just a read.
- PatientService did the same in all three of its loops — pricing, session
  create, session update — so another environment's service price entered the
  invoice and its SessionService row was stored, staff included.

TenantOwnershipChecker is the single place that answers "does this belong to the
current environment?". It reads getEntityType()/getEntityId(), so ServiceItem now
delegates that pair to its section: an aggregate child exposing the tenant it
inherits. An entity that exposes no pair throws rather than returning false —
silence here builds an always-closed guard, which is its own bug.

TenantLookupInventoryTest keeps a per-file count of these lookups. It earned its
place immediately: the first run found more sites than the manual grep had, and
reviewing them turned up the third PatientService loop. StaffController looked
unguarded until read properly — ownsStaff sits two lines below the null check.

One assertion was wrong before it was right: the create-path test read
`$session['services'] ?? []`, which passes vacuously. It now counts the stored
rows through the repository, and fails without the fix.

Tests: 879 passing. PHPStan unchanged at its 17 pre-existing errors.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This commit is contained in:
hamed
2026-07-28 13:39:59 +03:30
co-authored by Claude Opus 5
parent 0ae9570850
commit d2f4b5c428
10 changed files with 718 additions and 8 deletions
+18 -5
View File
@@ -56,6 +56,7 @@ class PatientService
private readonly EntityInsurancePricingRepository $pricingRepo,
private readonly \App\Discount\Service\DiscountEngine $discountEngine,
private readonly \App\Patient\Repository\SessionAuditLogRepository $auditRepo,
private readonly \App\Shared\Tenant\TenantOwnershipChecker $tenantOwnership,
private readonly LoggerInterface $logger,
) {}
@@ -311,11 +312,12 @@ class PatientService
}
}
// جمع‌آوری service items (با احتساب تعداد)
// جمع‌آوری service items (با احتساب تعداد). سرویسِ محیط دیگر نادیده گرفته
// می‌شود، وگرنه قیمتش وارد محاسبهٔ فاکتور این محیط می‌شد.
$serviceItemsData = [];
foreach (($data['services'] ?? []) as $svc) {
$item = $this->serviceItemRepo->findByUuid($svc['service_item_uuid'] ?? '');
if ($item !== null) {
if ($this->tenantOwnership->belongsToPair($entityType, $entityId, $item)) {
$qty = max(1, (int) ($svc['quantity'] ?? 1));
$serviceItemsData[] = ['item_id' => $item->getId(), 'price_rials' => $item->getPriceRials() * $qty];
}
@@ -364,13 +366,18 @@ class PatientService
$session->addConsumable($sc);
}
// ثبت session services
// ثبت session services — سرویس و پرسنلِ محیط دیگر نادیده گرفته می‌شوند،
// همان قاعده‌ای که کالای مصرفی بالاتر رعایت می‌کند.
foreach (($data['services'] ?? []) as $svc) {
$item = $this->serviceItemRepo->findByUuid($svc['service_item_uuid'] ?? '');
if ($item === null) {
if (!$this->tenantOwnership->belongsToPair($entityType, $entityId, $item)) {
continue;
}
$staff = !empty($svc['staff_uuid']) ? $this->staffRepo->findByUuid($svc['staff_uuid']) : null;
if ($staff !== null && !$this->tenantOwnership->belongsToPair($entityType, $entityId, $staff)) {
$staff = null;
}
$qty = max(1, (int) ($svc['quantity'] ?? 1));
$ss = new SessionService($session, $item, $staff, $qty);
$this->sessionServiceRepo->save($ss);
@@ -411,9 +418,15 @@ class PatientService
$session->getServices()->removeElement($old);
}
foreach (($data['services'] ?? []) as $svc) {
// سرویس و پرسنل با uuid از بدنهٔ درخواست می‌آیند و روی SessionService
// ذخیره می‌شوند؛ بدون این بررسی، دادهٔ محیط دیگری در مراجعه می‌نشست.
$item = $this->serviceItemRepo->findByUuid($svc['service_item_uuid'] ?? '');
if ($item === null) { continue; }
if (!$this->tenantOwnership->belongsToPair($entityType, $entityId, $item)) { continue; }
$staff = !empty($svc['staff_uuid']) ? $this->staffRepo->findByUuid($svc['staff_uuid']) : null;
if ($staff !== null && !$this->tenantOwnership->belongsToPair($entityType, $entityId, $staff)) {
$staff = null;
}
$qty = max(1, (int) ($svc['quantity'] ?? 1));
$ss = new SessionService($session, $item, $staff, $qty);
$this->sessionServiceRepo->save($ss);