2025-01-09 18:36:24 +02:00
|
|
|
import type { Application, NextFunction, Request, Response } from "express";
|
2024-07-18 21:35:17 +03:00
|
|
|
import log from "../services/log.js";
|
2025-03-07 22:31:55 +01:00
|
|
|
import NotFoundError from "../errors/not_found_error.js";
|
2025-03-07 23:29:35 +01:00
|
|
|
import ForbiddenError from "../errors/forbidden_error.js";
|
2023-05-07 15:23:46 +02:00
|
|
|
|
2024-04-07 14:13:57 +03:00
|
|
|
function register(app: Application) {
|
|
|
|
app.use((err: any, req: Request, res: Response, next: NextFunction) => {
|
2025-01-09 18:07:02 +02:00
|
|
|
if (err.code !== "EBADCSRFTOKEN") {
|
2023-05-07 15:23:46 +02:00
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
|
2025-01-09 18:07:02 +02:00
|
|
|
log.error(`Invalid CSRF token: ${req.headers["x-csrf-token"]}, secret: ${req.cookies["_csrf"]}`);
|
2025-03-07 23:29:35 +01:00
|
|
|
next(new ForbiddenError("Invalid CSRF token"));
|
2023-05-07 15:23:46 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
// catch 404 and forward to error handler
|
|
|
|
app.use((req, res, next) => {
|
2025-03-07 22:31:55 +01:00
|
|
|
const err = new NotFoundError(`Router not found for request ${req.method} ${req.url}`);
|
2023-05-07 15:23:46 +02:00
|
|
|
next(err);
|
|
|
|
});
|
|
|
|
|
|
|
|
// error handler
|
2025-03-06 23:21:47 +01:00
|
|
|
app.use((err: any, req: Request, res: Response, _next: NextFunction) => {
|
2024-10-20 01:19:02 +03:00
|
|
|
if (err.status !== 404) {
|
2023-05-07 15:23:46 +02:00
|
|
|
log.info(err);
|
2024-10-20 01:19:02 +03:00
|
|
|
} else {
|
|
|
|
log.info(`${err.status} ${req.method} ${req.url}`);
|
2023-05-07 15:23:46 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
res.status(err.status || 500);
|
|
|
|
res.send({
|
|
|
|
message: err.message
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-07-18 21:42:44 +03:00
|
|
|
export default {
|
2023-05-07 15:23:46 +02:00
|
|
|
register
|
|
|
|
};
|