computePermissions() returned the space @everyone role's permissions without verifying the caller had joined the space. Because CREATE_INVITE is in DEFAULT_EVERYONE_PERMISSIONS, any authenticated user could mint an invite code for a request-only space — whose id is listed by /api/spaces/explore — and then self-join via /api/spaces/:id/join, bypassing the join-request approval flow. The same gap let non-members read message history and search default channels. Root cause: - computePermissions now returns 0n for non-members (space owner and instance admin still short-circuit first, so they are unaffected). Defense in depth (request-only spaces are approval-gated, never invite-joinable): - both invite-code join endpoints reject visibility='request' (private stays invite-joinable — its only entry path; public too). - POST /api/spaces/:id/invite refuses to hand out a code for request spaces. - POST /api/dm/space-invite refuses to card a local request space, checked by space id against the local table so a spoofed spaceInstanceOrigin can't slip past it. - InviteModal hides the invite affordances for request spaces. Also removes the unused computeCategoryPermissions(), which duplicated the resolution algorithm without the membership gate. Adds unit + route + component tests covering non-member/member/owner/admin resolution and the request/private/public visibility matrix. Reported-by: BadAtCaptchas (#2)
477 lines
16 KiB
TypeScript
477 lines
16 KiB
TypeScript
import { describe, it, expect, beforeEach, vi } from 'vitest';
|
|
import Fastify, { type FastifyInstance } from 'fastify';
|
|
import Database from 'better-sqlite3';
|
|
import { drizzle } from 'drizzle-orm/better-sqlite3';
|
|
import { eq } from 'drizzle-orm';
|
|
import fs from 'node:fs';
|
|
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import * as schema from '../db/schema.js';
|
|
import { setWorkerId } from '../utils/snowflake.js';
|
|
|
|
setWorkerId(1);
|
|
|
|
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
|
|
// Module-level mutable state. The vi.mock factories below close over these
|
|
// bindings via getter functions, so reassignment in beforeEach is observed.
|
|
type TestDb = ReturnType<typeof drizzle<typeof schema>>;
|
|
let sqlite: Database.Database;
|
|
let testDb: TestDb;
|
|
let currentUserId = 'alice';
|
|
|
|
vi.mock('../db/index.js', () => ({
|
|
getDb: () => testDb,
|
|
getRawDb: () => sqlite,
|
|
schema,
|
|
}));
|
|
|
|
vi.mock('../utils/auth.js', () => ({
|
|
authenticate: async (req: { userId?: string }) => {
|
|
req.userId = currentUserId;
|
|
},
|
|
}));
|
|
|
|
vi.mock('../ws/handler.js', () => ({
|
|
connectionManager: {
|
|
sendToUser: vi.fn(),
|
|
sendToDmMembers: vi.fn(),
|
|
sendToAdmins: vi.fn(),
|
|
getAllOnlineUserIds: () => [],
|
|
},
|
|
}));
|
|
|
|
vi.mock('../utils/federationOutbox.js', async () => {
|
|
const actual = await vi.importActual<typeof import('../utils/federationOutbox.js')>('../utils/federationOutbox.js');
|
|
return {
|
|
...actual,
|
|
isFederationRelayEnabled: () => false,
|
|
queueDmCloseRelay: vi.fn(),
|
|
sendTypingRelay: vi.fn(),
|
|
queueDmRelay: vi.fn(),
|
|
queueOutboxEvent: vi.fn(),
|
|
appendMutationLog: vi.fn(),
|
|
};
|
|
});
|
|
|
|
vi.mock('../utils/federationAuth.js', async (importActual) => {
|
|
const actual = await importActual<typeof import('../utils/federationAuth.js')>();
|
|
return { ...actual, getOurOrigin: () => 'https://local.test' };
|
|
});
|
|
|
|
// Mock the snapshot helpers so tests don't make real HTTP calls and we can
|
|
// observe which lookup path the route takes (local DB vs. cross-instance HTTP).
|
|
vi.mock('../utils/spaceInviteSnapshot.js', () => ({
|
|
fetchSpaceInviteSnapshot: vi.fn(),
|
|
getLocalInviteSnapshot: vi.fn(),
|
|
}));
|
|
import { fetchSpaceInviteSnapshot, getLocalInviteSnapshot } from '../utils/spaceInviteSnapshot.js';
|
|
|
|
function applyMigrations(db: Database.Database): void {
|
|
const migrationsDir = path.resolve(__dirname, '../../drizzle');
|
|
const files = fs.readdirSync(migrationsDir).filter(f => f.endsWith('.sql')).sort();
|
|
for (const f of files) {
|
|
const sqlText = fs.readFileSync(path.join(migrationsDir, f), 'utf8');
|
|
const statements = sqlText.split(/-->\s*statement-breakpoint/);
|
|
for (const stmt of statements) {
|
|
const clean = stmt.trim();
|
|
if (clean) db.exec(clean);
|
|
}
|
|
}
|
|
}
|
|
|
|
interface UserSeed {
|
|
id: string;
|
|
username: string;
|
|
displayName?: string | null;
|
|
}
|
|
|
|
function seedUser(u: UserSeed): void {
|
|
testDb.insert(schema.users).values({
|
|
id: u.id,
|
|
username: u.username,
|
|
displayName: u.displayName ?? null,
|
|
passwordHash: 'x',
|
|
status: 'offline',
|
|
isAdmin: 0,
|
|
isDeleted: 0,
|
|
discoverable: 1,
|
|
homeInstance: null,
|
|
homeUserId: null,
|
|
createdAt: Date.now(),
|
|
}).run();
|
|
}
|
|
|
|
function seedFriendship(a: string, b: string): void {
|
|
// The endpoint's friendship check looks at either ordering of (userId, friendId),
|
|
// so a single row is sufficient.
|
|
testDb.insert(schema.friends).values({
|
|
userId: a,
|
|
friendId: b,
|
|
createdAt: Date.now(),
|
|
}).run();
|
|
}
|
|
|
|
async function buildApp(): Promise<FastifyInstance> {
|
|
const app = Fastify({ logger: false });
|
|
const { dmRoutes } = await import('./dm.js');
|
|
await app.register(dmRoutes);
|
|
await app.ready();
|
|
return app;
|
|
}
|
|
|
|
describe('POST /api/dm/space-invite', () => {
|
|
let app: FastifyInstance;
|
|
|
|
beforeEach(async () => {
|
|
sqlite = new Database(':memory:');
|
|
testDb = drizzle(sqlite, { schema });
|
|
applyMigrations(sqlite);
|
|
seedUser({ id: 'alice', username: 'alice' });
|
|
seedUser({ id: 'bob', username: 'bob' });
|
|
seedFriendship('alice', 'bob');
|
|
currentUserId = 'alice';
|
|
(fetchSpaceInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReset();
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReset();
|
|
app = await buildApp();
|
|
});
|
|
|
|
it('rejects 400 not_a_friend if target is not a friend', async () => {
|
|
seedUser({ id: 'charlie', username: 'charlie' });
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'charlie' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc123',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(400);
|
|
expect(JSON.parse(res.body).error).toBe('not_a_friend');
|
|
// Snapshot should not be looked up if friendship gate fails first.
|
|
expect(fetchSpaceInviteSnapshot).not.toHaveBeenCalled();
|
|
expect(getLocalInviteSnapshot).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('rejects 400 invite_invalid when local snapshot lookup returns null', async () => {
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce(null);
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'badcode',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(400);
|
|
expect(JSON.parse(res.body).error).toBe('invite_invalid');
|
|
// No DM message should be inserted on failure.
|
|
const messageCount = testDb.select().from(schema.dmMessages).all().length;
|
|
expect(messageCount).toBe(0);
|
|
});
|
|
|
|
it('rejects 400 invite_invalid when snapshot.spaceId mismatches the requested spaceId', async () => {
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce({
|
|
spaceId: 'WRONG',
|
|
spaceName: 'X',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 1,
|
|
instanceName: 'Backspace',
|
|
});
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(400);
|
|
expect(JSON.parse(res.body).error).toBe('invite_invalid');
|
|
const messageCount = testDb.select().from(schema.dmMessages).all().length;
|
|
expect(messageCount).toBe(0);
|
|
});
|
|
|
|
it('rejects a space invite for a local request-only space (approval required)', async () => {
|
|
// Real local space with request visibility; the snapshot is mocked to match.
|
|
testDb.insert(schema.spaces).values({
|
|
id: 'S-REQ', name: 'Req', ownerId: 'alice', inviteCode: 'reqcode',
|
|
visibility: 'request', createdAt: 1,
|
|
}).run();
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce({
|
|
spaceId: 'S-REQ', spaceName: 'Req', description: null, icon: null,
|
|
avatarColor: null, memberCount: 1, instanceName: 'Backspace',
|
|
});
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S-REQ',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'reqcode',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(403);
|
|
// No DM card should be inserted for a request-only space.
|
|
expect(testDb.select().from(schema.dmMessages).all().length).toBe(0);
|
|
});
|
|
|
|
it('rejects a local request-only space even when spaceInstanceOrigin is spoofed to look remote', async () => {
|
|
// A caller can send an origin variant (trailing slash / different case) so
|
|
// `isLocal` is false and the fetch path is taken, but the space is genuinely
|
|
// local + request. The guard must not depend on the claimed origin.
|
|
testDb.insert(schema.spaces).values({
|
|
id: 'S-REQ2', name: 'Req2', ownerId: 'alice', inviteCode: 'reqcode2',
|
|
visibility: 'request', createdAt: 1,
|
|
}).run();
|
|
(fetchSpaceInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockResolvedValueOnce({
|
|
spaceId: 'S-REQ2', spaceName: 'Req2', description: null, icon: null,
|
|
avatarColor: null, memberCount: 1, instanceName: 'Backspace',
|
|
});
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S-REQ2',
|
|
spaceInstanceOrigin: 'https://local.test/', // trailing slash defeats strict isLocal compare
|
|
inviteCode: 'reqcode2',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(403);
|
|
expect(testDb.select().from(schema.dmMessages).all().length).toBe(0);
|
|
});
|
|
|
|
it('inserts a type=system message with parseable space_invite content on success', async () => {
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce({
|
|
spaceId: 'S1',
|
|
spaceName: 'Aether',
|
|
description: 'desc',
|
|
icon: null,
|
|
avatarColor: 'mint',
|
|
memberCount: 12,
|
|
instanceName: 'Backspace',
|
|
});
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
const body = JSON.parse(res.body) as {
|
|
dmChannelId: string;
|
|
messageId: string;
|
|
message: { type: string };
|
|
};
|
|
expect(body.dmChannelId).toBeTruthy();
|
|
expect(body.messageId).toBeTruthy();
|
|
expect(body.message.type).toBe('system');
|
|
|
|
const stored = testDb.select()
|
|
.from(schema.dmMessages)
|
|
.where(eq(schema.dmMessages.id, body.messageId))
|
|
.get();
|
|
expect(stored).toBeTruthy();
|
|
expect(stored?.type).toBe('system');
|
|
expect(stored?.userId).toBe('alice');
|
|
expect(stored?.dmChannelId).toBe(body.dmChannelId);
|
|
|
|
const parsed = JSON.parse(stored!.content!);
|
|
expect(parsed.event).toBe('space_invite');
|
|
expect(parsed.spaceId).toBe('S1');
|
|
expect(parsed.inviteCode).toBe('abc');
|
|
expect(parsed.snapshot.spaceName).toBe('Aether');
|
|
expect(parsed.snapshot.memberCount).toBe(12);
|
|
expect(parsed.snapshot.avatarColor).toBe('mint');
|
|
expect(parsed.snapshot.description).toBe('desc');
|
|
expect(parsed.snapshot.instanceName).toBe('Backspace');
|
|
|
|
// Canonicalization: empty origin (local) must be stored as the absolute home
|
|
// origin so relayed messages carry the correct value to remote recipients.
|
|
expect(parsed.spaceInstanceOrigin).toBe('https://local.test');
|
|
expect(parsed.spaceInstanceOrigin).not.toBe('');
|
|
});
|
|
|
|
it('reuses an existing 1-on-1 DM rather than creating a new one', async () => {
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValue({
|
|
spaceId: 'S1',
|
|
spaceName: 'Aether',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 1,
|
|
instanceName: 'Backspace',
|
|
});
|
|
|
|
const r1 = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(r1.statusCode).toBe(200);
|
|
|
|
const r2 = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(r2.statusCode).toBe(200);
|
|
|
|
const body1 = JSON.parse(r1.body) as { dmChannelId: string; messageId: string };
|
|
const body2 = JSON.parse(r2.body) as { dmChannelId: string; messageId: string };
|
|
expect(body2.dmChannelId).toBe(body1.dmChannelId);
|
|
expect(body2.messageId).not.toBe(body1.messageId);
|
|
|
|
// Exactly one DM channel exists between alice and bob.
|
|
const channels = testDb.select().from(schema.dmChannels).all();
|
|
expect(channels.length).toBe(1);
|
|
// Two system messages were inserted into that single channel.
|
|
const messages = testDb.select()
|
|
.from(schema.dmMessages)
|
|
.where(eq(schema.dmMessages.dmChannelId, body1.dmChannelId))
|
|
.all();
|
|
expect(messages.length).toBe(2);
|
|
expect(messages.every(m => m.type === 'system')).toBe(true);
|
|
});
|
|
|
|
it('uses local DB lookup (skips HTTP) when spaceInstanceOrigin is empty/local', async () => {
|
|
// Regression guard for the production hang: when the space is local, the
|
|
// route MUST NOT call fetchSpaceInviteSnapshot — that path tries to reach
|
|
// our own public domain over HTTPS, which fails inside Docker (NAT loopback).
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce({
|
|
spaceId: 'S1',
|
|
spaceName: 'Aether',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 1,
|
|
instanceName: 'Backspace',
|
|
});
|
|
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: '',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
expect(getLocalInviteSnapshot).toHaveBeenCalledWith('abc');
|
|
// CRITICAL: the HTTP fetch path must NOT run for local invites.
|
|
expect(fetchSpaceInviteSnapshot).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('uses local DB lookup when spaceInstanceOrigin equals our own origin', async () => {
|
|
// Same fast-path applies if the client sends our origin explicitly.
|
|
(getLocalInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockReturnValueOnce({
|
|
spaceId: 'S1',
|
|
spaceName: 'Aether',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 1,
|
|
instanceName: 'Backspace',
|
|
});
|
|
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: 'https://local.test',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
expect(getLocalInviteSnapshot).toHaveBeenCalledWith('abc');
|
|
expect(fetchSpaceInviteSnapshot).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('uses HTTP fetch path for cross-instance invites', async () => {
|
|
// Regression guard: when the space is on a different instance, we must
|
|
// hit the SSRF-validated HTTP path, not the local DB.
|
|
(fetchSpaceInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockResolvedValueOnce({
|
|
spaceId: 'S1',
|
|
spaceName: 'Remote',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 5,
|
|
instanceName: 'OtherHost',
|
|
});
|
|
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: 'https://remote.example',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
expect(fetchSpaceInviteSnapshot).toHaveBeenCalledWith('https://remote.example', 'abc');
|
|
expect(getLocalInviteSnapshot).not.toHaveBeenCalled();
|
|
});
|
|
|
|
it('preserves explicit remote spaceInstanceOrigin in stored payload', async () => {
|
|
(fetchSpaceInviteSnapshot as unknown as ReturnType<typeof vi.fn>).mockResolvedValueOnce({
|
|
spaceId: 'S1',
|
|
spaceName: 'Remote',
|
|
description: null,
|
|
icon: null,
|
|
avatarColor: null,
|
|
memberCount: 5,
|
|
instanceName: 'OtherHost',
|
|
});
|
|
|
|
const res = await app.inject({
|
|
method: 'POST',
|
|
url: '/api/dm/space-invite',
|
|
payload: {
|
|
target: { userId: 'bob' },
|
|
spaceId: 'S1',
|
|
spaceInstanceOrigin: 'https://other.example',
|
|
inviteCode: 'abc',
|
|
},
|
|
});
|
|
expect(res.statusCode).toBe(200);
|
|
const body = JSON.parse(res.body) as { messageId: string };
|
|
const stored = testDb.select()
|
|
.from(schema.dmMessages)
|
|
.where(eq(schema.dmMessages.id, body.messageId))
|
|
.get();
|
|
const parsed = JSON.parse(stored!.content!);
|
|
expect(parsed.spaceInstanceOrigin).toBe('https://other.example');
|
|
});
|
|
});
|