Files
backend/app/Jobs/SimulateCycleCompletion.php
T
2026-06-28 12:29:53 +02:00

90 lines
2.9 KiB
PHP

<?php
namespace App\Jobs;
use App\Models\Machine;
use App\Models\MachineEvent;
use App\Models\MachineStatusHistory;
use App\Models\Wash;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Queue\Queueable;
use Illuminate\Support\Facades\DB;
class SimulateCycleCompletion implements ShouldQueue
{
use Queueable;
public function __construct(
public int $machineId,
public int $machineCommandId,
public ?int $washId = null,
) {}
public function handle(): void
{
DB::transaction(function () {
$machine = Machine::query()->whereKey($this->machineId)->lockForUpdate()->first();
if ($machine === null || $machine->status !== 'running') {
return;
}
$provider = config('laverie.simulation.provider_name', 'simulated');
$previousStatus = $machine->status;
$machine->update([
'status' => 'available',
'current_user_id' => null,
'cycle_started_at' => null,
'cycle_ends_at' => null,
'last_heartbeat_at' => now(),
]);
MachineStatusHistory::query()->create([
'machine_id' => $machine->id,
'previous_status' => $previousStatus,
'new_status' => 'available',
'source' => $provider,
'reason' => 'simulated_cycle_completion',
'created_at' => now(),
]);
MachineEvent::query()->create([
'machine_id' => $machine->id,
'provider' => $provider,
'event_type' => 'cycle_completed',
'payload' => [
'machine_command_id' => $this->machineCommandId,
'wash_id' => $this->washId,
'simulated' => true,
],
'occurred_at' => now(),
'received_at' => now(),
'processed_at' => now(),
'processing_status' => 'processed',
]);
if ($this->washId !== null) {
$wash = Wash::query()->whereKey($this->washId)->lockForUpdate()->first();
if ($wash !== null && $wash->status === 'running') {
$startedAt = $wash->started_at ?? now();
$endedAt = now();
$wash->update([
'status' => 'completed',
'ended_at' => $endedAt,
'duration_minutes' => max(1, (int) $startedAt->diffInMinutes($endedAt)),
]);
if ($wash->booking_id !== null) {
\App\Models\Booking::query()
->whereKey($wash->booking_id)
->update(['status' => 'completed']);
}
}
}
});
}
}