![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/.cursor-server/data/User/History/19d507c6/ |
<?php
/**
* Get stream queue
*/
// Get stream for this station
$stmt = $pdo->prepare("SELECT id FROM radio_streams WHERE station_id = ?");
$stmt->execute([$station['id']]);
$stream = $stmt->fetch();
if (!$stream) {
http_response_code(404);
echo json_encode(['error' => 'No stream found']);
exit;
}
$limit = isset($_GET['limit']) ? (int)$_GET['limit'] : 20;
$stmt = $pdo->prepare("
SELECT q.*, mt.title, mt.audio_url, mt.image_url, mt.duration,
u.name as artist_name
FROM radio_stream_queue q
JOIN music_tracks mt ON q.track_id = mt.id
LEFT JOIN users u ON mt.user_id = u.id
WHERE q.stream_id = ? AND q.played_at IS NULL
ORDER BY q.priority DESC, q.vote_count DESC, q.queued_at ASC
LIMIT ?
");
$stmt->execute([$stream['id'], $limit]);
$queue = $stmt->fetchAll();
echo json_encode([
'queue' => $queue,
'count' => count($queue)
]);