2023-08-16 00:43:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Lib\Events;
|
|
|
|
|
2023-10-16 15:41:37 +02:00
|
|
|
use App\Lib\JobMiddleware\JobChannels;
|
2023-08-16 00:43:28 +02:00
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcastNow;
|
|
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2023-08-17 12:46:48 +02:00
|
|
|
use Ramsey\Uuid\UuidInterface;
|
2023-08-16 00:43:28 +02:00
|
|
|
|
|
|
|
class JobEvent implements ShouldBroadcastNow
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
|
|
public string $message = '';
|
|
|
|
|
2023-10-16 15:41:37 +02:00
|
|
|
final private function __construct(public UuidInterface $jobId)
|
2023-08-16 00:43:28 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2023-10-16 15:41:37 +02:00
|
|
|
public static function on(UuidInterface $jobId): static
|
2023-08-16 00:43:28 +02:00
|
|
|
{
|
2023-10-16 15:41:37 +02:00
|
|
|
return new static($jobId);
|
2023-08-16 00:43:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public function withMessage(string $message): static
|
|
|
|
{
|
|
|
|
$this->message = $message;
|
|
|
|
|
|
|
|
return $this;
|
|
|
|
}
|
|
|
|
|
2023-08-17 12:46:48 +02:00
|
|
|
public function dispatch(): void
|
|
|
|
{
|
|
|
|
event($this);
|
|
|
|
}
|
|
|
|
|
2023-08-16 00:43:28 +02:00
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
2023-08-17 12:46:48 +02:00
|
|
|
* @return array<int, Channel>
|
2023-08-16 00:43:28 +02:00
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
2023-08-17 12:46:48 +02:00
|
|
|
return [
|
|
|
|
new Channel('jobs'),
|
|
|
|
];
|
2023-08-16 00:43:28 +02:00
|
|
|
}
|
|
|
|
}
|