-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJOISchemas.js
34 lines (30 loc) · 862 Bytes
/
JOISchemas.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
const BaseJoi = require("joi");
const sanitizeHtml = require("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;
},
},
},
});
const Joi = BaseJoi.extend(extension);
module.exports.postSchemaJoi = Joi.object({
title: Joi.string().min(3).max(30).required().escapeHTML(),
content: Joi.string().min(1).required().escapeHTML(),
});
module.exports.replySchemaJoi = Joi.object({
content: Joi.string().min(1).required().escapeHTML(),
});