TenantAtlas/app/Jobs/PruneOldOperationRunsJob.php
ahmido c57f680f39 feat: Workspace settings slices v1 (backup, drift, operations) (#120)
Implements Spec 098: workspace-level settings slices for Backup retention, Drift severity mapping, and Operations retention/threshold.

Spec
- specs/098-settings-slices-v1-backup-drift-ops/spec.md

What changed
- Workspace Settings page: grouped Backup/Drift/Operations sections, unset-input UX w/ helper text, per-setting reset actions (confirmed)
- Settings registry: adds/updates validation + normalization (incl. drift severity mapping normalization to lowercase)
- Backup retention: adds workspace default + floor clamp; job clamps effective keep-last up to floor
- Drift findings: optional workspace severity mapping; adds `critical` severity support + badge mapping
- Operations pruning: retention computed per workspace via settings; scheduler unchanged; stuck threshold is storage-only

Safety / Compliance notes
- Filament v5 / Livewire v4: no Livewire v3 usage; relies on existing Filament v5 + Livewire v4 stack
- Provider registration unchanged (Laravel 11+/12 uses bootstrap/providers.php)
- Destructive actions: per-setting reset uses Filament actions with confirmation
- Global search: not affected (no resource changes)
- Assets: no new assets registered; no `filament:assets` changes

Tests
- vendor/bin/sail artisan test --compact tests/Feature/SettingsFoundation/WorkspaceSettingsManageTest.php \
  tests/Feature/SettingsFoundation/WorkspaceSettingsViewOnlyTest.php \
  tests/Feature/BackupScheduling/BackupScheduleLifecycleTest.php \
  tests/Feature/Drift/DriftPolicySnapshotDriftDetectionTest.php \
  tests/Feature/Scheduling/PruneOldOperationRunsScheduleTest.php \
  tests/Unit/Badges/FindingBadgesTest.php

Formatting
- vendor/bin/sail bin pint --dirty

Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #120
2026-02-16 03:18:33 +00:00

65 lines
1.9 KiB
PHP

<?php
namespace App\Jobs;
use App\Models\OperationRun;
use App\Models\Workspace;
use App\Services\Settings\SettingsResolver;
use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Queue\SerializesModels;
class PruneOldOperationRunsJob implements ShouldQueue
{
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
/**
* Execute the job.
*/
public function handle(SettingsResolver $settingsResolver): void
{
$workspaceIds = OperationRun::query()
->whereNotNull('workspace_id')
->distinct()
->orderBy('workspace_id')
->pluck('workspace_id')
->filter(fn ($workspaceId): bool => is_numeric($workspaceId))
->map(fn ($workspaceId): int => (int) $workspaceId)
->values();
if ($workspaceIds->isEmpty()) {
return;
}
$workspaces = Workspace::query()
->whereIn('id', $workspaceIds->all())
->get()
->keyBy(fn (Workspace $workspace): int => (int) $workspace->getKey());
foreach ($workspaceIds as $workspaceId) {
$workspace = $workspaces->get($workspaceId);
if (! $workspace instanceof Workspace) {
continue;
}
$resolvedRetentionDays = $settingsResolver->resolveValue(
workspace: $workspace,
domain: 'operations',
key: 'operation_run_retention_days',
);
$retentionDays = is_numeric($resolvedRetentionDays)
? max(7, min(3650, (int) $resolvedRetentionDays))
: 90;
OperationRun::query()
->where('workspace_id', $workspaceId)
->where('created_at', '<', now()->subDays($retentionDays))
->delete();
}
}
}