@rebasepro/server-postgres 0.10.0 → 0.10.1-canary.14e53ae

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. package/dist/PostgresBootstrapper.d.ts +7 -3
  2. package/dist/auth/services.d.ts +43 -4
  3. package/dist/backup/backup-logic.d.ts +23 -0
  4. package/dist/backup/backup-service.d.ts +44 -2
  5. package/dist/backup/pg-tools.d.ts +41 -1
  6. package/dist/chunk-DSJWtz9O.js +40 -0
  7. package/dist/cli-helpers.d.ts +33 -1
  8. package/dist/ensure-collection-tables-CNlIONzj.js +304 -0
  9. package/dist/ensure-collection-tables-CNlIONzj.js.map +1 -0
  10. package/dist/index.d.ts +1 -0
  11. package/dist/index.es.js +1472 -4640
  12. package/dist/index.es.js.map +1 -1
  13. package/dist/schema/auth-schema.d.ts +170 -0
  14. package/dist/schema/destructive-sql.d.ts +49 -0
  15. package/dist/schema/ensure-collection-tables.d.ts +79 -0
  16. package/dist/schema/generate-postgres-ddl-logic.d.ts +4 -1
  17. package/dist/services/cdc/CdcListener.d.ts +7 -14
  18. package/dist/services/channel-bus/ChannelBus.d.ts +29 -0
  19. package/dist/services/channel-bus/PostgresChannelBus.d.ts +111 -0
  20. package/dist/services/channel-bus/index.d.ts +55 -0
  21. package/dist/services/channel-history.d.ts +11 -0
  22. package/dist/services/channel-presence.d.ts +66 -0
  23. package/dist/services/pg-notify-listener.d.ts +47 -0
  24. package/dist/services/realtimeService.d.ts +114 -6
  25. package/dist/src-B0v4IKaI.js +329 -0
  26. package/dist/src-B0v4IKaI.js.map +1 -0
  27. package/dist/src-DmsRg8MR.js +4056 -0
  28. package/dist/src-DmsRg8MR.js.map +1 -0
  29. package/package.json +6 -6
  30. package/src/PostgresBootstrapper.ts +72 -3
  31. package/src/auth/ensure-tables.ts +91 -3
  32. package/src/auth/services.ts +186 -48
  33. package/src/backup/backup-cli.ts +60 -1
  34. package/src/backup/backup-cron.ts +24 -1
  35. package/src/backup/backup-logic.ts +62 -0
  36. package/src/backup/backup-service.ts +132 -13
  37. package/src/backup/pg-tools.ts +70 -2
  38. package/src/cli-helpers.ts +82 -27
  39. package/src/cli.ts +152 -6
  40. package/src/index.ts +4 -0
  41. package/src/schema/auth-schema.ts +41 -3
  42. package/src/schema/destructive-sql.ts +94 -0
  43. package/src/schema/ensure-collection-tables.test.ts +156 -0
  44. package/src/schema/ensure-collection-tables.ts +297 -0
  45. package/src/schema/generate-postgres-ddl-logic.ts +3 -3
  46. package/src/services/cdc/CdcListener.ts +27 -91
  47. package/src/services/channel-bus/ChannelBus.ts +44 -0
  48. package/src/services/channel-bus/PostgresChannelBus.ts +299 -0
  49. package/src/services/channel-bus/index.ts +123 -0
  50. package/src/services/channel-history.ts +35 -0
  51. package/src/services/channel-presence.ts +148 -0
  52. package/src/services/pg-notify-listener.ts +137 -0
  53. package/src/services/realtimeService.ts +383 -14
