- Add PWA infrastructure: vite-plugin-pwa, manifest, service worker, SW update prompt component, placeholder icons, Apple meta tags - Harden API client: 401 auto-logout, AbortController timeouts (30s standard, 120s uploads), onUnauthorized callback - Fix memory leaks: clear voice user status on leave, clean up all Maps (channelToSpaceMap, permissions, etc.) on removeSpace - Upgrade error boundary to Aether Drift design with Try Again button, collapsible stack trace, and componentDidCatch logging - Configure desktop icon paths in electron-builder.yml - Remove sticker feature (server routes, schema, types, UI components) - Fix Docker build: use **/node_modules in .dockerignore to prevent COPY from clobbering pnpm-installed workspace dependencies - Add vite-env.d.ts declarations for noise suppressor wasm imports - Exclude test files from tsc build via tsconfig
137 lines
4.1 KiB
TypeScript
137 lines
4.1 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 { backfillThumbnails } from './db/migrate.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 { 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: config.maxUploadSize,
|
|
},
|
|
});
|
|
|
|
// 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();
|
|
|
|
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(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);
|
|
}
|
|
|
|
// Fire-and-forget: backfill thumbnails for existing images (runs once)
|
|
backfillThumbnails(getRawDb(), config.uploadDir).catch(err => {
|
|
console.error('Thumbnail backfill failed (non-fatal):', err);
|
|
});
|
|
|
|
const shutdown = async () => {
|
|
console.log('Shutting down...');
|
|
await app.close();
|
|
process.exit(0);
|
|
};
|
|
|
|
process.on('SIGINT', shutdown);
|
|
process.on('SIGTERM', shutdown);
|
|
}
|
|
|
|
main();
|