fix(broker): show mesh slugs in /meshes + /status, remove all-meshes fallback
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

- /meshes and /status now show mesh slug names instead of truncated IDs
- meshSlug cached on connect and loaded from DB join on boot
- Remove dangerous fallback that connected to ALL meshes in email flow
- BridgeRow now includes optional meshSlug field

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-04-10 02:24:55 +01:00
parent 5df2664bae
commit a022da1998
2 changed files with 15 additions and 11 deletions

View File

@@ -21,6 +21,7 @@ import { validateTelegramConnectToken } from "./telegram-token";
export interface BridgeRow {
chatId: number;
meshId: string;
meshSlug?: string;
memberId: string;
pubkey: string;
secretKey: string;
@@ -510,6 +511,9 @@ const meshChats = new Map<string, Set<number>>();
/** meshId → shared WS connection */
const meshConnections = new Map<string, MeshConnection>();
/** meshId → slug (human-readable name) */
const meshSlugs = new Map<string, string>();
// Pending DM picker state: chatId → { message, matches, meshId }
const pendingDMs = new Map<
number,
@@ -809,6 +813,7 @@ function setupBotCommands(
);
linkChatMesh(chatId, meshId);
if (meshSlug) meshSlugs.set(meshId, meshSlug);
await ctx.reply(
`✅ Connected to mesh *${escapeMarkdown(meshSlug ?? meshId.slice(0, 8))}*\\!`,
@@ -909,7 +914,7 @@ function setupBotCommands(
const lines = meshIds.map((id) => {
const conn = meshConnections.get(id);
const status = conn?.isConnected() ? "🟢" : "🔴";
return `${status} \`${id.slice(0, 16)}\``;
return `${status} \`${meshSlugs.get(id) ?? id.slice(0, 12)}\``;
});
await ctx.reply(`*Connected meshes:*\n${lines.join("\n")}`, {
parse_mode: "Markdown",
@@ -1104,7 +1109,7 @@ function setupBotCommands(
const lines = meshIds.map((id) => {
const conn = meshConnections.get(id);
const icon = conn?.isConnected() ? "🟢" : "🔴";
return `${icon} \`${id.slice(0, 16)}\``;
return `${icon} \`${meshSlugs.get(id) ?? id.slice(0, 12)}\``;
});
await ctx.reply(
`*Claudemesh Telegram Bridge*\n${lines.join("\n")}`,
@@ -1624,9 +1629,10 @@ export async function bootTelegramBridge(
);
}
// Populate routing maps for all chats in this mesh
// Populate routing maps and slug cache for all chats in this mesh
for (const row of meshRows) {
linkChatMesh(row.chatId, meshId);
if (row.meshSlug) meshSlugs.set(meshId, row.meshSlug);
}
}