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>
51 lines
1.2 KiB
PHP
51 lines
1.2 KiB
PHP
<?php
|
|
/**
|
|
* POST /api/hub/channels/leave.php
|
|
*
|
|
* Leave a channel. Owners cannot leave (must transfer ownership or delete).
|
|
*
|
|
* Body:
|
|
* ChannelID int REQUIRED
|
|
* Agent string REQUIRED agent address leaving
|
|
*
|
|
* Response: { OK: true }
|
|
*/
|
|
|
|
require_once __DIR__ . '/../../helpers.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'method_not_allowed'], 405);
|
|
}
|
|
|
|
$body = readJsonBody();
|
|
|
|
$channelId = (int) ($body['ChannelID'] ?? 0);
|
|
$agent = trim($body['Agent'] ?? '');
|
|
|
|
if ($channelId <= 0) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'channel_id_required']);
|
|
}
|
|
if ($agent === '') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'agent_required']);
|
|
}
|
|
|
|
// Check membership
|
|
$membership = queryOne(
|
|
"SELECT Role FROM Hub_ChannelMembers WHERE ChannelID = ? AND AgentAddress = ?",
|
|
[$channelId, $agent]
|
|
);
|
|
|
|
if (!$membership) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'not_a_member']);
|
|
}
|
|
|
|
if ($membership['Role'] === 'owner') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'owner_cannot_leave']);
|
|
}
|
|
|
|
queryTimed(
|
|
"DELETE FROM Hub_ChannelMembers WHERE ChannelID = ? AND AgentAddress = ?",
|
|
[$channelId, $agent]
|
|
);
|
|
|
|
jsonResponse(['OK' => true]);
|