Joi validation for your Mongoose models without the hassle of maintaining two schemas.
npm install joigoose
We must pass Mongoose into Joigoose so it knows about ObjectIds and other Mongoose specific stuff:
var Mongoose = require('mongoose');
var Joigoose = require('joigoose')(Mongoose);
Mongoose specific options can be specified in the meta
object (see below).
Arrays with items of different types will end up with the Mongoose type Mixed
.
Ideally, Joi schemas shouldn't have to contain Mongoose specific types, such as Mongoose.Schema.Types.ObjectId
because these Joi schemas may be required to work on frontend clients too.
var joiUserSchema = Joi.object({
name: Joi.object({
first: Joi.string().required(),
last: Joi.string().required()
}),
email: Joi.string().email().required(),
bestFriend: Joi.string().meta({ type: 'ObjectId', ref: 'User' }),
metaInfo: Joi.any()
});
var mongooseUserSchema = Joigoose.convert(joiUserSchema);
User = Mongoose.model('User', mongooseUserSchema);
var aGoodUser = new User({
name: {
first: 'Barry',
last: 'White'
},
email: '[email protected]',
metaInfo: {
hobbies: ['cycling', 'dancing', 'listening to Shpongle']
}
});
aGoodUser.save(function (err, result) {
// -> Success!
});
var aBadUser = new User({
name: {
first: 'Barry',
last: 'White'
},
email: 'Im not an email address!'
});
aBadUser.save(function (err, result) {
// -> Error!
// {
// "message": "User validation failed",
// "name": "ValidationError",
// "errors": {
// "email": {
// "properties": {
// "type": "user defined",
// "message": "Validator failed for path `{PATH}` with value `{VALUE}`",
// "path": "email",
// "value": "Im not an email address!"
// },
// "message": "Validator failed for path `email` with value `Im not an email address!`",
// "name": "ValidatorError",
// "kind": "user defined",
// "path": "email",
// "value": "Im not an email address!"
// }
// }
// }
});
I didn't spend long writing this, but I've aimed for 100% code coverage. It can be so much better, so help me out! Submit your issues and pull requests on GitHub.
- No peer based validation (
and
,nand
,or
,xor
,with
,without
,ref
,assert
,alternatives
,when
etc) - No
Joi.binary
object type - No
Joi.func
object type