-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocumentArrayElement.js
More file actions
100 lines (79 loc) · 2.41 KB
/
Copy pathdocumentArrayElement.js
File metadata and controls
100 lines (79 loc) · 2.41 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
/*!
* Module dependencies.
*/
'use strict';
const MongooseError = require('../error/mongooseError');
const SchemaType = require('../schemaType');
const SchemaSubdocument = require('./subdocument');
const getConstructor = require('../helpers/discriminator/getConstructor');
/**
* DocumentArrayElement SchemaType constructor.
*
* @param {String} path
* @param {Object} options
* @inherits SchemaType
* @api public
*/
function SchemaDocumentArrayElement(path, options) {
this.$parentSchemaType = options && options.$parentSchemaType;
if (!this.$parentSchemaType) {
throw new MongooseError('Cannot create DocumentArrayElement schematype without a parent');
}
delete options.$parentSchemaType;
SchemaType.call(this, path, options, 'DocumentArrayElement');
this.$isMongooseDocumentArrayElement = true;
}
/**
* This schema type's name, to defend against minifiers that mangle
* function names.
*
* @api public
*/
SchemaDocumentArrayElement.schemaName = 'DocumentArrayElement';
SchemaDocumentArrayElement.defaultOptions = {};
/*!
* Inherits from SchemaType.
*/
SchemaDocumentArrayElement.prototype = Object.create(SchemaType.prototype);
SchemaDocumentArrayElement.prototype.constructor = SchemaDocumentArrayElement;
/**
* Casts `val` for DocumentArrayElement.
*
* @param {Object} value to cast
* @api private
*/
SchemaDocumentArrayElement.prototype.cast = function(...args) {
return this.$parentSchemaType.cast(...args)[0];
};
/**
* Casts contents for queries.
*
* @param {String} $cond
* @param {any} [val]
* @api private
*/
SchemaDocumentArrayElement.prototype.doValidate = function(value, fn, scope, options) {
const Constructor = getConstructor(this.caster, value);
if (value && !(value instanceof Constructor)) {
value = new Constructor(value, scope, null, null, options && options.index != null ? options.index : null);
}
return SchemaSubdocument.prototype.doValidate.call(this, value, fn, scope, options);
};
/**
* Clone the current SchemaType
*
* @return {DocumentArrayElement} The cloned instance
* @api private
*/
SchemaDocumentArrayElement.prototype.clone = function() {
this.options.$parentSchemaType = this.$parentSchemaType;
const ret = SchemaType.prototype.clone.apply(this, arguments);
delete this.options.$parentSchemaType;
ret.caster = this.caster;
ret.schema = this.schema;
return ret;
};
/*!
* Module exports.
*/
module.exports = SchemaDocumentArrayElement;