91 lines
2.7 KiB
PHP
91 lines
2.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Support\Verification;
|
|
|
|
use App\Models\OperationRun;
|
|
|
|
final class StaleQueuedVerificationReportFactory
|
|
{
|
|
/**
|
|
* @return array<int, array<string, mixed>>
|
|
*/
|
|
public static function checks(OperationRun $run): array
|
|
{
|
|
$context = is_array($run->context ?? null) ? $run->context : [];
|
|
|
|
return [[
|
|
'key' => 'provider.connection.check',
|
|
'title' => 'Provider connection check',
|
|
'status' => 'fail',
|
|
'severity' => 'critical',
|
|
'blocking' => true,
|
|
'reason_code' => 'unknown_error',
|
|
'message' => 'Run was queued but never started. A queue worker may not be running.',
|
|
'evidence' => self::evidence($run, $context),
|
|
'next_steps' => [],
|
|
]];
|
|
}
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
public static function identity(OperationRun $run): array
|
|
{
|
|
$context = is_array($run->context ?? null) ? $run->context : [];
|
|
|
|
$identity = [];
|
|
|
|
$providerConnectionId = $context['provider_connection_id'] ?? null;
|
|
if (is_numeric($providerConnectionId)) {
|
|
$identity['provider_connection_id'] = (int) $providerConnectionId;
|
|
}
|
|
|
|
$targetScope = $context['target_scope'] ?? [];
|
|
$targetScope = is_array($targetScope) ? $targetScope : [];
|
|
|
|
$entraTenantId = $targetScope['entra_tenant_id'] ?? null;
|
|
if (is_string($entraTenantId) && trim($entraTenantId) !== '') {
|
|
$identity['entra_tenant_id'] = trim($entraTenantId);
|
|
}
|
|
|
|
return $identity;
|
|
}
|
|
|
|
/**
|
|
* @param array<string, mixed> $context
|
|
* @return array<int, array{kind: string, value: int|string}>
|
|
*/
|
|
private static function evidence(OperationRun $run, array $context): array
|
|
{
|
|
$evidence = [];
|
|
|
|
$providerConnectionId = $context['provider_connection_id'] ?? null;
|
|
if (is_numeric($providerConnectionId)) {
|
|
$evidence[] = [
|
|
'kind' => 'provider_connection_id',
|
|
'value' => (int) $providerConnectionId,
|
|
];
|
|
}
|
|
|
|
$targetScope = $context['target_scope'] ?? [];
|
|
$targetScope = is_array($targetScope) ? $targetScope : [];
|
|
|
|
$entraTenantId = $targetScope['entra_tenant_id'] ?? null;
|
|
if (is_string($entraTenantId) && trim($entraTenantId) !== '') {
|
|
$evidence[] = [
|
|
'kind' => 'entra_tenant_id',
|
|
'value' => trim($entraTenantId),
|
|
];
|
|
}
|
|
|
|
$evidence[] = [
|
|
'kind' => 'operation_run_id',
|
|
'value' => (int) $run->getKey(),
|
|
];
|
|
|
|
return $evidence;
|
|
}
|
|
}
|