## Summary - amend the operator UI constitution and related SpecKit templates for the new UI/UX governance rules - add Spec 168 artifacts plus the tenant governance aggregate implementation used by the tenant dashboard, banner, and baseline compare landing surfaces - normalize Filament action surfaces around clickable-row inspection, grouped secondary actions, and explicit action-surface declarations across enrolled resources and pages - fix post-suite regressions in membership cache priming, finding workflow state refresh, tenant review derived-state invalidation, and tenant-bound backup-set related navigation ## Commit Series - `docs: amend operator UI constitution` - `spec: add tenant governance aggregate contract` - `feat: add tenant governance aggregate contract` - `refactor: normalize filament action surfaces` - `fix: resolve post-suite state regressions` ## Testing - `vendor/bin/sail artisan test --compact` - Result: `3176 passed, 8 skipped (17384 assertions)` ## Notes - Livewire v4 / Filament v5 stack remains unchanged - no provider registration changes; `bootstrap/providers.php` remains the relevant location - no new global-search resources or asset-registration changes in this branch Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #199
88 lines
3.5 KiB
PHP
88 lines
3.5 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\System\Pages\Security;
|
|
|
|
use App\Models\AuditLog;
|
|
use App\Models\PlatformUser;
|
|
use App\Support\Auth\PlatformCapabilities;
|
|
use App\Support\Ui\ActionSurface\ActionSurfaceDeclaration;
|
|
use App\Support\Ui\ActionSurface\Enums\ActionSurfaceProfile;
|
|
use App\Support\Ui\ActionSurface\Enums\ActionSurfaceSlot;
|
|
use Filament\Pages\Page;
|
|
use Filament\Tables\Columns\TextColumn;
|
|
use Filament\Tables\Concerns\InteractsWithTable;
|
|
use Filament\Tables\Contracts\HasTable;
|
|
use Filament\Tables\Table;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
|
|
class AccessLogs extends Page implements HasTable
|
|
{
|
|
use InteractsWithTable;
|
|
|
|
protected static ?string $navigationLabel = 'Access logs';
|
|
|
|
protected static string|\BackedEnum|null $navigationIcon = 'heroicon-o-shield-check';
|
|
|
|
protected static string|\UnitEnum|null $navigationGroup = 'Security';
|
|
|
|
protected static ?string $slug = 'security/access-logs';
|
|
|
|
protected string $view = 'filament.system.pages.security.access-logs';
|
|
|
|
public static function actionSurfaceDeclaration(): ActionSurfaceDeclaration
|
|
{
|
|
return ActionSurfaceDeclaration::forPage(ActionSurfaceProfile::RunLog)
|
|
->exempt(ActionSurfaceSlot::ListHeader, 'Access logs remain scan-first and do not expose page header actions.')
|
|
->exempt(ActionSurfaceSlot::InspectAffordance, 'Access logs intentionally keep auth and break-glass events inline without a separate inspect view.')
|
|
->exempt(ActionSurfaceSlot::ListBulkMoreGroup, 'Access logs are immutable and intentionally omit bulk actions.')
|
|
->satisfy(ActionSurfaceSlot::ListEmptyState, 'The empty state explains when no platform auth or break-glass events match the current log scope.')
|
|
->exempt(ActionSurfaceSlot::DetailHeader, 'The access log page does not open per-record detail headers; review stays inline in the table.');
|
|
}
|
|
|
|
public static function canAccess(): bool
|
|
{
|
|
$user = auth('platform')->user();
|
|
|
|
return $user instanceof PlatformUser
|
|
&& $user->hasCapability(PlatformCapabilities::CONSOLE_VIEW);
|
|
}
|
|
|
|
public function mount(): void
|
|
{
|
|
$this->mountInteractsWithTable();
|
|
}
|
|
|
|
public function table(Table $table): Table
|
|
{
|
|
return $table
|
|
->defaultSort('recorded_at', 'desc')
|
|
->paginated(\App\Support\Filament\TablePaginationProfiles::customPage())
|
|
->query(function (): Builder {
|
|
return AuditLog::query()
|
|
->where(function (Builder $query): void {
|
|
$query
|
|
->where('action', 'platform.auth.login')
|
|
->orWhere('action', 'like', 'platform.break_glass.%');
|
|
});
|
|
})
|
|
->columns([
|
|
TextColumn::make('recorded_at')
|
|
->label('Recorded')
|
|
->since(),
|
|
TextColumn::make('action')
|
|
->label('Action')
|
|
->searchable(),
|
|
TextColumn::make('status')
|
|
->badge()
|
|
->color(fn (?string $state): string => $state === 'failure' ? 'danger' : 'success'),
|
|
TextColumn::make('actor_email')
|
|
->label('Actor')
|
|
->formatStateUsing(fn (?string $state): string => $state ?: 'Unknown'),
|
|
])
|
|
->emptyStateHeading('No access logs found')
|
|
->emptyStateDescription('Platform login and break-glass events will appear here.');
|
|
}
|
|
}
|