## 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
87 lines
2.8 KiB
PHP
87 lines
2.8 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Database\Factories;
|
|
|
|
use App\Models\ReviewPack;
|
|
use App\Models\ManagedEnvironment;
|
|
use App\Models\EnvironmentReview;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use App\Support\EnvironmentReviewCompletenessState;
|
|
use App\Support\EnvironmentReviewStatus;
|
|
use Illuminate\Database\Eloquent\Factories\Factory;
|
|
|
|
/**
|
|
* @extends Factory<EnvironmentReview>
|
|
*/
|
|
class EnvironmentReviewFactory extends Factory
|
|
{
|
|
protected $model = EnvironmentReview::class;
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public function definition(): array
|
|
{
|
|
return [
|
|
'managed_environment_id' => ManagedEnvironment::factory()->for(Workspace::factory()),
|
|
'workspace_id' => function (array $attributes): int {
|
|
$tenantId = $attributes['managed_environment_id'] ?? null;
|
|
|
|
if (! is_numeric($tenantId)) {
|
|
return (int) Workspace::factory()->create()->getKey();
|
|
}
|
|
|
|
$tenant = ManagedEnvironment::query()->whereKey((int) $tenantId)->first();
|
|
|
|
if (! $tenant instanceof ManagedEnvironment || $tenant->workspace_id === null) {
|
|
return (int) Workspace::factory()->create()->getKey();
|
|
}
|
|
|
|
return (int) $tenant->workspace_id;
|
|
},
|
|
'evidence_snapshot_id' => null,
|
|
'current_export_review_pack_id' => null,
|
|
'operation_run_id' => null,
|
|
'initiated_by_user_id' => User::factory(),
|
|
'published_by_user_id' => null,
|
|
'superseded_by_review_id' => null,
|
|
'fingerprint' => fake()->sha256(),
|
|
'status' => EnvironmentReviewStatus::Draft->value,
|
|
'completeness_state' => EnvironmentReviewCompletenessState::Complete->value,
|
|
'summary' => [
|
|
'publish_blockers' => [],
|
|
'required_section_count' => 6,
|
|
'completed_section_count' => 6,
|
|
],
|
|
'generated_at' => now(),
|
|
'published_at' => null,
|
|
'archived_at' => null,
|
|
];
|
|
}
|
|
|
|
public function ready(): static
|
|
{
|
|
return $this->state(fn (): array => [
|
|
'status' => EnvironmentReviewStatus::Ready->value,
|
|
'completeness_state' => EnvironmentReviewCompletenessState::Complete->value,
|
|
'summary' => [
|
|
'publish_blockers' => [],
|
|
'required_section_count' => 6,
|
|
'completed_section_count' => 6,
|
|
],
|
|
]);
|
|
}
|
|
|
|
public function published(?ReviewPack $reviewPack = null): static
|
|
{
|
|
return $this->state(fn (): array => [
|
|
'current_export_review_pack_id' => $reviewPack?->getKey(),
|
|
'status' => EnvironmentReviewStatus::Published->value,
|
|
'published_at' => now(),
|
|
]);
|
|
}
|
|
}
|