obs-portal/_middleware/validate-request.js

20 lines
527 B
JavaScript
Raw Normal View History

module.exports = validateRequest;
function validateRequest(req, next, schema) {
console.log('validateRequest');
const options = {
abortEarly: false, // include all errors
allowUnknown: true, // ignore unknown props
2020-11-20 10:02:30 +00:00
stripUnknown: true, // remove unknown props
};
const { error, value } = schema.validate(req.body, options);
if (error) {
2020-11-20 10:02:30 +00:00
console.log('error: ', error);
next(`Validation error: ${error.details.map((x) => x.message).join(', ')}`);
} else {
req.body = value;
next();
}
2020-11-20 10:02:30 +00:00
}