Complete backend for SprintChat Hub migration: - Messages: send, edit, delete, list (paginated cursor), thread, search - Files: upload (multipart), download, thumbnail, info, list - Users: get, getByIds, search, status (online detection) - Reactions: add, remove, list (grouped by emoji) - Pins: pin, unpin, list (with message content) - Channel stats: member/message/pinned/unread counts 4 new DB tables: Hub_Messages, Hub_Files, Hub_Reactions, Hub_PinnedPosts 21 new endpoints added to PUBLIC_ROUTES Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
48 lines
1.5 KiB
PHP
48 lines
1.5 KiB
PHP
<?php
|
|
/**
|
|
* GET /api/hub/messages/thread.php
|
|
*
|
|
* Get all replies in a thread (by ParentID), plus the root message.
|
|
*
|
|
* Query params:
|
|
* MessageID int REQUIRED the root message ID
|
|
*
|
|
* Response: { OK: true, RootMessage: {...}, Replies: [...] }
|
|
*/
|
|
|
|
require_once __DIR__ . '/../../helpers.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'method_not_allowed'], 405);
|
|
}
|
|
|
|
$messageId = (int) ($_GET['MessageID'] ?? 0);
|
|
if ($messageId <= 0) jsonResponse(['OK' => false, 'ERROR' => 'message_id_required']);
|
|
|
|
$root = queryOne("SELECT * FROM Hub_Messages WHERE ID = ? AND IsDeleted = 0", [$messageId]);
|
|
if (!$root) jsonResponse(['OK' => false, 'ERROR' => 'message_not_found']);
|
|
|
|
$replies = queryTimed(
|
|
"SELECT * FROM Hub_Messages WHERE ParentID = ? AND IsDeleted = 0 ORDER BY CreatedAt ASC",
|
|
[$messageId]
|
|
);
|
|
|
|
$formatMsg = function (array $row): array {
|
|
return [
|
|
'ID' => (int) $row['ID'],
|
|
'ChannelID' => (int) $row['ChannelID'],
|
|
'SenderAddress' => $row['SenderAddress'],
|
|
'Content' => $row['Content'],
|
|
'ParentID' => $row['ParentID'] ? (int) $row['ParentID'] : null,
|
|
'IsEdited' => (bool) $row['IsEdited'],
|
|
'CreatedAt' => toISO8601($row['CreatedAt']),
|
|
'UpdatedAt' => toISO8601($row['UpdatedAt']),
|
|
];
|
|
};
|
|
|
|
jsonResponse([
|
|
'OK' => true,
|
|
'RootMessage' => $formatMsg($root),
|
|
'Replies' => array_map($formatMsg, $replies),
|
|
'ReplyCount' => count($replies),
|
|
]);
|