## 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
97 lines
2.7 KiB
PHP
97 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace App\Jobs;
|
|
|
|
use App\Jobs\Operations\PolicyVersionPruneWorkerJob;
|
|
use App\Models\OperationRun;
|
|
use App\Services\OperationRunService;
|
|
use Illuminate\Bus\Queueable;
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use RuntimeException;
|
|
|
|
class BulkPolicyVersionPruneJob implements ShouldQueue
|
|
{
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
public ?OperationRun $operationRun = null;
|
|
|
|
/**
|
|
* @param array<int, mixed> $policyVersionIds
|
|
* @param array<string, mixed> $context
|
|
*/
|
|
public function __construct(
|
|
public int $tenantId,
|
|
public int $userId,
|
|
public array $policyVersionIds,
|
|
public int $retentionDays = 90,
|
|
?OperationRun $operationRun = null,
|
|
public array $context = [],
|
|
) {
|
|
$this->operationRun = $operationRun;
|
|
}
|
|
|
|
public function handle(OperationRunService $runs): void
|
|
{
|
|
if (! $this->operationRun instanceof OperationRun) {
|
|
throw new RuntimeException('OperationRun is required for BulkPolicyVersionPruneJob.');
|
|
}
|
|
|
|
$this->operationRun->refresh();
|
|
|
|
if ($this->operationRun->status === 'completed') {
|
|
return;
|
|
}
|
|
|
|
$runs->updateRun($this->operationRun, 'running');
|
|
|
|
$ids = $this->normalizeIds($this->policyVersionIds);
|
|
|
|
$runs->incrementSummaryCounts($this->operationRun, ['total' => count($ids)]);
|
|
|
|
$chunkSize = (int) config('tenantpilot.bulk_operations.chunk_size', 10);
|
|
$chunkSize = max(1, $chunkSize);
|
|
|
|
foreach (array_chunk($ids, $chunkSize) as $chunk) {
|
|
foreach ($chunk as $policyVersionId) {
|
|
dispatch(new PolicyVersionPruneWorkerJob(
|
|
tenantId: $this->tenantId,
|
|
userId: $this->userId,
|
|
policyVersionId: $policyVersionId,
|
|
retentionDays: $this->retentionDays,
|
|
operationRun: $this->operationRun,
|
|
context: $this->context,
|
|
));
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @param array<int, mixed> $ids
|
|
* @return array<int, int>
|
|
*/
|
|
private function normalizeIds(array $ids): array
|
|
{
|
|
$normalized = [];
|
|
|
|
foreach ($ids as $id) {
|
|
if (is_int($id)) {
|
|
$normalized[] = $id;
|
|
|
|
continue;
|
|
}
|
|
|
|
if (is_numeric($id)) {
|
|
$normalized[] = (int) $id;
|
|
}
|
|
}
|
|
|
|
$normalized = array_values(array_unique($normalized));
|
|
sort($normalized);
|
|
|
|
return $normalized;
|
|
}
|
|
}
|