mirror of https://github.com/pixelfed/pixelfed.git
52 lines
1.2 KiB
PHP
52 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace App\Events\LiveStream;
|
|
|
|
use Illuminate\Broadcasting\Channel;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Broadcasting\PresenceChannel;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
use App\Models\LiveStream;
|
|
|
|
class PinChatMessage implements ShouldBroadcast
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $livestream;
|
|
public $chatmsg;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(LiveStream $livestream, $chatmsg)
|
|
{
|
|
$this->livestream = $livestream;
|
|
$this->chatmsg = $chatmsg;
|
|
}
|
|
|
|
/**
|
|
* Get the channels the event should broadcast on.
|
|
*
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
*/
|
|
public function broadcastOn()
|
|
{
|
|
return new Channel('live.chat.' . $this->livestream->profile_id);
|
|
}
|
|
|
|
public function broadcastAs()
|
|
{
|
|
return 'chat.pin-message';
|
|
}
|
|
|
|
public function broadcastWith()
|
|
{
|
|
return $this->chatmsg;
|
|
}
|
|
}
|