feat(federation): outbound gate in ensurePeered with required intent argument

- New 'admin_required' EnsurePeeredResult variant.
- Required intent argument (no optional default) prevents future
  user-initiated callers from silently getting system behavior.
- Gate runs only when no peer row exists; toggling autoAccept later
  does not retroactively gate established peer rows.
- queueOutboundApproval helper upserts parent + subscriber rows and
  broadcasts to admins + user.
- Schema enum-narrows direction ('inbound' | 'outbound') and
  notifications.kind ('approved' | 'denied' | 'expired') at the column
  level; drizzle generate confirmed no migration delta.
- Existing call sites now fail typecheck — fixed in Task 5.
This commit is contained in:
Jannis Braun
2026-04-26 21:18:43 +02:00
parent 94c291c472
commit 50bc510e8d
2 changed files with 144 additions and 7 deletions
+2 -2
View File
@@ -385,7 +385,7 @@ export const federationPeers = sqliteTable('federation_peers', {
export const peerApprovalRequests = sqliteTable('peer_approval_requests', {
id: text('id').primaryKey(),
origin: text('origin').notNull(),
direction: text('direction').notNull().default('inbound'),
direction: text('direction', { enum: ['inbound', 'outbound'] }).notNull().default('inbound'),
instanceName: text('instance_name'),
hmacSecret: text('hmac_secret'),
requestedAt: integer('requested_at').notNull(),
@@ -410,7 +410,7 @@ export const peerApprovalSubscribers = sqliteTable('peer_approval_subscribers',
export const peerApprovalNotifications = sqliteTable('peer_approval_notifications', {
id: text('id').primaryKey(),
userId: text('user_id').notNull().references(() => users.id, { onDelete: 'cascade' }),
kind: text('kind').notNull(),
kind: text('kind', { enum: ['approved', 'denied', 'expired'] }).notNull(),
peerOrigin: text('peer_origin').notNull(),
triggerReason: text('trigger_reason').notNull(),
triggerTarget: text('trigger_target').notNull(),