-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvalidators.js
46 lines (37 loc) · 1.11 KB
/
validators.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
const validateMovie = (req, res, next) => {
const { title, director, year, color, duration } = req.body;
const errors = [];
if (title == null) {
errors.push({ field: "title", message: "This field is required" });
} else if (title.length >= 255){
errors.push({ field: "title", message: "Should contain less than 255 characters" });
}
// ...
if (errors.length) {
res.status(422).json({ validationErrors: errors });
} else {
next();
}
};
const Joi = require("joi");
const userSchema = Joi.object({
email: Joi.string().email().max(255).required(),
firstname: Joi.string().max(255).required(),
lastname: Joi.string().max(255).required(),
});
const validateUser = (req, res, next) => {
const { firstname, lastname, email } = req.body;
const { error } = userSchema.validate(
{ firstname, lastname, email },
{ abortEarly: false }
);
if (error) {
res.status(422).json({ validationErrors: error.details });
} else {
next();
}
};
module.exports = {
validateMovie,
validateUser,
};