Files

277 lines
6.8 KiB
JavaScript
Raw Permalink Normal View History

2014-09-14 07:04:16 -04:00
/*!
* Module requirements.
*/
2015-11-24 22:08:58 -08:00
var SchemaType = require('../schematype'),
CastError = SchemaType.CastError,
errorMessages = require('../error').messages,
utils = require('../utils'),
Document;
2014-09-14 07:04:16 -04:00
/**
* Number SchemaType constructor.
*
* @param {String} key
* @param {Object} options
* @inherits SchemaType
* @api private
*/
2015-11-24 22:08:58 -08:00
function SchemaNumber(key, options) {
2014-09-14 07:04:16 -04:00
SchemaType.call(this, key, options, 'Number');
2015-11-24 22:08:58 -08:00
}
/**
* This schema type's name, to defend against minifiers that mangle
* function names.
*
* @api private
*/
SchemaNumber.schemaName = 'Number';
2014-09-14 07:04:16 -04:00
/*!
* Inherits from SchemaType.
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype = Object.create( SchemaType.prototype );
SchemaNumber.prototype.constructor = SchemaNumber;
2014-09-14 07:04:16 -04:00
/**
* Required validator for number
*
* @api private
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.checkRequired = function checkRequired(value, doc) {
2014-09-14 07:04:16 -04:00
if (SchemaType._isRef(this, value, doc, true)) {
return null != value;
} else {
return typeof value == 'number' || value instanceof Number;
}
};
/**
* Sets a minimum number validator.
*
* ####Example:
*
* var s = new Schema({ n: { type: Number, min: 10 })
* var M = db.model('M', s)
* var m = new M({ n: 9 })
* m.save(function (err) {
* console.error(err) // validator error
* m.n = 10;
* m.save() // success
* })
*
2015-11-24 22:08:58 -08:00
* // custom error messages
* // We can also use the special {MIN} token which will be replaced with the invalid value
* var min = [10, 'The value of path `{PATH}` ({VALUE}) is beneath the limit ({MIN}).'];
* var schema = new Schema({ n: { type: Number, min: min })
* var M = mongoose.model('Measurement', schema);
* var s= new M({ n: 4 });
* s.validate(function (err) {
* console.log(String(err)) // ValidationError: The value of path `n` (4) is beneath the limit (10).
* })
*
2014-09-14 07:04:16 -04:00
* @param {Number} value minimum number
2015-11-24 22:08:58 -08:00
* @param {String} [message] optional custom error message
2014-09-14 07:04:16 -04:00
* @return {SchemaType} this
2015-11-24 22:08:58 -08:00
* @see Customized Error Messages #error_messages_MongooseError-messages
2014-09-14 07:04:16 -04:00
* @api public
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.min = function(value, message) {
2014-09-14 07:04:16 -04:00
if (this.minValidator) {
2015-11-24 22:08:58 -08:00
this.validators = this.validators.filter(function(v) {
return v.validator != this.minValidator;
}, this);
2014-09-14 07:04:16 -04:00
}
2015-11-24 22:08:58 -08:00
if (null != value) {
var msg = message || errorMessages.Number.min;
msg = msg.replace(/{MIN}/, value);
this.validators.push({
validator: this.minValidator = function(v) {
return v == null || v >= value;
},
message: msg,
type: 'min',
min: value
});
2014-09-14 07:04:16 -04:00
}
return this;
};
/**
* Sets a maximum number validator.
*
* ####Example:
*
* var s = new Schema({ n: { type: Number, max: 10 })
* var M = db.model('M', s)
* var m = new M({ n: 11 })
* m.save(function (err) {
* console.error(err) // validator error
* m.n = 10;
* m.save() // success
* })
*
2015-11-24 22:08:58 -08:00
* // custom error messages
* // We can also use the special {MAX} token which will be replaced with the invalid value
* var max = [10, 'The value of path `{PATH}` ({VALUE}) exceeds the limit ({MAX}).'];
* var schema = new Schema({ n: { type: Number, max: max })
* var M = mongoose.model('Measurement', schema);
* var s= new M({ n: 4 });
* s.validate(function (err) {
* console.log(String(err)) // ValidationError: The value of path `n` (4) exceeds the limit (10).
* })
*
2014-09-14 07:04:16 -04:00
* @param {Number} maximum number
2015-11-24 22:08:58 -08:00
* @param {String} [message] optional custom error message
2014-09-14 07:04:16 -04:00
* @return {SchemaType} this
2015-11-24 22:08:58 -08:00
* @see Customized Error Messages #error_messages_MongooseError-messages
2014-09-14 07:04:16 -04:00
* @api public
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.max = function(value, message) {
2014-09-14 07:04:16 -04:00
if (this.maxValidator) {
2015-11-24 22:08:58 -08:00
this.validators = this.validators.filter(function(v) {
return v.validator != this.maxValidator;
}, this);
2014-09-14 07:04:16 -04:00
}
2015-11-24 22:08:58 -08:00
if (null != value) {
var msg = message || errorMessages.Number.max;
msg = msg.replace(/{MAX}/, value);
this.validators.push({
validator: this.maxValidator = function(v) {
return v == null || v <= value;
},
message: msg,
type: 'max',
max: value
});
2014-09-14 07:04:16 -04:00
}
return this;
};
/**
* Casts to number
*
* @param {Object} value value to cast
* @param {Document} doc document that triggers the casting
* @param {Boolean} init
* @api private
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.cast = function(value, doc, init) {
2014-09-14 07:04:16 -04:00
if (SchemaType._isRef(this, value, doc, init)) {
// wait! we may need to cast this to a document
if (null == value) {
return value;
}
// lazy load
Document || (Document = require('./../document'));
if (value instanceof Document) {
value.$__.wasPopulated = true;
return value;
}
// setting a populated path
if ('number' == typeof value) {
return value;
} else if (Buffer.isBuffer(value) || !utils.isObject(value)) {
throw new CastError('number', value, this.path);
}
// Handle the case where user directly sets a populated
// path to a plain object; cast to the Model used in
// the population query.
var path = doc.$__fullPath(this.path);
var owner = doc.ownerDocument ? doc.ownerDocument() : doc;
var pop = owner.populated(path, true);
var ret = new pop.options.model(value);
ret.$__.wasPopulated = true;
return ret;
}
var val = value && value._id
? value._id // documents
: value;
2015-11-24 22:08:58 -08:00
if (!isNaN(val)) {
2014-09-14 07:04:16 -04:00
if (null === val) return val;
if ('' === val) return null;
2015-11-24 22:08:58 -08:00
if (typeof val === 'string' || typeof val === 'boolean') {
val = Number(val);
}
if (val instanceof Number) return val;
2014-09-14 07:04:16 -04:00
if ('number' == typeof val) return val;
if (val.toString && !Array.isArray(val) &&
val.toString() == Number(val)) {
2015-11-24 22:08:58 -08:00
return new Number(val);
2014-09-14 07:04:16 -04:00
}
}
throw new CastError('number', value, this.path);
};
/*!
* ignore
*/
2015-11-24 22:08:58 -08:00
function handleSingle(val) {
return this.cast(val);
2014-09-14 07:04:16 -04:00
}
2015-11-24 22:08:58 -08:00
function handleArray(val) {
2014-09-14 07:04:16 -04:00
var self = this;
2015-11-24 22:08:58 -08:00
if (!Array.isArray(val)) {
return [this.cast(val)];
}
return val.map(function(m) {
return self.cast(m);
2014-09-14 07:04:16 -04:00
});
}
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.$conditionalHandlers =
utils.options(SchemaType.prototype.$conditionalHandlers, {
'$gt' : handleSingle,
'$gte': handleSingle,
'$lt' : handleSingle,
'$lte': handleSingle,
'$mod': handleArray
});
2014-09-14 07:04:16 -04:00
/**
* Casts contents for queries.
*
* @param {String} $conditional
* @param {any} [value]
* @api private
*/
2015-11-24 22:08:58 -08:00
SchemaNumber.prototype.castForQuery = function($conditional, val) {
2014-09-14 07:04:16 -04:00
var handler;
if (arguments.length === 2) {
handler = this.$conditionalHandlers[$conditional];
if (!handler)
throw new Error("Can't use " + $conditional + " with Number.");
return handler.call(this, val);
} else {
val = this.cast($conditional);
2015-11-24 22:08:58 -08:00
return val == null ? val : val;
2014-09-14 07:04:16 -04:00
}
};
/*!
* Module exports.
*/
module.exports = SchemaNumber;