Implements Spec 081 provider-connection cutover. Highlights: - Adds provider connection resolution + gating for operations/verification. - Adds provider credential observer wiring. - Updates Filament tenant verify flow to block with next-steps when provider connection isn’t ready. - Adds spec docs under specs/081-provider-connection-cutover/ and extensive Spec081 test coverage. Tests: - vendor/bin/sail artisan test --compact tests/Feature/Filament/TenantSetupTest.php - Focused suites for ProviderConnections/Verification ran during implementation (see local logs). Co-authored-by: Ahmed Darrazi <ahmeddarrazi@MacBookPro.fritz.box> Reviewed-on: #98
46 lines
1.2 KiB
PHP
46 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Support;
|
|
|
|
enum OperationRunOutcome: string
|
|
{
|
|
case Pending = 'pending';
|
|
case Succeeded = 'succeeded';
|
|
case PartiallySucceeded = 'partially_succeeded';
|
|
case Blocked = 'blocked';
|
|
case Failed = 'failed';
|
|
|
|
/**
|
|
* Reserved for future use. MUST NOT be produced by feature 054.
|
|
*/
|
|
case Cancelled = 'cancelled';
|
|
|
|
public static function values(bool $includeReserved = true): array
|
|
{
|
|
$cases = self::cases();
|
|
|
|
if (! $includeReserved) {
|
|
$cases = array_filter($cases, static fn (self $case): bool => $case !== self::Cancelled);
|
|
}
|
|
|
|
return array_map(static fn (self $case): string => $case->value, $cases);
|
|
}
|
|
|
|
public static function uiLabels(bool $includeReserved = false): array
|
|
{
|
|
$labels = [
|
|
self::Pending->value => 'Pending',
|
|
self::Succeeded->value => 'Succeeded',
|
|
self::PartiallySucceeded->value => 'Partially succeeded',
|
|
self::Blocked->value => 'Blocked',
|
|
self::Failed->value => 'Failed',
|
|
];
|
|
|
|
if ($includeReserved) {
|
|
$labels[self::Cancelled->value] = 'Cancelled';
|
|
}
|
|
|
|
return $labels;
|
|
}
|
|
}
|