-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathschemas.js
51 lines (45 loc) · 1.67 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
46
47
48
49
50
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.educationSchema = Joi.object({
name: Joi.string().required().escapeHTML(),
description: Joi.string().required().escapeHTML(),
link: Joi.string().uri().required(),
startDate: Joi.date().required(),
endDate: Joi.date().allow(null, "").optional()
});
module.exports.experienceSchema = Joi.object({
title: Joi.string().required().escapeHTML(),
employer: Joi.string().required().escapeHTML(),
link: Joi.string().uri().required().escapeHTML(),
stack: Joi.string().required().escapeHTML(),
startDate: Joi.date().required(),
endDate: Joi.date().allow(null, "").optional()
});
module.exports.projectSchema = Joi.object({
name: Joi.string().required().escapeHTML(),
shortDescription: Joi.string().required().escapeHTML(),
longDescription: Joi.string().required().escapeHTML(),
stack: Joi.string().required().escapeHTML(),
liveLink: Joi.string().uri().escapeHTML().allow(null, "").optional(),
sourceLink: Joi.string().uri().escapeHTML().allow(null, "").optional()
});