TenantAtlas/apps/platform/app/Models/EnvironmentReviewSection.php
ahmido 292d555eac refactor: consolidate internal tenant model naming (#355)
## Summary
- consolidate internal platform naming from `Tenant` to `Environment` / `ManagedEnvironment` across models, controllers, services, and Filament resources
- rename environment-scoped UI surfaces such as dashboards, chooser flows, navigation, and related widgets to match the updated environment-first domain language
- align middleware, onboarding/review lifecycle services, jobs, and route/context controllers with the new environment-scoped architecture

## Validation
- not rerun as part of this commit/push/PR request

## Notes
- branch is 1 commit ahead of `platform-dev`
- main commit: `refactor: consolidate internal tenant model naming`

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #355
2026-05-14 11:13:28 +00:00

94 lines
2.4 KiB
PHP

<?php
declare(strict_types=1);
namespace App\Models;
use App\Support\EnvironmentReviewCompletenessState;
use App\Support\Governance\Controls\ComplianceEvidenceMappingV1;
use Illuminate\Database\Eloquent\Builder;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class EnvironmentReviewSection extends Model
{
use HasFactory;
protected $guarded = [];
/**
* @return array<string, string>
*/
protected function casts(): array
{
return [
'required' => 'boolean',
'summary_payload' => 'array',
'render_payload' => 'array',
'measured_at' => 'datetime',
];
}
/**
* @return BelongsTo<EnvironmentReview, $this>
*/
public function environmentReview(): BelongsTo
{
return $this->belongsTo(EnvironmentReview::class);
}
/**
* @return BelongsTo<Workspace, $this>
*/
public function workspace(): BelongsTo
{
return $this->belongsTo(Workspace::class);
}
/**
* @return BelongsTo<ManagedEnvironment, $this>
*/
public function tenant(): BelongsTo
{
return $this->belongsTo(ManagedEnvironment::class, 'managed_environment_id');
}
/**
* @param Builder<self> $query
* @return Builder<self>
*/
public function scopeRequired(Builder $query): Builder
{
return $query->where('required', true);
}
public function completenessEnum(): EnvironmentReviewCompletenessState
{
return EnvironmentReviewCompletenessState::tryFrom((string) $this->completeness_state)
?? EnvironmentReviewCompletenessState::Missing;
}
public function isControlInterpretation(): bool
{
return (string) $this->section_key === ComplianceEvidenceMappingV1::SECTION_KEY;
}
/**
* @return list<array<string, mixed>>
*/
public function controlInterpretationEntries(): array
{
if (! $this->isControlInterpretation()) {
return [];
}
$renderPayload = is_array($this->render_payload) ? $this->render_payload : [];
$entries = $renderPayload['entries'] ?? [];
return is_array($entries)
? array_values(array_filter($entries, static fn (mixed $entry): bool => is_array($entry)))
: [];
}
}