feat(api+web): unread counts per topic + PATCH /read mark-as-read
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

PATCH /v1/topics/:name/read upserts topic_member.last_read_at for the
api key's issuing member. The chat panel calls it on mount and on
every inbound SSE message (5s debounce so we don't hammer it).

GET /v1/topics now returns unread per topic — counts messages newer
than last_read_at and not authored by the viewer. Mesh detail page
shows a clay-rounded badge next to each topic name with the count
(99+ ceiling).

AuthedApiKey gains issuedByMemberId so endpoints can attribute
side-effects to the minting member. Required because external api
keys aren't tied to a specific peer member; only dashboard- and
CLI-minted keys carry one.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Alejandro Gutiérrez
2026-05-02 19:06:01 +01:00
parent 7e71a61db4
commit a80eb6fcca
4 changed files with 175 additions and 7 deletions

View File

@@ -36,7 +36,7 @@ import {
messageQueue,
presence,
} from "@turbostarter/db/schema/mesh";
import { and, asc, desc, eq, gt, isNull, lt } from "drizzle-orm";
import { and, asc, count, desc, eq, gt, isNull, lt, sql } from "drizzle-orm";
import { validate } from "../../middleware";
import {
@@ -140,6 +140,11 @@ export const v1Router = new Hono<Env>()
})
// GET /v1/topics — list topics in the key's mesh
// Includes per-topic unread counts when the key has an issuing member
// (i.e. dashboard keys; CLI-minted keys also carry it). Counts are
// computed against topic_member.last_read_at; if no membership row
// exists for this member, the topic counts as 0 unread (member is
// not subscribed — surfacing the topic without nagging them).
.get("/topics", async (c) => {
const key = c.var.apiKey;
requireCapability(key, "read");
@@ -157,6 +162,38 @@ export const v1Router = new Hono<Env>()
const filtered = key.topicScopes
? rows.filter((r) => key.topicScopes!.includes(r.name))
: rows;
// Build an unread-count map keyed by topic id. Only meaningful when
// we know whose last_read_at to compare against.
const unreadByTopic = new Map<string, number>();
if (key.issuedByMemberId && filtered.length > 0) {
const topicIds = filtered.map((t) => t.id);
const counts = await db
.select({
topicId: meshTopicMessage.topicId,
unread: count(meshTopicMessage.id),
})
.from(meshTopicMessage)
.leftJoin(
meshTopicMember,
and(
eq(meshTopicMember.topicId, meshTopicMessage.topicId),
eq(meshTopicMember.memberId, key.issuedByMemberId),
),
)
.where(
and(
sql`${meshTopicMessage.topicId} = ANY(${topicIds})`,
sql`${meshTopicMessage.createdAt} > COALESCE(${meshTopicMember.lastReadAt}, '1970-01-01'::timestamp)`,
sql`${meshTopicMessage.senderMemberId} <> ${key.issuedByMemberId}`,
),
)
.groupBy(meshTopicMessage.topicId);
for (const row of counts) {
unreadByTopic.set(row.topicId, Number(row.unread));
}
}
return c.json({
topics: filtered.map((t) => ({
id: t.id,
@@ -164,10 +201,60 @@ export const v1Router = new Hono<Env>()
description: t.description,
visibility: t.visibility,
createdAt: t.createdAt.toISOString(),
unread: unreadByTopic.get(t.id) ?? 0,
})),
});
})
// PATCH /v1/topics/:name/read — mark a topic read up to now for the
// member that issued this api key. Upserts topic_member if no row
// exists yet (e.g. dashboard owner who joined the mesh before #general
// existed and hadn't been auto-subscribed). No-op if the api key has
// no issuing member (legacy keys without issuedByMemberId).
.patch("/topics/:name/read", async (c) => {
const key = c.var.apiKey;
requireCapability(key, "read");
const name = c.req.param("name");
requireTopicScope(key, name);
if (!key.issuedByMemberId) {
return c.json({ error: "api_key_has_no_issuer" }, 400);
}
const [topic] = await db
.select({ id: meshTopic.id })
.from(meshTopic)
.where(
and(
eq(meshTopic.meshId, key.meshId),
eq(meshTopic.name, name),
isNull(meshTopic.archivedAt),
),
);
if (!topic) {
return c.json({ error: "topic_not_found", topic: name }, 404);
}
const now = new Date();
await db
.insert(meshTopicMember)
.values({
topicId: topic.id,
memberId: key.issuedByMemberId,
lastReadAt: now,
})
.onConflictDoUpdate({
target: [meshTopicMember.topicId, meshTopicMember.memberId],
set: { lastReadAt: now },
});
return c.json({
topic: name,
topicId: topic.id,
readAt: now.toISOString(),
});
})
// GET /v1/topics/:name/messages?limit=50&before=<id>
.get(
"/topics/:name/messages",