Files
chatroom/app/Events/UserMuted.php
lkddi 50fc804402 feat: 实现挂机修仙、排行榜、大厅重构与全站留言板系统
- (Phase 8) 后台各维度管理与配置
- (Phase 9) 全自动静默挂机修仙升级
- (Phase 9) 四大维度风云排行榜页面
- (Phase 10) 全站留言板与悄悄话私信功能
- 运行 Pint 代码格式化
2026-02-26 13:35:38 +08:00

66 lines
1.7 KiB
PHP

<?php
/**
* 文件功能:用户被封口/解封广播事件
*
* @author ChatRoom Laravel
*
* @version 1.0.0
*/
namespace App\Events;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class UserMuted implements ShouldBroadcast
{
use Dispatchable, InteractsWithSockets, SerializesModels;
/**
* Create a new event instance.
*
* @param int $roomId 房间ID
* @param string $username 被封口的用户昵称
* @param int $muteTime 封口时长(如 10 分钟),如果为 0 则是解封
*/
public function __construct(
public readonly int $roomId,
public readonly string $username,
public readonly int $muteTime,
) {}
/**
* Get the channels the event should broadcast on.
*
* @return array<int, \Illuminate\Broadcasting\Channel>
*/
public function broadcastOn(): array
{
return [
new PresenceChannel('room.'.$this->roomId),
];
}
/**
* 获取广播时的数据
*
* @return array<string, mixed>
*/
public function broadcastWith(): array
{
$statusMessage = $this->muteTime > 0
? "用户 [{$this->username}] 已被系统封口 {$this->muteTime} 次发言时间。"
: "用户 [{$this->username}] 已被解除封口。";
return [
'username' => $this->username,
'mute_time' => $this->muteTime,
'message' => $statusMessage,
];
}
}