summary refs log tree commit diff
path: root/src/api/middlewares/BodyParser.ts
blob: 35db3c6fb6b604e180ea1d5ad15982a3c7a402a6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import bodyParser, { OptionsJson } from "body-parser";
import { NextFunction, Request, Response } from "express";
import { HTTPError } from "@fosscord/util";

export function BodyParser(opts?: OptionsJson) {
	const jsonParser = bodyParser.json(opts);

	return (req: Request, res: Response, next: NextFunction) => {
		if (!req.headers["content-type"]) req.headers["content-type"] = "application/json";

		jsonParser(req, res, (err) => {
			if (err) {
				// TODO: different errors for body parser (request size limit, wrong body type, invalid body, ...)
				return next(new HTTPError("Invalid Body", 400));
			}
			next();
		});
	};
}