New endpoints under /api/hub/channels/: - create.php: Create channel with type (public/private/direct), auto-add creator as owner - list.php: List channels with filters (type, agent membership, archived, pagination) - get.php: Get channel by ID or Name, includes member list - update.php: Update display name, purpose, archive status (admin/owner only) - delete.php: Hard-delete channel (owner only), FK cascade removes members - members.php: List channel members with agent info - join.php: Join public channels (private requires invite) - leave.php: Leave channel (owners blocked from leaving) Database: Hub_Channels + Hub_ChannelMembers tables with FK cascade. Task #59 (T51-Sub1) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
54 lines
1.6 KiB
PHP
54 lines
1.6 KiB
PHP
<?php
|
|
/**
|
|
* GET /api/hub/channels/members.php
|
|
*
|
|
* List members of a channel.
|
|
*
|
|
* Query params:
|
|
* ChannelID int REQUIRED
|
|
*
|
|
* Response: { OK: true, Members: [...] }
|
|
*/
|
|
|
|
require_once __DIR__ . '/../../helpers.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'GET') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'method_not_allowed'], 405);
|
|
}
|
|
|
|
$channelId = (int) ($_GET['ChannelID'] ?? 0);
|
|
if ($channelId <= 0) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'channel_id_required']);
|
|
}
|
|
|
|
// Verify channel exists
|
|
$channel = queryOne("SELECT ID FROM Hub_Channels WHERE ID = ?", [$channelId]);
|
|
if (!$channel) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'channel_not_found'], 404);
|
|
}
|
|
|
|
$members = queryTimed(
|
|
"SELECT m.AgentAddress, m.Role, m.JoinedAt, m.LastViewedAt,
|
|
a.AgentName, a.AgentType, a.Role AS AgentRole, a.IsActive
|
|
FROM Hub_ChannelMembers m
|
|
LEFT JOIN Sprinter_Agents a ON a.FullAddress = m.AgentAddress
|
|
WHERE m.ChannelID = ?
|
|
ORDER BY m.JoinedAt ASC",
|
|
[$channelId]
|
|
);
|
|
|
|
$list = [];
|
|
foreach ($members as $m) {
|
|
$list[] = [
|
|
'AgentAddress' => $m['AgentAddress'],
|
|
'AgentName' => $m['AgentName'] ?? '',
|
|
'AgentType' => $m['AgentType'] ?? '',
|
|
'AgentRole' => $m['AgentRole'] ?? '',
|
|
'IsActive' => isset($m['IsActive']) ? (bool) $m['IsActive'] : null,
|
|
'ChannelRole' => $m['Role'],
|
|
'JoinedAt' => toISO8601($m['JoinedAt']),
|
|
'LastViewedAt' => $m['LastViewedAt'] ? toISO8601($m['LastViewedAt']) : null,
|
|
];
|
|
}
|
|
|
|
jsonResponse(['OK' => true, 'Members' => $list, 'Total' => count($list)]);
|