feat(cli+broker): kick, ban, unban, bans commands
Some checks failed
CI / Lint (push) Has been cancelled
CI / Typecheck (push) Has been cancelled
CI / Broker tests (Postgres) (push) Has been cancelled
CI / Docker build (linux/amd64) (push) Has been cancelled

Broker WS handlers:
- kick: disconnect peer(s) by name, --stale duration, or --all.
  Authz: owner or admin only. Closes WS + marks presence disconnected.
- ban: kick + set revokedAt on mesh.member. Hello already rejects
  revoked members, so ban is instant and permanent until unban.
- unban: clear revokedAt. Peer can rejoin with their existing keypair.
- list_bans: return all revoked members for a mesh.

Session-id dedup (previous commit): handleHello disconnects ghost
presences with matching (meshId, sessionId) before inserting the new
one. Eliminates duplicate entries after broker restarts.

CLI (alpha.37):
- claudemesh kick <peer|--stale 30m|--all>
- claudemesh ban/unban <peer>
- claudemesh bans [--json]
- Uses new sendAndWait() on ws-client for request-response pattern
  over WS (generic _reqId resolver).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-04-17 08:37:38 +01:00
parent 5ddb11b2d5
commit 3ceac68e67
6 changed files with 328 additions and 2 deletions

View File

@@ -0,0 +1,59 @@
/**
* `claudemesh kick` — disconnect peers from the mesh.
*
* claudemesh kick <name> kick one peer (can reconnect)
* claudemesh kick --stale 30m kick idle peers (> 30 min no activity)
* claudemesh kick --all kick everyone except yourself
*/
import { withMesh } from "./connect.js";
import { readConfig } from "~/services/config/facade.js";
import { render } from "~/ui/render.js";
import { EXIT } from "~/constants/exit-codes.js";
function parseStaleMs(input: string): number | null {
const m = input.match(/^(\d+)(s|m|h)$/);
if (!m) return null;
const val = parseInt(m[1]!, 10);
const unit = m[2]!;
if (unit === "s") return val * 1000;
if (unit === "m") return val * 60_000;
if (unit === "h") return val * 3600_000;
return null;
}
export async function runKick(
target: string | undefined,
opts: { mesh?: string; stale?: string; all?: boolean } = {},
): Promise<number> {
const config = readConfig();
const meshSlug = opts.mesh ?? config.meshes[0]?.slug;
if (!meshSlug) { render.err("No mesh joined."); return EXIT.NOT_FOUND; }
return await withMesh({ meshSlug }, async (client) => {
let payload: Record<string, unknown>;
if (opts.all) {
payload = { type: "kick", all: true };
} else if (opts.stale) {
const ms = parseStaleMs(opts.stale);
if (!ms) { render.err(`Invalid stale duration: "${opts.stale}". Use e.g. 30m, 1h, 300s.`); return EXIT.INVALID_ARGS; }
payload = { type: "kick", stale: ms };
} else if (target) {
payload = { type: "kick", target };
} else {
render.err("Usage: claudemesh kick <peer> | --stale 30m | --all");
return EXIT.INVALID_ARGS;
}
const result = await client.sendAndWait(payload) as { kicked?: string[] };
const kicked = result?.kicked ?? [];
if (kicked.length === 0) {
render.info("No peers matched.");
} else {
render.ok(`Kicked ${kicked.length} peer(s): ${kicked.join(", ")}`);
}
return EXIT.SUCCESS;
});
}