## Summary - move the Laravel application into `apps/platform` and keep the repository root for orchestration, docs, and tooling - update the local command model, Sail/Docker wiring, runtime paths, and ignore rules around the new platform location - add relocation quickstart/contracts plus focused smoke coverage for bootstrap, command model, routes, and runtime behavior ## Validation - `cd apps/platform && ./vendor/bin/sail artisan test --compact tests/Feature/PlatformRelocation` - integrated browser smoke validated `/up`, `/`, `/admin`, `/admin/choose-workspace`, and tenant route semantics for `200`, `403`, and `404` ## Remaining Rollout Checks - validate Dokploy build context and working-directory assumptions against the new `apps/platform` layout - confirm web, queue, and scheduler processes all start from the expected working directory in staging/production - verify no legacy volume mounts or asset-publish paths still point at the old root-level `public/` or `storage/` locations Co-authored-by: Ahmed Darrazi <ahmed.darrazi@live.de> Reviewed-on: #213
92 lines
3.2 KiB
PHP
92 lines
3.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Filament\System\Widgets;
|
|
|
|
use App\Models\OperationRun;
|
|
use App\Models\Tenant;
|
|
use App\Models\Workspace;
|
|
use App\Support\OperationCatalog;
|
|
use App\Support\OperationRunOutcome;
|
|
use App\Support\OperationRunStatus;
|
|
use App\Support\System\SystemOperationRunLinks;
|
|
use App\Support\SystemConsole\SystemConsoleWindow;
|
|
use Filament\Widgets\Widget;
|
|
use Illuminate\Support\Collection;
|
|
|
|
class ControlTowerTopOffenders extends Widget
|
|
{
|
|
protected static bool $isLazy = false;
|
|
|
|
protected int|string|array $columnSpan = 'full';
|
|
|
|
protected string $view = 'filament.system.widgets.control-tower-top-offenders';
|
|
|
|
/**
|
|
* @return array<string, mixed>
|
|
*/
|
|
protected function getViewData(): array
|
|
{
|
|
$window = SystemConsoleWindow::fromNullable((string) request()->query('window'));
|
|
$start = $window->startAt();
|
|
|
|
/** @var Collection<int, OperationRun> $grouped */
|
|
$grouped = OperationRun::query()
|
|
->selectRaw('workspace_id, tenant_id, type, COUNT(*) AS failed_count')
|
|
->where('created_at', '>=', $start)
|
|
->where('status', OperationRunStatus::Completed->value)
|
|
->where('outcome', OperationRunOutcome::Failed->value)
|
|
->groupBy('workspace_id', 'tenant_id', 'type')
|
|
->orderByDesc('failed_count')
|
|
->limit(10)
|
|
->get();
|
|
|
|
$workspaceIds = $grouped
|
|
->pluck('workspace_id')
|
|
->filter(fn ($value): bool => is_numeric($value))
|
|
->map(fn ($value): int => (int) $value)
|
|
->unique()
|
|
->values()
|
|
->all();
|
|
|
|
$tenantIds = $grouped
|
|
->pluck('tenant_id')
|
|
->filter(fn ($value): bool => is_numeric($value))
|
|
->map(fn ($value): int => (int) $value)
|
|
->unique()
|
|
->values()
|
|
->all();
|
|
|
|
$workspaceNames = Workspace::query()
|
|
->whereIn('id', $workspaceIds)
|
|
->pluck('name', 'id')
|
|
->all();
|
|
|
|
$tenantNames = Tenant::query()
|
|
->whereIn('id', $tenantIds)
|
|
->pluck('name', 'id')
|
|
->all();
|
|
|
|
return [
|
|
'windowLabel' => SystemConsoleWindow::options()[$window->value] ?? 'Last 24 hours',
|
|
'offenders' => $grouped->map(function (OperationRun $record) use ($workspaceNames, $tenantNames): array {
|
|
$workspaceId = is_numeric($record->workspace_id) ? (int) $record->workspace_id : null;
|
|
$tenantId = is_numeric($record->tenant_id) ? (int) $record->tenant_id : null;
|
|
|
|
return [
|
|
'workspace_label' => $workspaceId !== null
|
|
? ($workspaceNames[$workspaceId] ?? ('Workspace #'.$workspaceId))
|
|
: 'Unknown workspace',
|
|
'tenant_label' => $tenantId !== null
|
|
? ($tenantNames[$tenantId] ?? ('Tenant #'.$tenantId))
|
|
: 'Tenantless',
|
|
'operation_label' => OperationCatalog::label((string) $record->type),
|
|
'failed_count' => (int) $record->getAttribute('failed_count'),
|
|
];
|
|
}),
|
|
'runsUrl' => SystemOperationRunLinks::index(),
|
|
];
|
|
}
|
|
}
|