Implements workspace-first enforcement and UX: - Workspace selected before tenant flows; /admin routes into choose-workspace/choose-tenant - Tenant lists and default tenant selection are scoped to current workspace - Workspaces UI is tenantless at /admin/workspaces Security hardening: - Workspaces can never have 0 owners (blocks last-owner removal/demotion) - Blocked attempts are audited with action_id=workspace_membership.last_owner_blocked + required metadata - Optional break-glass recovery page to re-assign workspace owner (audited) Tests: - Added/updated Pest feature tests covering redirects, scoping, tenantless workspaces, last-owner guards, and break-glass recovery. Notes: - Filament v5 strict Page property signatures respected in RepairWorkspaceOwners. Co-authored-by: Ahmed Darrazi <ahmeddarrazi@MacBookPro.fritz.box> Reviewed-on: #86
44 lines
1.2 KiB
PHP
44 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Services\Audit;
|
|
|
|
use App\Models\AuditLog;
|
|
use App\Models\User;
|
|
use App\Models\Workspace;
|
|
use Carbon\CarbonImmutable;
|
|
|
|
class WorkspaceAuditLogger
|
|
{
|
|
public function log(
|
|
Workspace $workspace,
|
|
string $action,
|
|
array $context = [],
|
|
?User $actor = null,
|
|
string $status = 'success',
|
|
?string $resourceType = null,
|
|
?string $resourceId = null,
|
|
?int $actorId = null,
|
|
?string $actorEmail = null,
|
|
?string $actorName = null,
|
|
): AuditLog {
|
|
$metadata = $context['metadata'] ?? [];
|
|
unset($context['metadata']);
|
|
|
|
return AuditLog::create([
|
|
'tenant_id' => null,
|
|
'workspace_id' => (int) $workspace->getKey(),
|
|
'actor_id' => $actor?->getKey() ?? $actorId,
|
|
'actor_email' => $actor?->email ?? $actorEmail,
|
|
'actor_name' => $actor?->name ?? $actorName,
|
|
'action' => $action,
|
|
'resource_type' => $resourceType,
|
|
'resource_id' => $resourceId,
|
|
'status' => $status,
|
|
'metadata' => $metadata + $context,
|
|
'recorded_at' => CarbonImmutable::now(),
|
|
]);
|
|
}
|
|
}
|