Files
ladill-meet/app/Services/Meet/ParticipantPresenter.php
T
isaaccladandCursor 7ae26a467c
Deploy Ladill Meet / deploy (push) Successful in 47s
Add kiosk join/leave pages, waiting room, and meeting feedback.
Redesign public join flows on the Frontdesk kiosk template, enforce host
admission when waiting room is enabled, and collect star ratings after leave.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-01 13:33:48 +00:00

66 lines
1.9 KiB
PHP

<?php
namespace App\Services\Meet;
use App\Models\Participant;
use App\Models\User;
use Illuminate\Support\Collection;
class ParticipantPresenter
{
/**
* @param Collection<int, Participant> $participants
*/
public static function avatarMap(Collection $participants, ?string $roomHostUserRef = null): Collection
{
$refs = $participants->pluck('user_ref')->filter();
if ($roomHostUserRef) {
$refs = $refs->push($roomHostUserRef)->unique();
}
if ($refs->isEmpty()) {
return collect();
}
return User::query()
->whereIn('public_id', $refs->all())
->get()
->keyBy('public_id');
}
/**
* @return array<string, mixed>
*/
public static function toArray(Participant $participant, Collection $avatars, ?string $roomHostUserRef = null): array
{
return [
'uuid' => $participant->uuid,
'display_name' => $participant->display_name,
'role' => $participant->role,
'status' => $participant->status,
'hand_raised' => $participant->hand_raised,
'is_muted' => $participant->is_muted,
'is_video_off' => $participant->is_video_off,
'breakout_room_id' => $participant->breakout_room_id,
'avatar_url' => self::avatarUrl($participant, $avatars, $roomHostUserRef),
];
}
public static function avatarUrl(Participant $participant, Collection $avatars, ?string $roomHostUserRef = null): ?string
{
if ($participant->user_ref) {
$url = $avatars->get($participant->user_ref)?->avatarUrl();
if ($url) {
return $url;
}
}
if (in_array($participant->role, ['host', 'co_host'], true) && $roomHostUserRef) {
return $avatars->get($roomHostUserRef)?->avatarUrl();
}
return null;
}
}