Simple Chat Room in NodeJS, expressJS and mongoDB in Docker Swarm
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

1530 lines
43 KiB

'use strict';
/*!
* Module dependencies.
*/
const MongooseError = require('./error/index');
const SchemaTypeOptions = require('./options/SchemaTypeOptions');
const $exists = require('./schema/operators/exists');
const $type = require('./schema/operators/type');
const get = require('./helpers/get');
const handleImmutable = require('./helpers/schematype/handleImmutable');
const immediate = require('./helpers/immediate');
const schemaTypeSymbol = require('./helpers/symbols').schemaTypeSymbol;
const util = require('util');
const utils = require('./utils');
const validatorErrorSymbol = require('./helpers/symbols').validatorErrorSymbol;
const CastError = MongooseError.CastError;
const ValidatorError = MongooseError.ValidatorError;
/**
* SchemaType constructor. Do **not** instantiate `SchemaType` directly.
* Mongoose converts your schema paths into SchemaTypes automatically.
*
* ####Example:
*
* const schema = new Schema({ name: String });
* schema.path('name') instanceof SchemaType; // true
*
* @param {String} path
* @param {SchemaTypeOptions} [options] See [SchemaTypeOptions docs](/docs/api/schematypeoptions.html)
* @param {String} [instance]
* @api public
*/
function SchemaType(path, options, instance) {
this[schemaTypeSymbol] = true;
this.path = path;
this.instance = instance;
this.validators = [];
this.getters = this.constructor.hasOwnProperty('getters') ?
this.constructor.getters.slice() :
[];
this.setters = [];
options = options || {};
const defaultOptions = this.constructor.defaultOptions || {};
const defaultOptionsKeys = Object.keys(defaultOptions);
for (const option of defaultOptionsKeys) {
if (defaultOptions.hasOwnProperty(option) && !options.hasOwnProperty(option)) {
options[option] = defaultOptions[option];
}
}
if (options.select == null) {
delete options.select;
}
const Options = this.OptionsConstructor || SchemaTypeOptions;
this.options = new Options(options);
this._index = null;
if (utils.hasUserDefinedProperty(this.options, 'immutable')) {
this.$immutable = this.options.immutable;
handleImmutable(this);
}
const keys = Object.keys(this.options);
for (const prop of keys) {
if (prop === 'cast') {
continue;
}
if (utils.hasUserDefinedProperty(this.options, prop) && typeof this[prop] === 'function') {
// { unique: true, index: true }
if (prop === 'index' && this._index) {
if (options.index === false) {
const index = this._index;
if (typeof index === 'object' && index != null) {
if (index.unique) {
throw new Error('Path "' + this.path + '" may not have `index` ' +
'set to false and `unique` set to true');
}
if (index.sparse) {
throw new Error('Path "' + this.path + '" may not have `index` ' +
'set to false and `sparse` set to true');
}
}
this._index = false;
}
continue;
}
const val = options[prop];
// Special case so we don't screw up array defaults, see gh-5780
if (prop === 'default') {
this.default(val);
continue;
}
const opts = Array.isArray(val) ? val : [val];
this[prop].apply(this, opts);
}
}
Object.defineProperty(this, '$$context', {
enumerable: false,
configurable: false,
writable: true,
value: null
});
}
/*!
* ignore
*/
SchemaType.prototype.OptionsConstructor = SchemaTypeOptions;
/**
* Get/set the function used to cast arbitrary values to this type.
*
* ####Example:
*
* // Disallow `null` for numbers, and don't try to cast any values to
* // numbers, so even strings like '123' will cause a CastError.
* mongoose.Number.cast(function(v) {
* assert.ok(v === undefined || typeof v === 'number');
* return v;
* });
*
* @param {Function|false} caster Function that casts arbitrary values to this type, or throws an error if casting failed
* @return {Function}
* @static
* @receiver SchemaType
* @function cast
* @api public
*/
SchemaType.cast = function cast(caster) {
if (arguments.length === 0) {
return this._cast;
}
if (caster === false) {
caster = v => v;
}
this._cast = caster;
return this._cast;
};
/**
* Sets a default option for this schema type.
*
* ####Example:
*
* // Make all strings be trimmed by default
* mongoose.SchemaTypes.String.set('trim', true);
*
* @param {String} option The name of the option you'd like to set (e.g. trim, lowercase, etc...)
* @param {*} value The value of the option you'd like to set.
* @return {void}
* @static
* @receiver SchemaType
* @function set
* @api public
*/
SchemaType.set = function set(option, value) {
if (!this.hasOwnProperty('defaultOptions')) {
this.defaultOptions = Object.assign({}, this.defaultOptions);
}
this.defaultOptions[option] = value;
};
/**
* Attaches a getter for all instances of this schema type.
*
* ####Example:
*
* // Make all numbers round down
* mongoose.Number.get(function(v) { return Math.floor(v); });
*
* @param {Function} getter
* @return {this}
* @static
* @receiver SchemaType
* @function get
* @api public
*/
SchemaType.get = function(getter) {
this.getters = this.hasOwnProperty('getters') ? this.getters : [];
this.getters.push(getter);
};
/**
* Sets a default value for this SchemaType.
*
* ####Example:
*
* var schema = new Schema({ n: { type: Number, default: 10 })
* var M = db.model('M', schema)
* var m = new M;
* console.log(m.n) // 10
*
* Defaults can be either `functions` which return the value to use as the default or the literal value itself. Either way, the value will be cast based on its schema type before being set during document creation.
*
* ####Example:
*
* // values are cast:
* var schema = new Schema({ aNumber: { type: Number, default: 4.815162342 }})
* var M = db.model('M', schema)
* var m = new M;
* console.log(m.aNumber) // 4.815162342
*
* // default unique objects for Mixed types:
* var schema = new Schema({ mixed: Schema.Types.Mixed });
* schema.path('mixed').default(function () {
* return {};
* });
*
* // if we don't use a function to return object literals for Mixed defaults,
* // each document will receive a reference to the same object literal creating
* // a "shared" object instance:
* var schema = new Schema({ mixed: Schema.Types.Mixed });
* schema.path('mixed').default({});
* var M = db.model('M', schema);
* var m1 = new M;
* m1.mixed.added = 1;
* console.log(m1.mixed); // { added: 1 }
* var m2 = new M;
* console.log(m2.mixed); // { added: 1 }
*
* @param {Function|any} val the default value
* @return {defaultValue}
* @api public
*/
SchemaType.prototype.default = function(val) {
if (arguments.length === 1) {
if (val === void 0) {
this.defaultValue = void 0;
return void 0;
}
if (val != null && val.instanceOfSchema) {
throw new MongooseError('Cannot set default value of path `' + this.path +
'` to a mongoose Schema instance.');
}
this.defaultValue = val;
return this.defaultValue;
} else if (arguments.length > 1) {
this.defaultValue = utils.args(arguments);
}
return this.defaultValue;
};
/**
* Declares the index options for this schematype.
*
* ####Example:
*
* var s = new Schema({ name: { type: String, index: true })
* var s = new Schema({ loc: { type: [Number], index: 'hashed' })
* var s = new Schema({ loc: { type: [Number], index: '2d', sparse: true })
* var s = new Schema({ loc: { type: [Number], index: { type: '2dsphere', sparse: true }})
* var s = new Schema({ date: { type: Date, index: { unique: true, expires: '1d' }})
* s.path('my.path').index(true);
* s.path('my.date').index({ expires: 60 });
* s.path('my.path').index({ unique: true, sparse: true });
*
* ####NOTE:
*
* _Indexes are created [in the background](https://docs.mongodb.com/manual/core/index-creation/#index-creation-background)
* by default. If `background` is set to `false`, MongoDB will not execute any
* read/write operations you send until the index build.
* Specify `background: false` to override Mongoose's default._
*
* @param {Object|Boolean|String} options
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.index = function(options) {
this._index = options;
utils.expires(this._index);
return this;
};
/**
* Declares an unique index.
*
* ####Example:
*
* var s = new Schema({ name: { type: String, unique: true }});
* s.path('name').index({ unique: true });
*
* _NOTE: violating the constraint returns an `E11000` error from MongoDB when saving, not a Mongoose validation error._
*
* @param {Boolean} bool
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.unique = function(bool) {
if (this._index === false) {
if (!bool) {
return;
}
throw new Error('Path "' + this.path + '" may not have `index` set to ' +
'false and `unique` set to true');
}
if (this._index == null || this._index === true) {
this._index = {};
} else if (typeof this._index === 'string') {
this._index = { type: this._index };
}
this._index.unique = bool;
return this;
};
/**
* Declares a full text index.
*
* ###Example:
*
* var s = new Schema({name : {type: String, text : true })
* s.path('name').index({text : true});
* @param {Boolean} bool
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.text = function(bool) {
if (this._index === false) {
if (!bool) {
return;
}
throw new Error('Path "' + this.path + '" may not have `index` set to ' +
'false and `text` set to true');
}
if (this._index === null || this._index === undefined ||
typeof this._index === 'boolean') {
this._index = {};
} else if (typeof this._index === 'string') {
this._index = { type: this._index };
}
this._index.text = bool;
return this;
};
/**
* Declares a sparse index.
*
* ####Example:
*
* var s = new Schema({ name: { type: String, sparse: true } });
* s.path('name').index({ sparse: true });
*
* @param {Boolean} bool
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.sparse = function(bool) {
if (this._index === false) {
if (!bool) {
return;
}
throw new Error('Path "' + this.path + '" may not have `index` set to ' +
'false and `sparse` set to true');
}
if (this._index == null || typeof this._index === 'boolean') {
this._index = {};
} else if (typeof this._index === 'string') {
this._index = { type: this._index };
}
this._index.sparse = bool;
return this;
};
/**
* Defines this path as immutable. Mongoose prevents you from changing
* immutable paths unless the parent document has [`isNew: true`](/docs/api.html#document_Document-isNew).
*
* ####Example:
*
* const schema = new Schema({
* name: { type: String, immutable: true },
* age: Number
* });
* const Model = mongoose.model('Test', schema);
*
* await Model.create({ name: 'test' });
* const doc = await Model.findOne();
*
* doc.isNew; // false
* doc.name = 'new name';
* doc.name; // 'test', because `name` is immutable
*
* Mongoose also prevents changing immutable properties using `updateOne()`
* and `updateMany()` based on [strict mode](/docs/guide.html#strict).
*
* ####Example:
*
* // Mongoose will strip out the `name` update, because `name` is immutable
* Model.updateOne({}, { $set: { name: 'test2' }, $inc: { age: 1 } });
*
* // If `strict` is set to 'throw', Mongoose will throw an error if you
* // update `name`
* const err = await Model.updateOne({}, { name: 'test2' }, { strict: 'throw' }).
* then(() => null, err => err);
* err.name; // StrictModeError
*
* // If `strict` is `false`, Mongoose allows updating `name` even though
* // the property is immutable.
* Model.updateOne({}, { name: 'test2' }, { strict: false });
*
* @param {Boolean} bool
* @return {SchemaType} this
* @see isNew /docs/api.html#document_Document-isNew
* @api public
*/
SchemaType.prototype.immutable = function(bool) {
this.$immutable = bool;
handleImmutable(this);
return this;
};
/**
* Adds a setter to this schematype.
*
* ####Example:
*
* function capitalize (val) {
* if (typeof val !== 'string') val = '';
* return val.charAt(0).toUpperCase() + val.substring(1);
* }
*
* // defining within the schema
* var s = new Schema({ name: { type: String, set: capitalize }});
*
* // or with the SchemaType
* var s = new Schema({ name: String })
* s.path('name').set(capitalize);
*
* Setters allow you to transform the data before it gets to the raw mongodb
* document or query.
*
* Suppose you are implementing user registration for a website. Users provide
* an email and password, which gets saved to mongodb. The email is a string
* that you will want to normalize to lower case, in order to avoid one email
* having more than one account -- e.g., otherwise, avenue@q.com can be registered for 2 accounts via avenue@q.com and AvEnUe@Q.CoM.
*
* You can set up email lower case normalization easily via a Mongoose setter.
*
* function toLower(v) {
* return v.toLowerCase();
* }
*
* var UserSchema = new Schema({
* email: { type: String, set: toLower }
* });
*
* var User = db.model('User', UserSchema);
*
* var user = new User({email: 'AVENUE@Q.COM'});
* console.log(user.email); // 'avenue@q.com'
*
* // or
* var user = new User();
* user.email = 'Avenue@Q.com';
* console.log(user.email); // 'avenue@q.com'
* User.updateOne({ _id: _id }, { $set: { email: 'AVENUE@Q.COM' } }); // update to 'avenue@q.com'
*
* As you can see above, setters allow you to transform the data before it
* stored in MongoDB, or before executing a query.
*
* _NOTE: we could have also just used the built-in `lowercase: true` SchemaType option instead of defining our own function._
*
* new Schema({ email: { type: String, lowercase: true }})
*
* Setters are also passed a second argument, the schematype on which the setter was defined. This allows for tailored behavior based on options passed in the schema.
*
* function inspector (val, schematype) {
* if (schematype.options.required) {
* return schematype.path + ' is required';
* } else {
* return val;
* }
* }
*
* var VirusSchema = new Schema({
* name: { type: String, required: true, set: inspector },
* taxonomy: { type: String, set: inspector }
* })
*
* var Virus = db.model('Virus', VirusSchema);
* var v = new Virus({ name: 'Parvoviridae', taxonomy: 'Parvovirinae' });
*
* console.log(v.name); // name is required
* console.log(v.taxonomy); // Parvovirinae
*
* You can also use setters to modify other properties on the document. If
* you're setting a property `name` on a document, the setter will run with
* `this` as the document. Be careful, in mongoose 5 setters will also run
* when querying by `name` with `this` as the query.
*
* ```javascript
* const nameSchema = new Schema({ name: String, keywords: [String] });
* nameSchema.path('name').set(function(v) {
* // Need to check if `this` is a document, because in mongoose 5
* // setters will also run on queries, in which case `this` will be a
* // mongoose query object.
* if (this instanceof Document && v != null) {
* this.keywords = v.split(' ');
* }
* return v;
* });
* ```
*
* @param {Function} fn
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.set = function(fn) {
if (typeof fn !== 'function') {
throw new TypeError('A setter must be a function.');
}
this.setters.push(fn);
return this;
};
/**
* Adds a getter to this schematype.
*
* ####Example:
*
* function dob (val) {
* if (!val) return val;
* return (val.getMonth() + 1) + "/" + val.getDate() + "/" + val.getFullYear();
* }
*
* // defining within the schema
* var s = new Schema({ born: { type: Date, get: dob })
*
* // or by retreiving its SchemaType
* var s = new Schema({ born: Date })
* s.path('born').get(dob)
*
* Getters allow you to transform the representation of the data as it travels from the raw mongodb document to the value that you see.
*
* Suppose you are storing credit card numbers and you want to hide everything except the last 4 digits to the mongoose user. You can do so by defining a getter in the following way:
*
* function obfuscate (cc) {
* return '****-****-****-' + cc.slice(cc.length-4, cc.length);
* }
*
* var AccountSchema = new Schema({
* creditCardNumber: { type: String, get: obfuscate }
* });
*
* var Account = db.model('Account', AccountSchema);
*
* Account.findById(id, function (err, found) {
* console.log(found.creditCardNumber); // '****-****-****-1234'
* });
*
* Getters are also passed a second argument, the schematype on which the getter was defined. This allows for tailored behavior based on options passed in the schema.
*
* function inspector (val, schematype) {
* if (schematype.options.required) {
* return schematype.path + ' is required';
* } else {
* return schematype.path + ' is not';
* }
* }
*
* var VirusSchema = new Schema({
* name: { type: String, required: true, get: inspector },
* taxonomy: { type: String, get: inspector }
* })
*
* var Virus = db.model('Virus', VirusSchema);
*
* Virus.findById(id, function (err, virus) {
* console.log(virus.name); // name is required
* console.log(virus.taxonomy); // taxonomy is not
* })
*
* @param {Function} fn
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.get = function(fn) {
if (typeof fn !== 'function') {
throw new TypeError('A getter must be a function.');
}
this.getters.push(fn);
return this;
};
/**
* Adds validator(s) for this document path.
*
* Validators always receive the value to validate as their first argument and
* must return `Boolean`. Returning `false` or throwing an error means
* validation failed.
*
* The error message argument is optional. If not passed, the [default generic error message template](#error_messages_MongooseError-messages) will be used.
*
* ####Examples:
*
* // make sure every value is equal to "something"
* function validator (val) {
* return val == 'something';
* }
* new Schema({ name: { type: String, validate: validator }});
*
* // with a custom error message
*
* var custom = [validator, 'Uh oh, {PATH} does not equal "something".']
* new Schema({ name: { type: String, validate: custom }});
*
* // adding many validators at a time
*
* var many = [
* { validator: validator, msg: 'uh oh' }
* , { validator: anotherValidator, msg: 'failed' }
* ]
* new Schema({ name: { type: String, validate: many }});
*
* // or utilizing SchemaType methods directly:
*
* var schema = new Schema({ name: 'string' });
* schema.path('name').validate(validator, 'validation of `{PATH}` failed with value `{VALUE}`');
*
* ####Error message templates:
*
* From the examples above, you may have noticed that error messages support
* basic templating. There are a few other template keywords besides `{PATH}`
* and `{VALUE}` too. To find out more, details are available
* [here](#error_messages_MongooseError.messages).
*
* If Mongoose's built-in error message templating isn't enough, Mongoose
* supports setting the `message` property to a function.
*
* schema.path('name').validate({
* validator: function() { return v.length > 5; },
* // `errors['name']` will be "name must have length 5, got 'foo'"
* message: function(props) {
* return `${props.path} must have length 5, got '${props.value}'`;
* }
* });
*
* To bypass Mongoose's error messages and just copy the error message that
* the validator throws, do this:
*
* schema.path('name').validate({
* validator: function() { throw new Error('Oops!'); },
* // `errors['name']` will be "Oops!"
* message: function(props) { return props.reason.message; }
* });
*
* ####Asynchronous validation:
*
* Mongoose supports validators that return a promise. A validator that returns
* a promise is called an _async validator_. Async validators run in
* parallel, and `validate()` will wait until all async validators have settled.
*
* schema.path('name').validate({
* validator: function (value) {
* return new Promise(function (resolve, reject) {
* resolve(false); // validation failed
* });
* }
* });
*
* You might use asynchronous validators to retreive other documents from the database to validate against or to meet other I/O bound validation needs.
*
* Validation occurs `pre('save')` or whenever you manually execute [document#validate](#document_Document-validate).
*
* If validation fails during `pre('save')` and no callback was passed to receive the error, an `error` event will be emitted on your Models associated db [connection](#connection_Connection), passing the validation error object along.
*
* var conn = mongoose.createConnection(..);
* conn.on('error', handleError);
*
* var Product = conn.model('Product', yourSchema);
* var dvd = new Product(..);
* dvd.save(); // emits error on the `conn` above
*
* If you want to handle these errors at the Model level, add an `error`
* listener to your Model as shown below.
*
* // registering an error listener on the Model lets us handle errors more locally
* Product.on('error', handleError);
*
* @param {RegExp|Function|Object} obj validator function, or hash describing options
* @param {Function} [obj.validator] validator function. If the validator function returns `undefined` or a truthy value, validation succeeds. If it returns [falsy](https://masteringjs.io/tutorials/fundamentals/falsy) (except `undefined`) or throws an error, validation fails.
* @param {String|Function} [obj.message] optional error message. If function, should return the error message as a string
* @param {Boolean} [obj.propsParameter=false] If true, Mongoose will pass the validator properties object (with the `validator` function, `message`, etc.) as the 2nd arg to the validator function. This is disabled by default because many validators [rely on positional args](https://github.com/chriso/validator.js#validators), so turning this on may cause unpredictable behavior in external validators.
* @param {String|Function} [errorMsg] optional error message. If function, should return the error message as a string
* @param {String} [type] optional validator type
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.validate = function(obj, message, type) {
if (typeof obj === 'function' || obj && utils.getFunctionName(obj.constructor) === 'RegExp') {
let properties;
if (typeof message === 'function') {
properties = { validator: obj, message: message };
properties.type = type || 'user defined';
} else if (message instanceof Object && !type) {
properties = utils.clone(message);
if (!properties.message) {
properties.message = properties.msg;
}
properties.validator = obj;
properties.type = properties.type || 'user defined';
} else {
if (message == null) {
message = MongooseError.messages.general.default;
}
if (!type) {
type = 'user defined';
}
properties = { message: message, type: type, validator: obj };
}
if (properties.isAsync) {
handleIsAsync();
}
this.validators.push(properties);
return this;
}
let i;
let length;
let arg;
for (i = 0, length = arguments.length; i < length; i++) {
arg = arguments[i];
if (!utils.isPOJO(arg)) {
const msg = 'Invalid validator. Received (' + typeof arg + ') '
+ arg
+ '. See http://mongoosejs.com/docs/api.html#schematype_SchemaType-validate';
throw new Error(msg);
}
this.validate(arg.validator, arg);
}
return this;
};
/*!
* ignore
*/
const handleIsAsync = util.deprecate(function handleIsAsync() {},
'Mongoose: the `isAsync` option for custom validators is deprecated. Make ' +
'your async validators return a promise instead: ' +
'https://mongoosejs.com/docs/validation.html#async-custom-validators');
/**
* Adds a required validator to this SchemaType. The validator gets added
* to the front of this SchemaType's validators array using `unshift()`.
*
* ####Example:
*
* var s = new Schema({ born: { type: Date, required: true })
*
* // or with custom error message
*
* var s = new Schema({ born: { type: Date, required: '{PATH} is required!' })
*
* // or with a function
*
* var s = new Schema({
* userId: ObjectId,
* username: {
* type: String,
* required: function() { return this.userId != null; }
* }
* })
*
* // or with a function and a custom message
* var s = new Schema({
* userId: ObjectId,
* username: {
* type: String,
* required: [
* function() { return this.userId != null; },
* 'username is required if id is specified'
* ]
* }
* })
*
* // or through the path API
*
* s.path('name').required(true);
*
* // with custom error messaging
*
* s.path('name').required(true, 'grrr :( ');
*
* // or make a path conditionally required based on a function
* var isOver18 = function() { return this.age >= 18; };
* s.path('voterRegistrationId').required(isOver18);
*
* The required validator uses the SchemaType's `checkRequired` function to
* determine whether a given value satisfies the required validator. By default,
* a value satisfies the required validator if `val != null` (that is, if
* the value is not null nor undefined). However, most built-in mongoose schema
* types override the default `checkRequired` function:
*
* @param {Boolean|Function|Object} required enable/disable the validator, or function that returns required boolean, or options object
* @param {Boolean|Function} [options.isRequired] enable/disable the validator, or function that returns required boolean
* @param {Function} [options.ErrorConstructor] custom error constructor. The constructor receives 1 parameter, an object containing the validator properties.
* @param {String} [message] optional custom error message
* @return {SchemaType} this
* @see Customized Error Messages #error_messages_MongooseError-messages
* @see SchemaArray#checkRequired #schema_array_SchemaArray.checkRequired
* @see SchemaBoolean#checkRequired #schema_boolean_SchemaBoolean-checkRequired
* @see SchemaBuffer#checkRequired #schema_buffer_SchemaBuffer.schemaName
* @see SchemaNumber#checkRequired #schema_number_SchemaNumber-min
* @see SchemaObjectId#checkRequired #schema_objectid_ObjectId-auto
* @see SchemaString#checkRequired #schema_string_SchemaString-checkRequired
* @api public
*/
SchemaType.prototype.required = function(required, message) {
let customOptions = {};
if (arguments.length > 0 && required == null) {
this.validators = this.validators.filter(function(v) {
return v.validator !== this.requiredValidator;
}, this);
this.isRequired = false;
delete this.originalRequiredValue;
return this;
}
if (typeof required === 'object') {
customOptions = required;
message = customOptions.message || message;
required = required.isRequired;
}
if (required === false) {
this.validators = this.validators.filter(function(v) {
return v.validator !== this.requiredValidator;
}, this);
this.isRequired = false;
delete this.originalRequiredValue;
return this;
}
const _this = this;
this.isRequired = true;
this.requiredValidator = function(v) {
const cachedRequired = get(this, '$__.cachedRequired');
// no validation when this path wasn't selected in the query.
if (cachedRequired != null && !this.isSelected(_this.path) && !this.isModified(_this.path)) {
return true;
}
// `$cachedRequired` gets set in `_evaluateRequiredFunctions()` so we
// don't call required functions multiple times in one validate call
// See gh-6801
if (cachedRequired != null && _this.path in cachedRequired) {
const res = cachedRequired[_this.path] ?
_this.checkRequired(v, this) :
true;
delete cachedRequired[_this.path];
return res;
} else if (typeof required === 'function') {
return required.apply(this) ? _this.checkRequired(v, this) : true;
}
return _this.checkRequired(v, this);
};
this.originalRequiredValue = required;
if (typeof required === 'string') {
message = required;
required = undefined;
}
const msg = message || MongooseError.messages.general.required;
this.validators.unshift(Object.assign({}, customOptions, {
validator: this.requiredValidator,
message: msg,
type: 'required'
}));
return this;
};
/**
* Set the model that this path refers to. This is the option that [populate](https://mongoosejs.com/docs/populate.html)
* looks at to determine the foreign collection it should query.
*
* ####Example:
* const userSchema = new Schema({ name: String });
* const User = mongoose.model('User', userSchema);
*
* const postSchema = new Schema({ user: mongoose.ObjectId });
* postSchema.path('user').ref('User'); // By model name
* postSchema.path('user').ref(User); // Can pass the model as well
*
* // Or you can just declare the `ref` inline in your schema
* const postSchema2 = new Schema({
* user: { type: mongoose.ObjectId, ref: User }
* });
*
* @param {String|Model|Function} ref either a model name, a [Model](https://mongoosejs.com/docs/models.html), or a function that returns a model name or model.
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.ref = function(ref) {
this.options.ref = ref;
return this;
};
/**
* Gets the default value
*
* @param {Object} scope the scope which callback are executed
* @param {Boolean} init
* @api private
*/
SchemaType.prototype.getDefault = function(scope, init) {
let ret = typeof this.defaultValue === 'function'
? this.defaultValue.call(scope)
: this.defaultValue;
if (ret !== null && ret !== undefined) {
if (typeof ret === 'object' && (!this.options || !this.options.shared)) {
ret = utils.clone(ret);
}
const casted = this.applySetters(ret, scope, init);
if (casted && casted.$isSingleNested) {
casted.$parent = scope;
}
return casted;
}
return ret;
};
/*!
* Applies setters without casting
*
* @api private
*/
SchemaType.prototype._applySetters = function(value, scope, init, priorVal) {
let v = value;
const setters = this.setters;
const caster = this.caster;
for (const setter of utils.clone(setters).reverse()) {
v = setter.call(scope, v, this);
}
if (Array.isArray(v) && caster && caster.setters) {
const newVal = [];
for (let i = 0; i < v.length; ++i) {
const value = v[i];
try {
newVal.push(caster.applySetters(value, scope, init, priorVal));
} catch (err) {
if (err instanceof MongooseError.CastError) {
err.$originalErrorPath = err.path;
err.path = err.path + '.' + i;
}
throw err;
}
}
v = newVal;
}
return v;
};
/**
* Applies setters
*
* @param {Object} value
* @param {Object} scope
* @param {Boolean} init
* @api private
*/
SchemaType.prototype.applySetters = function(value, scope, init, priorVal, options) {
let v = this._applySetters(value, scope, init, priorVal, options);
if (v == null) {
return v;
}
// do not cast until all setters are applied #665
v = this.cast(v, scope, init, priorVal, options);
return v;
};
/**
* Applies getters to a value
*
* @param {Object} value
* @param {Object} scope
* @api private
*/
SchemaType.prototype.applyGetters = function(value, scope) {
let v = value;
const getters = this.getters;
const len = getters.length;
if (len === 0) {
return v;
}
for (let i = 0; i < len; ++i) {
v = getters[i].call(scope, v, this);
}
return v;
};
/**
* Sets default `select()` behavior for this path.
*
* Set to `true` if this path should always be included in the results, `false` if it should be excluded by default. This setting can be overridden at the query level.
*
* ####Example:
*
* T = db.model('T', new Schema({ x: { type: String, select: true }}));
* T.find(..); // field x will always be selected ..
* // .. unless overridden;
* T.find().select('-x').exec(callback);
*
* @param {Boolean} val
* @return {SchemaType} this
* @api public
*/
SchemaType.prototype.select = function select(val) {
this.selected = !!val;
return this;
};
/**
* Performs a validation of `value` using the validators declared for this SchemaType.
*
* @param {any} value
* @param {Function} callback
* @param {Object} scope
* @api private
*/
SchemaType.prototype.doValidate = function(value, fn, scope, options) {
let err = false;
const path = this.path;
// Avoid non-object `validators`
const validators = this.validators.
filter(v => v != null && typeof v === 'object');
let count = validators.length;
if (!count) {
return fn(null);
}
const _this = this;
validators.forEach(function(v) {
if (err) {
return;
}
const validator = v.validator;
let ok;
const validatorProperties = utils.clone(v);
validatorProperties.path = options && options.path ? options.path : path;
validatorProperties.value = value;
if (validator instanceof RegExp) {
validate(validator.test(value), validatorProperties);
return;
}
if (typeof validator !== 'function') {
return;
}
if (value === undefined && validator !== _this.requiredValidator) {
validate(true, validatorProperties);
return;
}
if (validatorProperties.isAsync) {
asyncValidate(validator, scope, value, validatorProperties, validate);
return;
}
try {
if (validatorProperties.propsParameter) {
ok = validator.call(scope, value, validatorProperties);
} else {
ok = validator.call(scope, value);
}
} catch (error) {
ok = false;
validatorProperties.reason = error;
if (error.message) {
validatorProperties.message = error.message;
}
}
if (ok != null && typeof ok.then === 'function') {
ok.then(
function(ok) { validate(ok, validatorProperties); },
function(error) {
validatorProperties.reason = error;
validatorProperties.message = error.message;
ok = false;
validate(ok, validatorProperties);
});
} else {
validate(ok, validatorProperties);
}
});
function validate(ok, validatorProperties) {
if (err) {
return;
}
if (ok === undefined || ok) {
if (--count <= 0) {
immediate(function() {
fn(null);
});
}
} else {
const ErrorConstructor = validatorProperties.ErrorConstructor || ValidatorError;
err = new ErrorConstructor(validatorProperties);
err[validatorErrorSymbol] = true;
immediate(function() {
fn(err);
});
}
}
};
/*!
* Handle async validators
*/
function asyncValidate(validator, scope, value, props, cb) {
let called = false;
const returnVal = validator.call(scope, value, function(ok, customMsg) {
if (called) {
return;
}
called = true;
if (customMsg) {
props.message = customMsg;
}
cb(ok, props);
});
if (typeof returnVal === 'boolean') {
called = true;
cb(returnVal, props);
} else if (returnVal && typeof returnVal.then === 'function') {
// Promise
returnVal.then(
function(ok) {
if (called) {
return;
}
called = true;
cb(ok, props);
},
function(error) {
if (called) {
return;
}
called = true;
props.reason = error;
props.message = error.message;
cb(false, props);
});
}
}
/**
* Performs a validation of `value` using the validators declared for this SchemaType.
*
* ####Note:
*
* This method ignores the asynchronous validators.
*
* @param {any} value
* @param {Object} scope
* @return {MongooseError|undefined}
* @api private
*/
SchemaType.prototype.doValidateSync = function(value, scope, options) {
const path = this.path;
const count = this.validators.length;
if (!count) {
return null;
}
let validators = this.validators;
if (value === void 0) {
if (this.validators.length > 0 && this.validators[0].type === 'required') {
validators = [this.validators[0]];
} else {
return null;
}
}
let err = null;
validators.forEach(function(v) {
if (err) {
return;
}
if (v == null || typeof v !== 'object') {
return;
}
const validator = v.validator;
const validatorProperties = utils.clone(v);
validatorProperties.path = options && options.path ? options.path : path;
validatorProperties.value = value;
let ok;
// Skip any explicit async validators. Validators that return a promise
// will still run, but won't trigger any errors.
if (validator.isAsync) {
return;
}
if (validator instanceof RegExp) {
validate(validator.test(value), validatorProperties);
return;
}
if (typeof validator !== 'function') {
return;
}
try {
if (validatorProperties.propsParameter) {
ok = validator.call(scope, value, validatorProperties);
} else {
ok = validator.call(scope, value);
}
} catch (error) {
ok = false;
validatorProperties.reason = error;
}
// Skip any validators that return a promise, we can't handle those
// synchronously
if (ok != null && typeof ok.then === 'function') {
return;
}
validate(ok, validatorProperties);
});
return err;
function validate(ok, validatorProperties) {
if (err) {
return;
}
if (ok !== undefined && !ok) {
const ErrorConstructor = validatorProperties.ErrorConstructor || ValidatorError;
err = new ErrorConstructor(validatorProperties);
err[validatorErrorSymbol] = true;
}
}
};
/**
* Determines if value is a valid Reference.
*
* @param {SchemaType} self
* @param {Object} value
* @param {Document} doc
* @param {Boolean} init
* @return {Boolean}
* @api private
*/
SchemaType._isRef = function(self, value, doc, init) {
// fast path
let ref = init && self.options && (self.options.ref || self.options.refPath);
if (!ref && doc && doc.$__ != null) {
// checks for
// - this populated with adhoc model and no ref was set in schema OR
// - setting / pushing values after population
const path = doc.$__fullPath(self.path);
const owner = doc.ownerDocument ? doc.ownerDocument() : doc;
ref = owner.populated(path) || doc.populated(self.path);
}
if (ref) {
if (value == null) {
return true;
}
if (!Buffer.isBuffer(value) && // buffers are objects too
value._bsontype !== 'Binary' // raw binary value from the db
&& utils.isObject(value) // might have deselected _id in population query
) {
return true;
}
}
return false;
};
/*!
* ignore
*/
function handleSingle(val) {
return this.castForQuery(val);
}
/*!
* ignore
*/
function handleArray(val) {
const _this = this;
if (!Array.isArray(val)) {
return [this.castForQuery(val)];
}
return val.map(function(m) {
return _this.castForQuery(m);
});
}
/*!
* Just like handleArray, except also allows `[]` because surprisingly
* `$in: [1, []]` works fine
*/
function handle$in(val) {
const _this = this;
if (!Array.isArray(val)) {
return [this.castForQuery(val)];
}
return val.map(function(m) {
if (Array.isArray(m) && m.length === 0) {
return m;
}
return _this.castForQuery(m);
});
}
/*!
* ignore
*/
SchemaType.prototype.$conditionalHandlers = {
$all: handleArray,
$eq: handleSingle,
$in: handle$in,
$ne: handleSingle,
$nin: handle$in,
$exists: $exists,
$type: $type
};
/*!
* Wraps `castForQuery` to handle context
*/
SchemaType.prototype.castForQueryWrapper = function(params) {
this.$$context = params.context;
if ('$conditional' in params) {
return this.castForQuery(params.$conditional, params.val);
}
if (params.$skipQueryCastForUpdate || params.$applySetters) {
return this._castForQuery(params.val);
}
return this.castForQuery(params.val);
};
/**
* Cast the given value with the given optional query operator.
*
* @param {String} [$conditional] query operator, like `$eq` or `$in`
* @param {any} val
* @api private
*/
SchemaType.prototype.castForQuery = function($conditional, val) {
let handler;
if (arguments.length === 2) {
handler = this.$conditionalHandlers[$conditional];
if (!handler) {
throw new Error('Can\'t use ' + $conditional);
}
return handler.call(this, val);
}
val = $conditional;
return this._castForQuery(val);
};
/*!
* Internal switch for runSetters
*
* @api private
*/
SchemaType.prototype._castForQuery = function(val) {
return this.applySetters(val, this.$$context);
};
/**
* Override the function the required validator uses to check whether a value
* passes the `required` check. Override this on the individual SchemaType.
*
* ####Example:
*
* // Use this to allow empty strings to pass the `required` validator
* mongoose.Schema.Types.String.checkRequired(v => typeof v === 'string');
*
* @param {Function} fn
* @return {Function}
* @static
* @receiver SchemaType
* @function checkRequired
* @api public
*/
SchemaType.checkRequired = function(fn) {
if (arguments.length > 0) {
this._checkRequired = fn;
}
return this._checkRequired;
};
/**
* Default check for if this path satisfies the `required` validator.
*
* @param {any} val
* @api private
*/
SchemaType.prototype.checkRequired = function(val) {
return val != null;
};
/*!
* ignore
*/
SchemaType.prototype.clone = function() {
const options = Object.assign({}, this.options);
const schematype = new this.constructor(this.path, options, this.instance);
schematype.validators = this.validators.slice();
if (this.requiredValidator !== undefined) schematype.requiredValidator = this.requiredValidator;
if (this.defaultValue !== undefined) schematype.defaultValue = this.defaultValue;
if (this.$immutable !== undefined && this.options.immutable === undefined) {
schematype.$immutable = this.$immutable;
handleImmutable(schematype);
}
if (this._index !== undefined) schematype._index = this._index;
if (this.selected !== undefined) schematype.selected = this.selected;
if (this.isRequired !== undefined) schematype.isRequired = this.isRequired;
if (this.originalRequiredValue !== undefined) schematype.originalRequiredValue = this.originalRequiredValue;
schematype.getters = this.getters.slice();
schematype.setters = this.setters.slice();
return schematype;
};
/*!
* Module exports.
*/
module.exports = exports = SchemaType;
exports.CastError = CastError;
exports.ValidatorError = ValidatorError;