Files
freeCodeCamp/api/src/plugins/cors.ts
2025-04-23 22:50:12 +02:00

47 lines
1.6 KiB
TypeScript

import { FastifyPluginCallback } from 'fastify';
import fp from 'fastify-plugin';
import { HOME_LOCATION } from '../utils/env';
import { allowedOrigins } from '../utils/allowed-origins';
const cors: FastifyPluginCallback = (fastify, _options, done) => {
fastify.options('*', (_req, reply) => {
void reply.send();
});
fastify.addHook('onRequest', async (req, reply) => {
const logger = fastify.log.child({ req });
const origin = req.headers.origin;
if (origin && allowedOrigins.includes(origin)) {
// Do we want to log allowed origins?
void reply.header('Access-Control-Allow-Origin', origin);
} else {
// TODO: Discuss if this is the correct approach. Standard practice is to
// reflect one of a list of allowed origins and handle development
// separately. If we switch to that approach we can replace use
// @fastify/cors instead.
void reply.header('Access-Control-Allow-Origin', HOME_LOCATION);
if (origin && !req.url?.startsWith('/status/')) {
logger.info(`Received request from disallowed origin: ${origin}`);
}
}
void reply
.header(
'Access-Control-Allow-Headers',
'Origin, X-Requested-With, Content-Type, Accept, Csrf-Token, Coderoad-User-Token, Exam-Environment-Authorization-Token'
)
.header('Access-Control-Allow-Credentials', true)
// These 4 are the only methods we use
.header('Access-Control-Allow-Methods', 'GET, PUT, POST, DELETE')
// Vary: Origin to prevent cache poisoning
// TODO: do we need Vary: Accept-Encoding?
.header('Vary', 'Origin, Accept-Encoding');
});
done();
};
export default fp(cors);