@@ -0,0 +1,299 @@
1
+ /**
2
+ * Channel bus over Postgres LISTEN/NOTIFY.
3
+ *
4
+ * Chosen because it needs nothing that a Rebase deployment does not already
5
+ * have — the same database, the same direct URL the CDC listener uses. Three
6
+ * properties of `NOTIFY` shape everything below:
7
+ *
8
+ * - **8000 bytes per payload.** Presence and cursors fit with room to spare; a
9
+ * scene snapshot does not. Rather than truncate or drop, an oversized frame
10
+ * on a *retained* channel is published as a pointer — the body is already in
11
+ * `rebase.channel_messages` with a sequence number, so the receiver reads it
12
+ * back. That is the same trick the entity path uses (notify an address,
13
+ * refetch the row), applied to a different table. On an ephemeral channel
14
+ * there is nothing to point at, so the publish is refused loudly instead of
15
+ * reaching some instances and not others.
16
+ *
17
+ * - **A notify is a query on the primary database.** Not a slow one, but it
18
+ * competes with the application's real queries, and that — not throughput —
19
+ * is what actually limits this transport. Measured, it carried ~10k
20
+ * cross-instance messages/second and stayed flat out to eight instances; what
21
+ * it should not do is spend 10k queries/second of the database's budget on
22
+ * cursor movement. Hence the batching below.
23
+ *
24
+ * - **Delivery is best-effort.** Retained channels repair themselves through
25
+ * the client's history replay, so a lost frame costs a live update rather
26
+ * than correctness. That is what makes coalescing safe.
27
+ */
28
+
29
+ import { sql } from "drizzle-orm";
30
+ import { NodePgDatabase } from "drizzle-orm/node-postgres";
31
+ import { logger } from "@rebasepro/server";
32
+ import { PgNotifyListener } from "../pg-notify-listener";
33
+ import { ChannelBus, ChannelBusFrame, ChannelBusHandler, frameByteLength } from "./ChannelBus";
34
+
35
+ /** NOTIFY channel carrying channel-bus frames. */
36
+ export const CHANNEL_BUS_NOTIFY_CHANNEL = "rebase_channel_bus";
37
+
38
+ /**
39
+ * Postgres refuses a NOTIFY payload of 8000 bytes or more. The margin below it
40
+ * is for nothing in particular — it is there so that a payload which passes this
41
+ * check cannot fail at the server for being a few bytes over.
42
+ */
43
+ export const PG_NOTIFY_MAX_PAYLOAD_BYTES = 7500;
44
+
45
+ /**
46
+ * How long a batching window stays open.
47
+ *
48
+ * Ten milliseconds is below the threshold where a human notices a cursor lag,
49
+ * and it is the difference between one query per message and one query per
50
+ * window under load. Set to 0 to disable coalescing entirely.
51
+ */
52
+ export const DEFAULT_BATCH_WINDOW_MS = 10;
53
+
54
+ /** JSON overhead per frame inside a batch: the wrapping array's comma. */
55
+ const BATCH_SEPARATOR_BYTES = 1;
56
+ /** JSON overhead of the batch envelope itself: `{"batch":[]}`. */
57
+ const BATCH_ENVELOPE_BYTES = 12;
58
+
59
+ interface PendingFrame {
60
+ frame: ChannelBusFrame;
61
+ bytes: number;
62
+ resolve: () => void;
63
+ reject: (error: unknown) => void;
64
+ }
65
+
66
+ export class PostgresChannelBus implements ChannelBus {
67
+ readonly kind = "postgres" as const;
68
+ readonly maxFrameBytes = PG_NOTIFY_MAX_PAYLOAD_BYTES;
69
+
70
+ private listener?: PgNotifyListener;
71
+ private readonly batchWindowMs: number;
72
+
73
+ /**
74
+ * Frames waiting for the current window to close.
75
+ *
76
+ * The window is opened by a publish that found none open, and that publish
77
+ * is sent *immediately* rather than joining a batch — see {@link publish}.
78
+ */
79
+ private pending: PendingFrame[] = [];
80
+ private pendingBytes = BATCH_ENVELOPE_BYTES;
81
+ private windowTimer?: ReturnType<typeof setTimeout>;
82
+ private stopped = false;
83
+
84
+ constructor(
85
+ private readonly db: NodePgDatabase<Record<string, unknown>>,
86
+ private readonly connectionString: string,
87
+ options: { batchWindowMs?: number } = {}
88
+ ) {
89
+ const configured = options.batchWindowMs;
90
+ this.batchWindowMs = typeof configured === "number" && configured >= 0
91
+ ? configured
92
+ : DEFAULT_BATCH_WINDOW_MS;
93
+ }
94
+
95
+ async start(handler: ChannelBusHandler): Promise<void> {
96
+ this.stopped = false;
97
+ this.listener = new PgNotifyListener({
98
+ connectionString: this.connectionString,
99
+ channel: CHANNEL_BUS_NOTIFY_CHANNEL,
100
+ logLabel: "[ChannelBus]",
101
+ onPayload: async (payload) => {
102
+ const frames = parseChannelBusPayload(payload);
103
+ if (!frames.length) {
104
+ logger.warn("⚠️ [ChannelBus] Dropping unparseable payload.");
105
+ return;
106
+ }
107
+ // In order: a batch preserves the sender's publish order, and a
108
+ // retained channel's consumers rely on it.
109
+ for (const frame of frames) await handler(frame);
110
+ }
111
+ });
112
+ await this.listener.start();
113
+ }
114
+
115
+ /**
116
+ * Publish, coalescing under load.
117
+ *
118
+ * The window is *leading edge*: a publish arriving when no window is open is
119
+ * sent straight away and opens one, so an idle channel pays no added latency
120
+ * at all. Frames arriving while it is open are collected and leave together
121
+ * when it closes. The effect is that cost tracks elapsed time rather than
122
+ * message count — one query per window instead of one per message — which is
123
+ * the same shape as the retention pruning throttle, for the same reason.
124
+ *
125
+ * The returned promise settles when the frame has actually left, not when it
126
+ * was queued, so the contract ("reaches the other instances, or rejects")
127
+ * still holds.
128
+ */
129
+ async publish(frame: ChannelBusFrame): Promise<void> {
130
+ if (this.batchWindowMs === 0 || this.stopped) {
131
+ await this.send([frame]);
132
+ return;
133
+ }
134
+
135
+ if (!this.windowTimer) {
136
+ this.openWindow();
137
+ await this.send([frame]);
138
+ return;
139
+ }
140
+
141
+ const bytes = frameByteLength(frame) + BATCH_SEPARATOR_BYTES;
142
+
143
+ // A batch is one NOTIFY payload, so the 8 KB ceiling applies to the
144
+ // whole batch. Send what we have rather than let the frame push it over.
145
+ if (this.pending.length && this.pendingBytes + bytes > this.maxFrameBytes) {
146
+ this.flush();
147
+ }
148
+
149
+ return new Promise<void>((resolve, reject) => {
150
+ this.pending.push({ frame, bytes, resolve, reject });
151
+ this.pendingBytes += bytes;
152
+ });
153
+ }
154
+
155
+ async stop(): Promise<void> {
156
+ this.stopped = true;
157
+ if (this.windowTimer) {
158
+ clearTimeout(this.windowTimer);
159
+ this.windowTimer = undefined;
160
+ }
161
+ // Anything still queued belongs to clients that are already waiting on
162
+ // it; dropping it on shutdown would be a silent loss where a flush costs
163
+ // one more query.
164
+ this.flush();
165
+ await this.listener?.stop();
166
+ this.listener = undefined;
167
+ }
168
+
169
+ private openWindow(): void {
170
+ this.windowTimer = setTimeout(() => {
171
+ this.windowTimer = undefined;
172
+ if (this.pending.length) {
173
+ // Still busy: send this window's frames and open the next one,
174
+ // so a sustained stream keeps costing one query per window.
175
+ this.flush();
176
+ this.openWindow();
177
+ }
178
+ // Otherwise leave it closed, so the next publish after a quiet
179
+ // moment goes out immediately.
180
+ }, this.batchWindowMs);
181
+
182
+ // Housekeeping must never hold the process open.
183
+ (this.windowTimer as unknown as { unref?: () => void }).unref?.();
184
+ }
185
+
186
+ /** Send everything queued and settle the promises waiting on it. */
187
+ private flush(): void {
188
+ if (!this.pending.length) return;
189
+
190
+ const batch = this.pending;
191
+ this.pending = [];
192
+ this.pendingBytes = BATCH_ENVELOPE_BYTES;
193
+
194
+ this.send(batch.map(p => p.frame))
195
+ .then(() => { for (const p of batch) p.resolve(); })
196
+ .catch((error) => { for (const p of batch) p.reject(error); });
197
+ }
198
+
199
+ /**
200
+ * One NOTIFY.
201
+ *
202
+ * A single frame goes out in the plain, unwrapped shape. That is not just
203
+ * economy: during a rolling deploy an instance running the previous build
204
+ * understands only that shape, and low-rate traffic — presence, the tail of
205
+ * a session — is exactly what is flowing while pods restart. Batching only
206
+ * appears under load, which shrinks the mixed-version window to almost
207
+ * nothing.
208
+ */
209
+ private async send(frames: ChannelBusFrame[]): Promise<void> {
210
+ if (!frames.length) return;
211
+ const payload = frames.length === 1
212
+ ? JSON.stringify(frames[0])
213
+ : JSON.stringify({ batch: frames });
214
+
215
+ await this.db.execute(sql`SELECT pg_notify(${CHANNEL_BUS_NOTIFY_CHANNEL}, ${payload})`);
216
+ }
217
+ }
218
+
219
+ /**
220
+ * Parse a bus payload into the frames it carries.
221
+ *
222
+ * Accepts both wire shapes — a bare frame and a `{ batch: [...] }` envelope —
223
+ * so an instance on the new build understands one on the old. Returns an empty
224
+ * array for anything unrecognisable: a malformed or future-versioned message
225
+ * must never take the listener down.
226
+ */
227
+ export function parseChannelBusPayload(payload: string): ChannelBusFrame[] {
228
+ let parsed: unknown;
229
+ try {
230
+ parsed = JSON.parse(payload);
231
+ } catch {
232
+ return [];
233
+ }
234
+ if (!parsed || typeof parsed !== "object") return [];
235
+
236
+ const batch = (parsed as { batch?: unknown }).batch;
237
+ if (Array.isArray(batch)) {
238
+ return batch
239
+ .map(entry => coerceFrame(entry))
240
+ .filter((frame): frame is ChannelBusFrame => frame !== null);
241
+ }
242
+
243
+ const single = coerceFrame(parsed);
244
+ return single ? [single] : [];
245
+ }
246
+
247
+ /**
248
+ * Parse a single bus frame, returning null for anything that is not a frame we
249
+ * understand.
250
+ */
251
+ export function parseChannelBusFrame(payload: string): ChannelBusFrame | null {
252
+ try {
253
+ return coerceFrame(JSON.parse(payload));
254
+ } catch {
255
+ return null;
256
+ }
257
+ }
258
+
259
+ function coerceFrame(value: unknown): ChannelBusFrame | null {
260
+ if (!value || typeof value !== "object") return null;
261
+
262
+ const obj = value as Record<string, unknown>;
263
+ const sid = typeof obj.sid === "string" ? obj.sid : undefined;
264
+ const channel = typeof obj.channel === "string" ? obj.channel : undefined;
265
+ if (!sid || !channel) return null;
266
+
267
+ switch (obj.kind) {
268
+ case "broadcast":
269
+ if (typeof obj.event !== "string") return null;
270
+ return {
271
+ kind: "broadcast",
272
+ sid,
273
+ channel,
274
+ event: obj.event,
275
+ from: typeof obj.from === "string" ? obj.from : undefined,
276
+ seq: typeof obj.seq === "number" ? obj.seq : undefined,
277
+ payload: obj.payload
278
+ };
279
+ case "broadcast_ref":
280
+ if (typeof obj.seq !== "number") return null;
281
+ return {
282
+ kind: "broadcast_ref",
283
+ sid,
284
+ channel,
285
+ from: typeof obj.from === "string" ? obj.from : undefined,
286
+ seq: obj.seq
287
+ };
288
+ case "presence_diff":
289
+ return {
290
+ kind: "presence_diff",
291
+ sid,
292
+ channel,
293
+ joins: (obj.joins ?? {}) as Record<string, Record<string, unknown>>,
294
+ leaves: (obj.leaves ?? {}) as Record<string, Record<string, unknown>>
295
+ };
296
+ default:
297
+ return null;
298
+ }
299
+ }
@@ -0,0 +1,123 @@
1
+ /**
2
+ * Resolution of the channel bus from config, environment, or a supplied instance.
3
+ *
4
+ * Opt-in, like every other cross-cutting realtime switch here: with nothing
5
+ * configured a deployment gets the memory bus and behaves exactly as it did
6
+ * before this existed. Unlike `REALTIME_CDC=auto`, there is no "try it and see"
7
+ * default — a bus changes where messages go, and quietly turning on a Postgres
8
+ * NOTIFY per broadcast because a direct URL happened to be set is not a
9
+ * decision to make on the user's behalf.
10
+ *
11
+ * Two transports ship, and neither adds a service to a deployment. A third is
12
+ * not a code change here: `realtime.bus` also accepts an already-constructed
13
+ * {@link ChannelBus}, so a transport published as its own package plugs in
14
+ * without this file learning about it. See `@rebasepro/types` →
15
+ * `types/channel_bus.ts` for the contract such a package implements.
16
+ */
17
+
18
+ import { NodePgDatabase } from "drizzle-orm/node-postgres";
19
+ import { isChannelBusInstance, type ChannelBus, type ChannelBusConfig, type ChannelBusSetting } from "@rebasepro/types";
20
+ import { logger } from "@rebasepro/server";
21
+ import { MemoryChannelBus } from "./ChannelBus";
22
+ import { PostgresChannelBus } from "./PostgresChannelBus";
23
+
24
+ export * from "./ChannelBus";
25
+ export {
26
+ PostgresChannelBus,
27
+ CHANNEL_BUS_NOTIFY_CHANNEL,
28
+ PG_NOTIFY_MAX_PAYLOAD_BYTES,
29
+ DEFAULT_BATCH_WINDOW_MS,
30
+ parseChannelBusFrame,
31
+ parseChannelBusPayload
32
+ } from "./PostgresChannelBus";
33
+
34
+ export interface ChannelBusDeps {
35
+ db: NodePgDatabase<Record<string, unknown>>;
36
+ /**
37
+ * Direct (non-pooled) Postgres URL for the LISTEN client. `LISTEN` is
38
+ * session state, so behind PgBouncer in transaction mode this must be the
39
+ * database itself and not the pooler.
40
+ */
41
+ directUrl?: string;
42
+ }
43
+
44
+ /**
45
+ * Merge `REALTIME_CHANNEL_BUS` into the configured bus.
46
+ *
47
+ * The environment wins over a *named* built-in, so the transport can be changed
48
+ * per deployment without a rebuild — the same reason `REALTIME_CDC` is an env
49
+ * var. It does **not** win over a supplied instance: the env var can only name
50
+ * transports this package knows how to construct, so honouring it there would
51
+ * mean silently discarding the object the application handed us.
52
+ */
53
+ export function resolveChannelBusSetting(configured?: ChannelBusSetting): ChannelBusSetting {
54
+ const raw = (process.env.REALTIME_CHANNEL_BUS || "").trim().toLowerCase();
55
+
56
+ if (isChannelBusInstance(configured)) {
57
+ if (raw && raw !== configured.kind) {
58
+ logger.warn(
59
+ `⚠️ [ChannelBus] REALTIME_CHANNEL_BUS="${raw}" is ignored because realtime.bus was given a ` +
60
+ `"${configured.kind}" transport instance directly. Remove one of the two to make the intent clear.`
61
+ );
62
+ }
63
+ return configured;
64
+ }
65
+
66
+ if (!raw) return configured ?? { type: "memory" };
67
+
68
+ if (raw !== "memory" && raw !== "postgres") {
69
+ logger.warn(
70
+ `⚠️ [ChannelBus] Unknown REALTIME_CHANNEL_BUS value "${raw}" — expected memory|postgres, or pass a ` +
71
+ "ChannelBus instance as realtime.bus for a transport that ships separately. Falling back to the " +
72
+ "configured bus."
73
+ );
74
+ return configured ?? { type: "memory" };
75
+ }
76
+
77
+ // Keep the configured options (an explicit connection string) when the env
78
+ // var only restates the type it was already set to.
79
+ if (configured?.type === raw) return configured;
80
+ return raw === "memory" ? { type: "memory" } : { type: "postgres" };
81
+ }
82
+
83
+ /**
84
+ * @deprecated Use {@link resolveChannelBusSetting}, which also accepts a
85
+ * supplied {@link ChannelBus} instance. Kept as a narrow alias so existing
86
+ * config-only callers keep their exact types.
87
+ */
88
+ export function resolveChannelBusConfig(configured?: ChannelBusConfig): ChannelBusConfig {
89
+ return resolveChannelBusSetting(configured) as ChannelBusConfig;
90
+ }
91
+
92
+ /**
93
+ * Produce the bus a setting asks for.
94
+ *
95
+ * An instance is handed straight back — constructing it was the application's
96
+ * job, and this function has nothing to add. A named built-in that turns out to
97
+ * be unusable degrades to the memory bus, with the reason logged, rather than
98
+ * throwing: a misconfigured bus should cost a deployment its cross-instance
99
+ * fan-out, not its ability to boot.
100
+ */
101
+ export function createChannelBus(setting: ChannelBusSetting, deps: ChannelBusDeps): ChannelBus {
102
+ if (isChannelBusInstance(setting)) return setting;
103
+
104
+ switch (setting.type) {
105
+ case "postgres": {
106
+ const connectionString = setting.connectionString || deps.directUrl;
107
+ if (!connectionString) {
108
+ logger.warn(
109
+ "⚠️ [ChannelBus] realtime.bus is \"postgres\" but no direct database URL is available " +
110
+ "(set DATABASE_DIRECT_URL or realtime.bus.connectionString) — channel broadcast and presence " +
111
+ "stay per-instance."
112
+ );
113
+ return new MemoryChannelBus();
114
+ }
115
+ return new PostgresChannelBus(deps.db, connectionString, {
116
+ batchWindowMs: setting.batchWindowMs
117
+ });
118
+ }
119
+ case "memory":
120
+ default:
121
+ return new MemoryChannelBus();
122
+ }
123
+ }
@@ -290,6 +290,41 @@ export class ChannelHistoryStore {
290
290
  return { messages, latestSeq };
291
291
  }
