Commit
This commit is contained in:
commit
d1c8cae2c1
1417 changed files with 326736 additions and 0 deletions
53
node_modules/mongoose/lib/helpers/document/getEmbeddedDiscriminatorPath.js
generated
vendored
Normal file
53
node_modules/mongoose/lib/helpers/document/getEmbeddedDiscriminatorPath.js
generated
vendored
Normal file
|
|
@ -0,0 +1,53 @@
|
|||
'use strict';
|
||||
|
||||
const get = require('../get');
|
||||
const getSchemaDiscriminatorByValue = require('../discriminator/getSchemaDiscriminatorByValue');
|
||||
|
||||
/**
|
||||
* Like `schema.path()`, except with a document, because impossible to
|
||||
* determine path type without knowing the embedded discriminator key.
|
||||
*
|
||||
* @param {Document} doc
|
||||
* @param {String|String[]} path
|
||||
* @param {Object} [options]
|
||||
* @api private
|
||||
*/
|
||||
|
||||
module.exports = function getEmbeddedDiscriminatorPath(doc, path, options) {
|
||||
options = options || {};
|
||||
const typeOnly = options.typeOnly;
|
||||
const parts = Array.isArray(path) ?
|
||||
path :
|
||||
(path.indexOf('.') === -1 ? [path] : path.split('.'));
|
||||
let schemaType = null;
|
||||
let type = 'adhocOrUndefined';
|
||||
|
||||
const schema = getSchemaDiscriminatorByValue(doc.schema, doc.get(doc.schema.options.discriminatorKey)) || doc.schema;
|
||||
|
||||
for (let i = 0; i < parts.length; ++i) {
|
||||
const subpath = parts.slice(0, i + 1).join('.');
|
||||
schemaType = schema.path(subpath);
|
||||
if (schemaType == null) {
|
||||
type = 'adhocOrUndefined';
|
||||
continue;
|
||||
}
|
||||
if (schemaType.instance === 'Mixed') {
|
||||
return typeOnly ? 'real' : schemaType;
|
||||
}
|
||||
type = schema.pathType(subpath);
|
||||
if ((schemaType.$isSingleNested || schemaType.$isMongooseDocumentArrayElement) &&
|
||||
schemaType.schema.discriminators != null) {
|
||||
const discriminators = schemaType.schema.discriminators;
|
||||
const discriminatorKey = doc.get(subpath + '.' +
|
||||
get(schemaType, 'schema.options.discriminatorKey'));
|
||||
if (discriminatorKey == null || discriminators[discriminatorKey] == null) {
|
||||
continue;
|
||||
}
|
||||
const rest = parts.slice(i + 1).join('.');
|
||||
return getEmbeddedDiscriminatorPath(doc.get(subpath), rest, options);
|
||||
}
|
||||
}
|
||||
|
||||
// Are we getting the whole schema or just the type, 'real', 'nested', etc.
|
||||
return typeOnly ? type : schemaType;
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue