CI / Build & test (Node 20) (push) Canceled after 0s
CI / Build & test (Node 24) (push) Canceled after 0s
CI / Build & test (push) Canceled after 0s
CodeQL / Analyze (javascript-typescript) (push) Canceled after 0s
Security / Secret scan (gitleaks) (push) Canceled after 0s
Security / Dependency scan (OSV-Scanner) (push) Canceled after 0s
Security / IaC/config scan (Trivy) (push) Canceled after 0s
Security / License compliance scan (Trivy) (push) Canceled after 0s
OpenSSF Scorecard / Scorecard analysis (push) Canceled after 0s
Soundboard: the trigger travels over the WebSocket and every client in the call plays the clip locally, instead of mixing it into the presser's microphone or publishing a LiveKit track. No upstream bandwidth, no media stack changes, and the clip is not degraded by voice processing. Fan-out uses a new sendToRoomParticipants rather than sendToRoom: the latter broadcasts a space room to the whole space, which is right for the presence the sidebar shows and wrong for anything audible. The cooldown is enforced server-side — a client-side one only slows down people not trying to abuse it, and a soundboard is the easiest thing here to turn into a weapon. Playing is open to anyone in the call; deciding what the buttons are needs MANAGE_SPACE. Account menu: the name in the user bar had cursor-pointer and no handler, so the interface was already promising a click that did nothing. Offers profile, status and copy-id — not the Clips or account switching the reference design shows, which would be dead UI here. Call timer: startedAt comes from the server, so a late joiner sees the call's age rather than their own arrival. Empty space rooms are destroyed already, which is what makes the next call start from zero — no reset logic needed.
210 lines
7.5 KiB
TypeScript
210 lines
7.5 KiB
TypeScript
import Fastify from 'fastify';
|
|
import cors from '@fastify/cors';
|
|
import rateLimit from '@fastify/rate-limit';
|
|
import websocket from '@fastify/websocket';
|
|
import fastifyStatic from '@fastify/static';
|
|
import { config } from './config.js';
|
|
import { getDb, getRawDb, closeDatabase } from './db/index.js';
|
|
import { checkFfmpeg } from './utils/thumbnail.js';
|
|
import { authRoutes } from './routes/auth.js';
|
|
import { userRoutes } from './routes/users.js';
|
|
import { spaceRoutes } from './routes/spaces.js';
|
|
import { channelRoutes } from './routes/channels.js';
|
|
import { messageRoutes } from './routes/messages.js';
|
|
import { uploadRoutes } from './routes/uploads.js';
|
|
import { filesRoutes } from './routes/files.js';
|
|
import { dmRoutes } from './routes/dm.js';
|
|
import { livekitRoutes } from './routes/livekit.js';
|
|
import { spotifyRoutes } from './routes/spotify.js';
|
|
import { auditRoutes } from './routes/audit.js';
|
|
import { statsRoutes } from './routes/stats.js';
|
|
import { soundboardRoutes } from './routes/soundboard.js';
|
|
import { closeOrphanedVoiceSessions } from './utils/voiceSessions.js';
|
|
import { socialRoutes } from './routes/social.js';
|
|
import { settingsRoutes } from './routes/settings.js';
|
|
import { utilRoutes } from './routes/utils.js';
|
|
import { instanceRoutes } from './routes/instance.js';
|
|
import { invitesRoutes } from './routes/invites.js';
|
|
import { exploreRoutes } from './routes/explore.js';
|
|
import { searchRoutes } from './routes/search.js';
|
|
import { adminRoutes } from './routes/admin.js';
|
|
import { gifRoutes } from './routes/gif.js';
|
|
import { federationRoutes } from './routes/federation.js';
|
|
import { startFederationWorkers, stopFederationWorkers } from './utils/federationWorker.js';
|
|
import { startBackupWorker, stopBackupWorker } from './utils/backupWorker.js';
|
|
import './utils/federationRollback.js'; // Side-effect: registers rollback callbacks for outbox terminal failures.
|
|
import { registerCallRelayHooks } from './ws/events.js';
|
|
import { resetStalePresenceOnBoot } from './utils/presenceBoot.js';
|
|
|
|
import { registerWebSocket } from './ws/handler.js';
|
|
import path from 'path';
|
|
import fs from 'fs';
|
|
|
|
async function main(): Promise<void> {
|
|
const app = Fastify({
|
|
trustProxy: true,
|
|
logger: {
|
|
level: 'info',
|
|
},
|
|
});
|
|
|
|
await app.register(cors, {
|
|
origin: true,
|
|
credentials: true,
|
|
methods: ['GET', 'POST', 'PUT', 'PATCH', 'DELETE', 'OPTIONS', 'HEAD'],
|
|
// Tus-* and Upload-* headers are required for federated tus uploads
|
|
// (cross-origin POST/HEAD/PATCH/DELETE on /api/files/*). Without them the
|
|
// browser preflight blocks the request before it ever reaches the server.
|
|
allowedHeaders: [
|
|
'Content-Type',
|
|
'Authorization',
|
|
'Tus-Resumable',
|
|
'Upload-Length',
|
|
'Upload-Offset',
|
|
'Upload-Metadata',
|
|
'Upload-Defer-Length',
|
|
'Upload-Concat',
|
|
'Upload-Checksum',
|
|
'X-HTTP-Method-Override',
|
|
],
|
|
// Expose tus response headers so tus-js-client can read them across origins
|
|
// (Location is the per-upload URL returned on POST; the rest are standard
|
|
// tus protocol headers).
|
|
exposedHeaders: [
|
|
'Location',
|
|
'Tus-Resumable',
|
|
'Tus-Version',
|
|
'Tus-Extension',
|
|
'Tus-Max-Size',
|
|
'Tus-Checksum-Algorithm',
|
|
'Upload-Offset',
|
|
'Upload-Length',
|
|
'Upload-Metadata',
|
|
'Upload-Expires',
|
|
],
|
|
});
|
|
|
|
await app.register(rateLimit, {
|
|
max: 200,
|
|
timeWindow: '1 minute',
|
|
keyGenerator: (request) => (request as any).userId || request.ip,
|
|
// Test harnesses set DISABLE_RATE_LIMITS=1 to bypass per-IP exhaustion when
|
|
// many tests share the loopback IP. Default unset; production unchanged.
|
|
allowList: () => process.env.DISABLE_RATE_LIMITS === '1' || process.env.DISABLE_RATE_LIMITS === 'true',
|
|
errorResponseBuilder: (_request, context) => ({
|
|
statusCode: 429,
|
|
error: 'Too Many Requests',
|
|
message: 'Rate limit exceeded',
|
|
retryAfter: Math.ceil(context.ttl / 1000),
|
|
}),
|
|
});
|
|
|
|
await app.register(websocket);
|
|
|
|
// Serve built frontend in production
|
|
const webDistPath = path.resolve(import.meta.dirname ?? '.', '../../web/dist');
|
|
if (fs.existsSync(webDistPath)) {
|
|
await app.register(fastifyStatic, {
|
|
root: webDistPath,
|
|
prefix: '/',
|
|
wildcard: false,
|
|
});
|
|
}
|
|
|
|
// Initialize database
|
|
getDb();
|
|
|
|
// A restart leaves voice sessions open with no way to know when they really
|
|
// ended. Sweep them before anything can read the statistics.
|
|
closeOrphanedVoiceSessions();
|
|
|
|
// Reset orphaned `users.status` rows for locally-homed users. The previous
|
|
// process's in-memory disconnect timers are gone, so any non-offline row
|
|
// is stale by construction. Replicated (federated) rows are skipped — their
|
|
// status is a projection of remote presence, not local WS state. Must run
|
|
// before WS auth is accepted so the first connection broadcasts the correct
|
|
// online transition. See utils/presenceBoot.ts.
|
|
resetStalePresenceOnBoot();
|
|
|
|
await app.register(authRoutes);
|
|
await app.register(userRoutes);
|
|
await app.register(spaceRoutes);
|
|
await app.register(channelRoutes);
|
|
await app.register(messageRoutes);
|
|
await app.register(uploadRoutes);
|
|
await app.register(filesRoutes);
|
|
await app.register(dmRoutes);
|
|
await app.register(livekitRoutes);
|
|
await app.register(spotifyRoutes);
|
|
await app.register(auditRoutes);
|
|
await app.register(statsRoutes);
|
|
await app.register(soundboardRoutes);
|
|
await app.register(socialRoutes);
|
|
await app.register(settingsRoutes);
|
|
await app.register(utilRoutes);
|
|
await app.register(instanceRoutes);
|
|
await app.register(invitesRoutes);
|
|
await app.register(exploreRoutes);
|
|
await app.register(searchRoutes);
|
|
await app.register(adminRoutes);
|
|
await app.register(gifRoutes);
|
|
await app.register(federationRoutes);
|
|
await app.register(registerWebSocket);
|
|
|
|
app.get('/api/health', async () => {
|
|
return { status: 'ok', timestamp: Date.now() };
|
|
});
|
|
|
|
// SPA fallback - serve index.html for non-API routes
|
|
if (fs.existsSync(webDistPath)) {
|
|
app.setNotFoundHandler((request, reply) => {
|
|
if (request.url.startsWith('/api/') || request.url.startsWith('/ws')) {
|
|
return reply.code(404).send({ error: 'Not found', statusCode: 404 });
|
|
}
|
|
return reply.sendFile('index.html');
|
|
});
|
|
}
|
|
|
|
try {
|
|
await app.listen({ port: config.port, host: config.host });
|
|
console.log(`Backspace server running at http://${config.host}:${config.port}`);
|
|
} catch (err) {
|
|
app.log.error(err);
|
|
process.exit(1);
|
|
}
|
|
|
|
// Log ffmpeg availability at startup (so admins see the warning immediately)
|
|
checkFfmpeg();
|
|
|
|
// Register WS-layer call relay hooks (ring-timeout fan-out).
|
|
registerCallRelayHooks();
|
|
|
|
// Start federation background workers (outbox delivery, file download, health check,
|
|
// storage janitor, federated-call sentinel). Skip when DISABLE_FEDERATION_WORKERS is
|
|
// set to '1' or 'true' (matches envBool semantics in config.ts; used by integration
|
|
// tests to keep two-instance harnesses quiet).
|
|
const disableWorkers = process.env.DISABLE_FEDERATION_WORKERS === '1'
|
|
|| process.env.DISABLE_FEDERATION_WORKERS === 'true';
|
|
if (disableWorkers) {
|
|
console.log('[startup] federation workers disabled via DISABLE_FEDERATION_WORKERS');
|
|
} else {
|
|
startFederationWorkers();
|
|
}
|
|
|
|
startBackupWorker();
|
|
|
|
const shutdown = async () => {
|
|
console.log('Shutting down...');
|
|
stopFederationWorkers();
|
|
stopBackupWorker();
|
|
await app.close();
|
|
closeDatabase(); // checkpoints WAL — leaves a complete on-disk file
|
|
process.exit(0);
|
|
};
|
|
|
|
process.on('SIGINT', shutdown);
|
|
process.on('SIGTERM', shutdown);
|
|
}
|
|
|
|
main();
|