Fix leaderboards / chatroom

This commit is contained in:
2025-08-25 16:32:40 -07:00
parent 8761c74966
commit 6cca4e1a31
3 changed files with 77 additions and 11 deletions

View File

@@ -5,15 +5,35 @@ checkClientDatabaseVersion();
$conn = newConnection();
$stmt = $conn->prepare("
SELECT c.id AS chat_id, c.content, u.username, u.icon, u.overlay, u.id AS user_id, u.birdColor, u.overlayColor, c.deleted_at
FROM chats c
JOIN users u ON c.userId = u.id
WHERE u.banned = 0
ORDER BY c.id DESC LIMIT 50
SELECT c.id AS chat_id, c.content, c.deleted_at, u.id AS user_id, u.username, u.save_data
FROM chats c
JOIN users u ON c.userId = u.id
WHERE u.banned = 0
ORDER BY c.id DESC
LIMIT 50
");
$stmt->execute();
$result = $stmt->get_result();
echo encrypt(json_encode(array_reverse(array_map(fn($row) => ['username' => $row['username'], 'userid' => $row['user_id'], 'content' => (int)$row['deleted_at'] == 0 ? $row['content'] : null, 'deleted' => (int)$row['deleted_at'] != 0, 'id' => $row['chat_id'], 'icon' => $row['icon'], 'overlay' => $row['overlay'], 'birdColor' => json_decode($row['birdColor']), 'overlayColor' => json_decode($row['overlayColor'])], $result->fetch_all(MYSQLI_ASSOC)))));
$result = $stmt->get_result();
$rows = $result->fetch_all(MYSQLI_ASSOC);
$mapped = [];
foreach ($rows as $row) {
$savedata = json_decode($row['save_data'], true);
$mapped[] = [
'username' => $row['username'],
'userid' => $row['user_id'],
'content' => (int)$row['deleted_at'] == 0 ? $row['content'] : null,
'deleted' => (int)$row['deleted_at'] != 0,
'id' => $row['chat_id'],
'icon' => $savedata['bird']['icon'] ?? 1,
'overlay' => $savedata['bird']['overlay'] ?? 0,
'birdColor' => $savedata['settings']['colors']['icon'] ?? [255,255,255],
'overlayColor' => $savedata['settings']['colors']['overlay'] ?? [255,255,255],
];
}
echo encrypt(json_encode(array_reverse($mapped)));
$conn->close();