292
292
 
293
+ /**
294
+ * One retained message by its address.
295
+ *
296
+ * This is what makes the cross-instance pointer path work: a broadcast too
297
+ * large to travel inside a `pg_notify` payload is already stored here, so
298
+ * the notification carries `(channel, seq)` and each receiving instance
299
+ * reads the body back. Returns null when the message has since been pruned
300
+ * — a receiver that is that far behind has nothing useful to deliver, and
301
+ * the client's own `channel_history` replay is the repair path.
302
+ */
303
+ async getBySeq(channel: string, seq: number): Promise<ChannelHistoryEntry | null> {
304
+ const result = await this.db.execute(sql`
305
+ SELECT seq, event, payload, sender_id, created_at
306
+ FROM rebase.channel_messages
307
+ WHERE channel = ${channel} AND seq = ${seq}
308
+ `);
309
+
310
+ const row = result.rows[0] as {
311
+ seq: string | number;
312
+ event: string;
313
+ payload: unknown;
314
+ sender_id: string | null;
315
+ created_at: Date | string;
316
+ } | undefined;
317
+ if (!row) return null;
318
+
319
+ return {
320
+ seq: Number(row.seq),
321
+ event: row.event,
322
+ payload: row.payload,
323
+ senderId: row.sender_id ?? undefined,
324
+ at: row.created_at instanceof Date ? row.created_at.toISOString() : String(row.created_at)
325
+ };
326
+ }
327
+
293
328
  /**
294
329
  * Enforce a channel's retention bounds.
295
330
  *
@@ -0,0 +1,148 @@
1
+ /**
2
+ * The shared presence roster.
3
+ *
4
+ * Broadcast only ever needed *fan-out* to work across instances — a frame goes
5
+ * out, whoever is connected receives it. Presence needs more than that, because
6
+ * `presence_state` is a question ("who is in this document?") and a per-process
7
+ * `Map` can only answer for the clients that happen to share a replica with the
8
+ * asker. Two people editing the same scene through different pods would each
9
+ * see an empty room while broadcasting cursors at each other perfectly.
10
+ *
11
+ * So presence gets one row per tracked client, in Postgres, readable by every
12
+ * instance. Three consequences worth stating:
13
+ *
14
+ * - **The table is the roster; the in-process map is a cache of our own
15
+ * clients.** Reads answer from the table when this store is active, so the
16
+ * answer is the same whichever instance is asked.
17
+ *
18
+ * - **`last_seen` is the liveness signal, and it is already there.** The client
19
+ * heartbeats presence every ~20 s against a 30 s window; the sweep that has
20
+ * always reaped local stale entries now also reaps rows belonging to
21
+ * instances that stopped writing — which is exactly what a crashed pod looks
22
+ * like. Crash recovery is a property of the TTL, not a separate mechanism.
23
+ *
24
+ * - **The sweep deletes with `RETURNING`.** Whichever instance wins the delete
25
+ * is the one that announces the departures, so a stale client produces one
26
+ * `presence_diff` for the cluster rather than one per replica.
27
+ */
28
+
29
+ import { sql } from "drizzle-orm";
30
+ import { NodePgDatabase } from "drizzle-orm/node-postgres";
31
+
32
+ /** A tracked client, as any instance sees it. */
33
+ export interface PresenceRow {
34
+ channel: string;
35
+ clientId: string;
36
+ state: Record<string, unknown>;
37
+ }
38
+
39
+ export class ChannelPresenceStore {
40
+ private tablesReady = false;
41
+
42
+ constructor(
43
+ private readonly db: NodePgDatabase<Record<string, unknown>>,
44
+ private readonly instanceId: string
45
+ ) {}
46
+
47
+ /** Create the roster table. Idempotent. */
48
+ async ensureTables(): Promise<void> {
49
+ if (this.tablesReady) return;
50
+
51
+ await this.db.execute(sql`CREATE SCHEMA IF NOT EXISTS rebase`);
52
+
53
+ // Keyed by (channel, client_id): a client id is globally unique, so the
54
+ // instance is a column rather than part of the identity — a client that
55
+ // reconnects onto another replica replaces its own row instead of
56
+ // appearing twice in the roster.
57
+ await this.db.execute(sql`
58
+ CREATE TABLE IF NOT EXISTS rebase.channel_presence (
59
+ channel TEXT NOT NULL,
60
+ client_id TEXT NOT NULL,
61
+ instance_id TEXT NOT NULL,
62
+ state JSONB NOT NULL DEFAULT '{}'::jsonb,
63
+ last_seen TIMESTAMPTZ NOT NULL DEFAULT NOW(),
64
+ PRIMARY KEY (channel, client_id)
65
+ )
66
+ `);
67
+
68
+ // The sweep's access path; the roster read rides the primary key.
69
+ await this.db.execute(sql`
70
+ CREATE INDEX IF NOT EXISTS idx_channel_presence_last_seen
71
+ ON rebase.channel_presence (last_seen)
72
+ `);
73
+
74
+ this.tablesReady = true;
75
+ }
76
+
77
+ /** Record (or refresh) a client's presence. */
78
+ async track(channel: string, clientId: string, state: Record<string, unknown>): Promise<void> {
79
+ await this.db.execute(sql`
80
+ INSERT INTO rebase.channel_presence (channel, client_id, instance_id, state, last_seen)
81
+ VALUES (${channel}, ${clientId}, ${this.instanceId}, ${JSON.stringify(state ?? {})}::jsonb, NOW())
82
+ ON CONFLICT (channel, client_id) DO UPDATE
83
+ SET state = EXCLUDED.state,
84
+ instance_id = EXCLUDED.instance_id,
85
+ last_seen = NOW()
86
+ `);
87
+ }
88
+
89
+ /** Drop one client's presence in one channel. */
90
+ async remove(channel: string, clientId: string): Promise<void> {
91
+ await this.db.execute(sql`
92
+ DELETE FROM rebase.channel_presence
93
+ WHERE channel = ${channel} AND client_id = ${clientId}
94
+ `);
95
+ }
96
+
97
+ /** Drop a client from every channel — used when its socket closes. */
98
+ async removeClient(clientId: string): Promise<void> {
99
+ await this.db.execute(sql`
100
+ DELETE FROM rebase.channel_presence WHERE client_id = ${clientId}
101
+ `);
102
+ }
103
+
104
+ /** The global roster for a channel. */
105
+ async roster(channel: string): Promise<Record<string, Record<string, unknown>>> {
106
+ const result = await this.db.execute(sql`
107
+ SELECT client_id, state FROM rebase.channel_presence WHERE channel = ${channel}
108
+ `);
109
+
110
+ const presences: Record<string, Record<string, unknown>> = {};
111
+ for (const row of result.rows as Array<{ client_id: string; state: Record<string, unknown> | null }>) {
112
+ presences[row.client_id] = row.state ?? {};
113
+ }
114
+ return presences;
115
+ }
116
+
117
+ /**
118
+ * Reap rows this instance is not responsible for and that have gone quiet.
119
+ *
120
+ * Own rows are excluded because the in-process sweep already handles them —
121
+ * and handles them better, since it can tell "the socket is gone" from "the
122
+ * heartbeat is late". What is left is precisely the interesting case: rows
123
+ * written by an instance that is no longer writing.
124
+ *
125
+ * Returns what was removed, so the caller can announce it.
126
+ */
127
+ async sweepStale(ttlMs: number): Promise<PresenceRow[]> {
128
+ const result = await this.db.execute(sql`
129
+ DELETE FROM rebase.channel_presence
130
+ WHERE instance_id <> ${this.instanceId}
131
+ AND last_seen < NOW() - MAKE_INTERVAL(secs => ${ttlMs / 1000})
132
+ RETURNING channel, client_id, state
133
+ `);
134
+
135
+ return (result.rows as Array<{ channel: string; client_id: string; state: Record<string, unknown> | null }>)
136
+ .map(row => ({ channel: row.channel, clientId: row.client_id, state: row.state ?? {} }));
137
+ }
138
+
139
+ /**
140
+ * Remove every row this instance owns. Called on graceful shutdown so a
141
+ * rolling deploy does not leave a TTL window of ghosts in every roster.
142
+ */
143
+ async removeInstance(): Promise<void> {
144
+ await this.db.execute(sql`
145
+ DELETE FROM rebase.channel_presence WHERE instance_id = ${this.instanceId}
146
+ `);
147
+ }
148
+ }