150 lines
5.7 KiB
PHP
150 lines
5.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Jobs\Concerns\BridgesFailedOperationRun;
|
|
use App\Models\EnvironmentReview;
|
|
use App\Models\OperationRun;
|
|
use App\Services\AdapterRunReconciler;
|
|
use App\Services\OperationRunService;
|
|
use App\Services\EnvironmentReviews\EnvironmentReviewService;
|
|
use App\Support\OpsUx\RunFailureSanitizer;
|
|
use App\Support\OperationRunOutcome;
|
|
use App\Support\OperationRunStatus;
|
|
use App\Support\Operations\LifecycleReconciliationReason;
|
|
use App\Support\Operations\Reconciliation\EnvironmentReviewComposeDecision;
|
|
use App\Support\Operations\Reconciliation\ReconciliationResult;
|
|
use App\Support\EnvironmentReviewStatus;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Database\QueryException;
|
|
use Illuminate\Foundation\Queue\Queueable;
|
|
use Throwable;
|
|
|
|
class ComposeEnvironmentReviewJob implements ShouldQueue
|
|
{
|
|
use BridgesFailedOperationRun;
|
|
use Queueable;
|
|
|
|
public int $timeout = 240;
|
|
|
|
public bool $failOnTimeout = true;
|
|
|
|
public function __construct(
|
|
public int $environmentReviewId,
|
|
public int $operationRunId,
|
|
) {}
|
|
|
|
public function handle(
|
|
EnvironmentReviewService $service,
|
|
OperationRunService $operationRuns,
|
|
AdapterRunReconciler $adapterRunReconciler,
|
|
): void
|
|
{
|
|
$review = EnvironmentReview::query()->with(['tenant', 'evidenceSnapshot.items'])->find($this->environmentReviewId);
|
|
$operationRun = OperationRun::query()->find($this->operationRunId);
|
|
|
|
if (! $review instanceof EnvironmentReview || ! $operationRun instanceof OperationRun || ! $review->tenant) {
|
|
return;
|
|
}
|
|
|
|
if ((string) $operationRun->status === OperationRunStatus::Completed->value) {
|
|
return;
|
|
}
|
|
|
|
$adapterChange = $adapterRunReconciler->reconcileOperationRun($operationRun);
|
|
|
|
if (($adapterChange['applied'] ?? false) === true) {
|
|
return;
|
|
}
|
|
|
|
$operationRuns->updateRun($operationRun, OperationRunStatus::Running->value, OperationRunOutcome::Pending->value);
|
|
$review->update(['status' => EnvironmentReviewStatus::Draft->value]);
|
|
|
|
try {
|
|
$review = $service->compose($review);
|
|
|
|
$summary = is_array($review->summary) ? $review->summary : [];
|
|
|
|
$operationRuns->updateRun(
|
|
$operationRun,
|
|
status: OperationRunStatus::Completed->value,
|
|
outcome: OperationRunOutcome::Succeeded->value,
|
|
summaryCounts: [
|
|
'created' => 1,
|
|
'finding_count' => (int) ($summary['finding_count'] ?? 0),
|
|
'report_count' => (int) ($summary['report_count'] ?? 0),
|
|
'operation_count' => (int) ($summary['operation_count'] ?? 0),
|
|
'errors_recorded' => 0,
|
|
],
|
|
);
|
|
} catch (Throwable $throwable) {
|
|
$adapterChange = $adapterRunReconciler->reconcileOperationRun($operationRun);
|
|
|
|
if (($adapterChange['applied'] ?? false) === true) {
|
|
return;
|
|
}
|
|
|
|
if ($throwable instanceof QueryException && $this->isUniqueViolation($throwable)) {
|
|
$result = ReconciliationResult::attentionRequired(
|
|
reasonCode: LifecycleReconciliationReason::AdapterOutOfSync->value,
|
|
reasonMessage: 'TenantPilot found matching review activity, but it could not be resolved automatically.',
|
|
evidence: [
|
|
'adapter' => EnvironmentReviewComposeDecision::ADAPTER,
|
|
'exception_class' => class_basename($throwable),
|
|
'workspace_id' => (int) $operationRun->workspace_id,
|
|
'managed_environment_id' => (int) $operationRun->managed_environment_id,
|
|
'fingerprint' => (string) data_get($operationRun->context, 'review_fingerprint', ''),
|
|
],
|
|
);
|
|
|
|
$operationRuns->updateRunWithReconciliation(
|
|
run: $operationRun,
|
|
status: (string) $result->status,
|
|
outcome: (string) $result->outcome,
|
|
summaryCounts: $result->summaryCounts,
|
|
failures: $result->failures,
|
|
reasonCode: $result->reasonCode,
|
|
reasonMessage: $result->reasonMessage,
|
|
source: 'adapter_reconciler',
|
|
evidence: $result->evidence,
|
|
adapter: EnvironmentReviewComposeDecision::ADAPTER,
|
|
decision: $result->decision,
|
|
related: $result->related,
|
|
);
|
|
|
|
return;
|
|
}
|
|
|
|
if ($review->isMutable() && (int) ($review->operation_run_id ?? 0) === (int) $operationRun->getKey()) {
|
|
$review->update([
|
|
'status' => EnvironmentReviewStatus::Failed->value,
|
|
'summary' => array_merge(is_array($review->summary) ? $review->summary : [], [
|
|
'error' => RunFailureSanitizer::sanitizeMessage($throwable->getMessage()),
|
|
]),
|
|
]);
|
|
}
|
|
|
|
$operationRuns->updateRun(
|
|
$operationRun,
|
|
status: OperationRunStatus::Completed->value,
|
|
outcome: OperationRunOutcome::Failed->value,
|
|
failures: [
|
|
[
|
|
'code' => 'environment_review_compose.failed',
|
|
'message' => $throwable->getMessage(),
|
|
],
|
|
],
|
|
);
|
|
|
|
throw $throwable;
|
|
}
|
|
}
|
|
|
|
private function isUniqueViolation(QueryException $exception): bool
|
|
{
|
|
return in_array(($exception->errorInfo[0] ?? null), ['23505', '23000'], true);
|
|
}
|
|
}
|