## Summary
Implements and polishes the Platform Ops Runbooks feature (Spec 113) — the operator control plane for safe backfills and data repair from `/system`.
## Changes
### UX Polish (Phase 7 — US4)
- **Filament-native components**: Rewrote `runbooks.blade.php` and `view-run.blade.php` using `<x-filament::section>` instead of raw Tailwind div cards. Cards now render correctly with Filament's built-in borders, shadows and dark mode.
- **System panel theme**: Created `resources/css/filament/system/theme.css` and registered `->viteTheme()` on `SystemPanelProvider`. The system panel previously had no theme CSS registered — Tailwind utility classes weren't compiled for its views, causing the warning icon SVG to expand to full container size.
- **Live scope selector**: Added `->live()` to the scope `Radio` field so "Single tenant" immediately reveals the tenant search dropdown without requiring a Submit first.
### Core Feature (Phases 1–6, previously shipped)
- `/system/ops/runbooks` — runbook catalog, preflight, run with typed confirmation + reason
- `/system/ops/runs` — run history table with status/outcome badges
- `/system/ops/runs/{id}` — run detail view with summary counts, failures, collapsible context
- `FindingsLifecycleBackfillRunbookService` — preflight + execution logic
- AllowedTenantUniverse — scopes tenant picker to non-platform tenants only
- RBAC: `platform.ops.view`, `platform.runbooks.view`, `platform.runbooks.run`, `platform.runbooks.findings.lifecycle_backfill`
- Rate-limited `/system/login` (10/min per IP+username)
- Distinct session cookie for `/system` isolation
## Test Coverage
- 16 tests / 141 assertions — all passing
- Covers: page access, RBAC, preflight, run dispatch, scope selector, run detail, run list
## Checklist
- [x] Filament v5 / Livewire v4 compliant
- [x] Provider registered in `bootstrap/providers.php`
- [x] Destructive actions require confirmation (`->requiresConfirmation()`)
- [x] System panel theme registered (`viteTheme`)
- [x] Pint clean
- [x] Tests pass
Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de>
Reviewed-on: #137
130 lines
6.3 KiB
PHP
130 lines
6.3 KiB
PHP
@php
|
|
$lastRun = $this->lastRun();
|
|
$lastRunStatusSpec = $lastRun
|
|
? \App\Support\Badges\BadgeRenderer::spec(\App\Support\Badges\BadgeDomain::OperationRunStatus, (string) $lastRun->status)
|
|
: null;
|
|
$lastRunOutcomeSpec = $lastRun && (string) $lastRun->status === 'completed'
|
|
? \App\Support\Badges\BadgeRenderer::spec(\App\Support\Badges\BadgeDomain::OperationRunOutcome, (string) $lastRun->outcome)
|
|
: null;
|
|
@endphp
|
|
|
|
<x-filament-panels::page>
|
|
<div class="space-y-6">
|
|
{{-- Operator warning banner --}}
|
|
<x-filament::section>
|
|
<div class="flex items-start gap-3">
|
|
<x-heroicon-o-exclamation-triangle class="h-6 w-6 shrink-0 text-amber-500 dark:text-amber-400" />
|
|
|
|
<div>
|
|
<p class="text-sm font-semibold text-amber-700 dark:text-amber-300">Operator warning</p>
|
|
<p class="mt-1 text-sm text-gray-600 dark:text-gray-300">
|
|
Runbooks can modify customer data across tenants. Always run preflight first, and ensure you have the correct scope selected.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</x-filament::section>
|
|
|
|
{{-- Runbook card: Rebuild Findings Lifecycle --}}
|
|
<x-filament::section>
|
|
<x-slot name="heading">
|
|
Rebuild Findings Lifecycle
|
|
</x-slot>
|
|
|
|
<x-slot name="description">
|
|
Backfills legacy findings lifecycle fields, SLA due dates, and consolidates drift duplicate findings.
|
|
</x-slot>
|
|
|
|
<x-slot name="afterHeader">
|
|
<x-filament::badge color="info" size="sm">
|
|
{{ $this->scopeLabel() }}
|
|
</x-filament::badge>
|
|
</x-slot>
|
|
|
|
<div class="space-y-4">
|
|
{{-- Last run metadata --}}
|
|
@if ($lastRun)
|
|
<div class="flex flex-wrap items-center gap-x-4 gap-y-2 rounded-lg bg-gray-50 px-4 py-3 dark:bg-white/5">
|
|
<span class="text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">Last run</span>
|
|
|
|
<span class="text-sm text-gray-700 dark:text-gray-300">
|
|
{{ $lastRun->created_at?->diffForHumans() ?? '—' }}
|
|
</span>
|
|
|
|
@if ($lastRunStatusSpec)
|
|
<x-filament::badge
|
|
:color="$lastRunStatusSpec->color"
|
|
:icon="$lastRunStatusSpec->icon"
|
|
size="sm"
|
|
>
|
|
{{ $lastRunStatusSpec->label }}
|
|
</x-filament::badge>
|
|
@endif
|
|
|
|
@if ($lastRunOutcomeSpec)
|
|
<x-filament::badge
|
|
:color="$lastRunOutcomeSpec->color"
|
|
:icon="$lastRunOutcomeSpec->icon"
|
|
size="sm"
|
|
>
|
|
{{ $lastRunOutcomeSpec->label }}
|
|
</x-filament::badge>
|
|
@endif
|
|
|
|
@if ($lastRun->initiator_name)
|
|
<span class="text-xs text-gray-500 dark:text-gray-400">
|
|
by {{ $lastRun->initiator_name }}
|
|
</span>
|
|
@endif
|
|
</div>
|
|
@endif
|
|
|
|
{{-- Preflight results --}}
|
|
@if (is_array($this->preflight))
|
|
<div class="grid grid-cols-1 gap-4 sm:grid-cols-3">
|
|
<x-filament::section>
|
|
<div class="text-center">
|
|
<p class="text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">Affected</p>
|
|
<p class="mt-2 text-3xl font-bold tabular-nums text-gray-950 dark:text-white">
|
|
{{ number_format((int) ($this->preflight['affected_count'] ?? 0)) }}
|
|
</p>
|
|
</div>
|
|
</x-filament::section>
|
|
|
|
<x-filament::section>
|
|
<div class="text-center">
|
|
<p class="text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">Total scanned</p>
|
|
<p class="mt-2 text-3xl font-bold tabular-nums text-gray-950 dark:text-white">
|
|
{{ number_format((int) ($this->preflight['total_count'] ?? 0)) }}
|
|
</p>
|
|
</div>
|
|
</x-filament::section>
|
|
|
|
<x-filament::section>
|
|
<div class="text-center">
|
|
<p class="text-xs font-semibold uppercase tracking-wider text-gray-500 dark:text-gray-400">Estimated tenants</p>
|
|
<p class="mt-2 text-3xl font-bold tabular-nums text-gray-950 dark:text-white">
|
|
{{ is_numeric($this->preflight['estimated_tenants'] ?? null) ? number_format((int) $this->preflight['estimated_tenants']) : '—' }}
|
|
</p>
|
|
</div>
|
|
</x-filament::section>
|
|
</div>
|
|
|
|
@if ((int) ($this->preflight['affected_count'] ?? 0) <= 0)
|
|
<div class="flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400">
|
|
<x-heroicon-m-check-circle class="h-5 w-5 text-success-500" />
|
|
Nothing to do for the current scope.
|
|
</div>
|
|
@endif
|
|
@else
|
|
{{-- Preflight CTA --}}
|
|
<div class="flex items-center gap-2 text-sm text-gray-500 dark:text-gray-400">
|
|
<x-heroicon-m-magnifying-glass class="h-5 w-5" />
|
|
Run <span class="mx-1 font-semibold text-gray-700 dark:text-gray-200">Preflight</span> to see how many findings would change for the selected scope.
|
|
</div>
|
|
@endif
|
|
</div>
|
|
</x-filament::section>
|
|
</div>
|
|
</x-filament-panels::page>
|
|
|