Deleting stuff

This commit is contained in:
2025-08-24 17:54:37 -07:00
parent fb0f3cc112
commit d698d4ba97
3 changed files with 33 additions and 4 deletions

View File

@@ -5,15 +5,15 @@ 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
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 AND c.deleted = 0
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' => $row['content'], '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)))));
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)))));
$conn->close();