40 lines
924 B
PHP
40 lines
924 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Server;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class SentinelRestarted implements ShouldBroadcast
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public ?int $teamId = null;
|
|
|
|
public ?string $version = null;
|
|
|
|
public string $serverUuid;
|
|
|
|
public function __construct(Server $server, ?string $version = null)
|
|
{
|
|
$this->teamId = $server->team_id;
|
|
$this->serverUuid = $server->uuid;
|
|
$this->version = $version;
|
|
}
|
|
|
|
public function broadcastOn(): array
|
|
{
|
|
if (is_null($this->teamId)) {
|
|
return [];
|
|
}
|
|
|
|
return [
|
|
new PrivateChannel("team.{$this->teamId}"),
|
|
];
|
|
}
|
|
}
|