Notes/src/routes/error_handlers.ts
2024-10-22 19:17:52 +03:00

42 lines
1.1 KiB
TypeScript

import { Application, NextFunction, Request, Response } from 'express';
import log from "../services/log.js";
function register(app: Application) {
app.use((err: any, req: Request, res: Response, next: NextFunction) => {
if (err.code !== 'EBADCSRFTOKEN') {
return next(err);
}
log.error(`Invalid CSRF token: ${req.headers['x-csrf-token']}, secret: ${req.cookies['_csrf']}`);
err = new Error('Invalid CSRF token');
err.status = 403;
next(err);
});
// catch 404 and forward to error handler
app.use((req, res, next) => {
const err = new Error(`Router not found for request ${req.method} ${req.url}`);
(err as any).status = 404;
next(err);
});
// error handler
app.use((err: any, req: Request, res: Response, next: NextFunction) => {
if (err.status !== 404) {
log.info(err);
} else {
log.info(`${err.status} ${req.method} ${req.url}`);
}
res.status(err.status || 500);
res.send({
message: err.message
});
});
}
export default {
register
};