mirror of
https://github.com/atlanticbiomedical/biomedjs.git
synced 2025-07-02 00:47:26 -04:00
119 lines
2.5 KiB
JavaScript
119 lines
2.5 KiB
JavaScript
var SchemaType = require('../schematype');
|
|
var Subdocument = require('../types/subdocument');
|
|
|
|
module.exports = Embedded;
|
|
|
|
/**
|
|
* Sub-schema schematype constructor
|
|
*
|
|
* @param {Schema} schema
|
|
* @param {String} key
|
|
* @param {Object} options
|
|
* @inherits SchemaType
|
|
* @api private
|
|
*/
|
|
|
|
function Embedded(schema, path, options) {
|
|
var _embedded = function() {
|
|
Subdocument.apply(this, arguments);
|
|
};
|
|
_embedded.prototype = Object.create(Subdocument.prototype);
|
|
_embedded.prototype.$__setSchema(schema);
|
|
_embedded.schema = schema;
|
|
_embedded.$isSingleNested = true;
|
|
_embedded.prototype.$basePath = path;
|
|
|
|
// apply methods
|
|
for (var i in schema.methods) {
|
|
_embedded.prototype[i] = schema.methods[i];
|
|
}
|
|
|
|
// apply statics
|
|
for (i in schema.statics) {
|
|
_embedded[i] = schema.statics[i];
|
|
}
|
|
|
|
this.caster = _embedded;
|
|
this.schema = schema;
|
|
this.$isSingleNested = true;
|
|
SchemaType.call(this, path, options, 'Embedded');
|
|
}
|
|
|
|
Embedded.prototype = Object.create(SchemaType.prototype);
|
|
|
|
/**
|
|
* Casts contents
|
|
*
|
|
* @param {Object} value
|
|
* @api private
|
|
*/
|
|
|
|
Embedded.prototype.cast = function(val, doc) {
|
|
var subdoc = new this.caster();
|
|
subdoc = subdoc.init(val);
|
|
subdoc.$parent = doc;
|
|
return subdoc;
|
|
};
|
|
|
|
/**
|
|
* Casts contents for query
|
|
*
|
|
* @param {string} [$conditional] optional query operator (like `$eq` or `$in`)
|
|
* @param {any} value
|
|
* @api private
|
|
*/
|
|
|
|
Embedded.prototype.castForQuery = function($conditional, val) {
|
|
var handler;
|
|
if (arguments.length === 2) {
|
|
handler = this.$conditionalHandlers[$conditional];
|
|
if (!handler) {
|
|
throw new Error('Can\'t use ' + $conditional);
|
|
}
|
|
return handler.call(this, val);
|
|
} else {
|
|
val = $conditional;
|
|
return new this.caster(val).
|
|
toObject({ virtuals: false });
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Async validation on this single nested doc.
|
|
*
|
|
* @api private
|
|
*/
|
|
|
|
Embedded.prototype.doValidate = function(value, fn) {
|
|
SchemaType.prototype.doValidate.call(this, value, function(error) {
|
|
if (error) {
|
|
return fn(error);
|
|
}
|
|
value.validate(fn, { __noPromise: true });
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Synchronously validate this single nested doc
|
|
*
|
|
* @api private
|
|
*/
|
|
|
|
Embedded.prototype.doValidateSync = function(value) {
|
|
var schemaTypeError = SchemaType.prototype.doValidateSync.call(this, value);
|
|
if (schemaTypeError) {
|
|
return schemaTypeError;
|
|
}
|
|
return value.validateSync();
|
|
};
|
|
|
|
/**
|
|
* Required validator for single nested docs
|
|
*
|
|
* @api private
|
|
*/
|
|
|
|
Embedded.prototype.checkRequired = function(value) {
|
|
return !!value && value.$isSingleNested;
|
|
};
|