mirror of
https://github.com/docmost/docmost
synced 2025-03-28 21:13:28 +00:00
81 lines
2.1 KiB
TypeScript
81 lines
2.1 KiB
TypeScript
import "./common/sentry/instrument";
|
|
import { NestFactory } from '@nestjs/core';
|
|
import { AppModule } from './app.module';
|
|
import {
|
|
FastifyAdapter,
|
|
NestFastifyApplication,
|
|
} from '@nestjs/platform-fastify';
|
|
import { Logger, NotFoundException, ValidationPipe } from '@nestjs/common';
|
|
import { TransformHttpResponseInterceptor } from './common/interceptors/http-response.interceptor';
|
|
import fastifyMultipart from '@fastify/multipart';
|
|
import { WsRedisIoAdapter } from './ws/adapter/ws-redis.adapter';
|
|
import { InternalLogFilter } from './common/logger/internal-log-filter';
|
|
import fastifyCookie from '@fastify/cookie';
|
|
|
|
async function bootstrap() {
|
|
const app = await NestFactory.create<NestFastifyApplication>(
|
|
AppModule,
|
|
new FastifyAdapter({
|
|
ignoreTrailingSlash: true,
|
|
ignoreDuplicateSlashes: true,
|
|
maxParamLength: 500,
|
|
trustProxy: true,
|
|
}),
|
|
{
|
|
logger: new InternalLogFilter(),
|
|
},
|
|
);
|
|
|
|
app.setGlobalPrefix('api');
|
|
|
|
const redisIoAdapter = new WsRedisIoAdapter(app);
|
|
await redisIoAdapter.connectToRedis();
|
|
|
|
app.useWebSocketAdapter(redisIoAdapter);
|
|
|
|
await app.register(fastifyMultipart as any);
|
|
await app.register(fastifyCookie as any);
|
|
|
|
app
|
|
.getHttpAdapter()
|
|
.getInstance()
|
|
.addHook('preHandler', function (req, reply, done) {
|
|
if (
|
|
req.originalUrl.startsWith('/api') &&
|
|
!req.originalUrl.startsWith('/api/auth/setup') &&
|
|
!req.originalUrl.startsWith('/api/health')
|
|
) {
|
|
if (!req.raw?.['workspaceId']) {
|
|
throw new NotFoundException('Workspace not found');
|
|
}
|
|
done();
|
|
} else {
|
|
done();
|
|
}
|
|
});
|
|
|
|
app.useGlobalPipes(
|
|
new ValidationPipe({
|
|
whitelist: true,
|
|
stopAtFirstError: true,
|
|
transform: true,
|
|
}),
|
|
);
|
|
|
|
app.enableCors();
|
|
|
|
app.useGlobalInterceptors(new TransformHttpResponseInterceptor());
|
|
app.enableShutdownHooks();
|
|
|
|
const logger = new Logger('NestApplication');
|
|
|
|
const port = process.env.PORT || 3000;
|
|
await app.listen(port, '0.0.0.0', () => {
|
|
logger.log(
|
|
`Listening on http://127.0.0.1:${port} / ${process.env.APP_URL}`,
|
|
);
|
|
});
|
|
}
|
|
|
|
bootstrap();
|