users.status was only flipped back to offline by the WebSocket disconnect path (5s grace timer in ConnectionManager). Process exits (deploy/crash/OOM) lose those in-memory timers, freezing any non-offline row at its last value and making the user appear permanently online to friends and space co-members. Confirmed in production on the Pi instance: a user appeared online for ~3 days with no live socket. Add resetStalePresenceOnBoot() in utils/presenceBoot.ts and call it from index.ts after getDb()/seedDatabase() and before WebSocket route registration. The reset is federation-safe: it only updates rows where home_instance IS NULL (replicated stubs are projections of remote presence and must not be stomped) and is_deleted = 0 (tombstoned users are excluded from broadcasts). Also remove the redundant status='online' write from POST /api/auth/login. A successful REST login does not imply a live socket; the WS auth handshake is the single source of truth. Login alone could otherwise produce the same stuck-online row when a client logs in and never establishes a WS. Tests cover: locally-homed online/idle/dnd reset, replicated rows untouched, tombstoned rows untouched, idempotence, mixed populations. Updates docs/systems/activity-presence.md (Connect/Disconnect Flow, new Boot Reset section) and docs/systems/auth.md (login no longer mutates status).
156 lines
5.2 KiB
TypeScript
156 lines
5.2 KiB
TypeScript
import Fastify from 'fastify';
|
|
import cors from '@fastify/cors';
|
|
import rateLimit from '@fastify/rate-limit';
|
|
import websocket from '@fastify/websocket';
|
|
import multipart from '@fastify/multipart';
|
|
import fastifyStatic from '@fastify/static';
|
|
import { config } from './config.js';
|
|
import { getDb, getRawDb } from './db/index.js';
|
|
import { seedDatabase } from './db/seed.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 { dmRoutes } from './routes/dm.js';
|
|
import { livekitRoutes } from './routes/livekit.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 { 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 './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'],
|
|
allowedHeaders: ['Content-Type', 'Authorization'],
|
|
});
|
|
|
|
await app.register(rateLimit, {
|
|
max: 200,
|
|
timeWindow: '1 minute',
|
|
keyGenerator: (request) => (request as any).userId || request.ip,
|
|
errorResponseBuilder: (_request, context) => ({
|
|
statusCode: 429,
|
|
error: 'Too Many Requests',
|
|
message: 'Rate limit exceeded',
|
|
retryAfter: Math.ceil(context.ttl / 1000),
|
|
}),
|
|
});
|
|
|
|
await app.register(websocket);
|
|
|
|
await app.register(multipart, {
|
|
limits: {
|
|
fileSize: 5 * 1024 * 1024 * 1024, // 5GB hard ceiling — actual limit enforced per-request from DB
|
|
},
|
|
});
|
|
|
|
// 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();
|
|
await seedDatabase();
|
|
|
|
// 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(dmRoutes);
|
|
await app.register(livekitRoutes);
|
|
await app.register(socialRoutes);
|
|
await app.register(settingsRoutes);
|
|
await app.register(utilRoutes);
|
|
await app.register(instanceRoutes);
|
|
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)
|
|
startFederationWorkers();
|
|
|
|
const shutdown = async () => {
|
|
console.log('Shutting down...');
|
|
stopFederationWorkers();
|
|
await app.close();
|
|
process.exit(0);
|
|
};
|
|
|
|
process.on('SIGINT', shutdown);
|
|
process.on('SIGTERM', shutdown);
|
|
}
|
|
|
|
main();
|