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.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
/**
|
|
* POST /api/hub/channels/delete.php
|
|
*
|
|
* Delete (hard-delete) a channel. Only the owner can delete.
|
|
* For soft-delete, use update.php with IsArchived=true instead.
|
|
*
|
|
* Body:
|
|
* ID int REQUIRED
|
|
* Agent string REQUIRED requesting agent (must be owner)
|
|
*
|
|
* Response: { OK: true }
|
|
*/
|
|
|
|
require_once __DIR__ . '/../../helpers.php';
|
|
|
|
if ($_SERVER['REQUEST_METHOD'] !== 'POST') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'method_not_allowed'], 405);
|
|
}
|
|
|
|
$body = readJsonBody();
|
|
|
|
$id = (int) ($body['ID'] ?? 0);
|
|
$agent = trim($body['Agent'] ?? '');
|
|
|
|
if ($id <= 0) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'id_required']);
|
|
}
|
|
if ($agent === '') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'agent_required']);
|
|
}
|
|
|
|
// Verify channel exists
|
|
$channel = queryOne("SELECT * FROM Hub_Channels WHERE ID = ?", [$id]);
|
|
if (!$channel) {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'channel_not_found'], 404);
|
|
}
|
|
|
|
// Only owner can delete
|
|
$membership = queryOne(
|
|
"SELECT Role FROM Hub_ChannelMembers WHERE ChannelID = ? AND AgentAddress = ?",
|
|
[$id, $agent]
|
|
);
|
|
if (!$membership || $membership['Role'] !== 'owner') {
|
|
jsonResponse(['OK' => false, 'ERROR' => 'not_authorized_owner_only'], 403);
|
|
}
|
|
|
|
// Delete channel (FK cascade will remove members)
|
|
queryTimed("DELETE FROM Hub_Channels WHERE ID = ?", [$id]);
|
|
|
|
jsonResponse(['OK' => true]);
|