-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschemas.js
45 lines (41 loc) · 1.46 KB
/
schemas.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
const BaseJoi = require('joi');
const sanitizeHTML = require('sanitize-html');
// Extension to make sure HTML is not injected into our site. Using Joi and Sanitize-HTML
const extension = (joi) => ({
type: 'string',
base: joi.string(),
messages: {
'string.escapeHTML': '{{#label}} must not include HTML!'
},
rules: {
escapeHTML: {
validate(value, helpers) {
const clean = sanitizeHTML(value, {
allowedTags: [],
allowedAttributes: {},
});
if (clean !== value) return helpers.error('string.escapeHTML', { value })
return clean;
}
}
}
});
// This adds the extension to the Joi package. This gives us the option to use escapeHTML on our string validation
const Joi = BaseJoi.extend(extension);
// Campground Schema for Joi
module.exports.campgroundSchema = Joi.object({
campground: Joi.object({
title: Joi.string().required().escapeHTML(),
price: Joi.number().required().min(0),
// image: Joi.string().required(),
location: Joi.string().required().escapeHTML(),
description: Joi.string().required().escapeHTML()
}).required(),
deleteImages: Joi.array()
});
module.exports.reviewSchema = Joi.object({
review: Joi.object({
rating: Joi.number().min(0).max(5).required(),
body: Joi.string().required().escapeHTML()
}).required()
});