Software: Apache/2.4.41 (Ubuntu). PHP/8.0.30 uname -a: Linux apirnd 5.4.0-204-generic #224-Ubuntu SMP Thu Dec 5 13:38:28 UTC 2024 x86_64 uid=33(www-data) gid=33(www-data) groups=33(www-data) Safe-mode: OFF (not secure) /var/www/html/OTapi/node_modules/mongoose/lib/helpers/populate/ drwxr-xr-x | |
| Viewing file: Select action/file-type: 'use strict';
const utils = require('../../utils');
/**
* If populating a path within a document array, make sure each
* subdoc within the array knows its subpaths are populated.
*
* #### Example:
*
* const doc = await Article.findOne().populate('comments.author');
* doc.comments[0].populated('author'); // Should be set
*
* @param {Document} doc
* @param {Object} [populated]
* @api private
*/
module.exports = function markArraySubdocsPopulated(doc, populated) {
if (doc._doc._id == null || populated == null || populated.length === 0) {
return;
}
const id = String(doc._doc._id);
for (const item of populated) {
if (item.isVirtual) {
continue;
}
const path = item.path;
const pieces = path.split('.');
for (let i = 0; i < pieces.length - 1; ++i) {
const subpath = pieces.slice(0, i + 1).join('.');
const rest = pieces.slice(i + 1).join('.');
const val = doc.get(subpath);
if (val == null) {
continue;
}
if (utils.isMongooseDocumentArray(val)) {
for (let j = 0; j < val.length; ++j) {
if (val[j]) {
val[j].populated(rest, item._docs[id] == null ? void 0 : item._docs[id][j], item);
}
}
break;
}
}
}
};
|
:: Command execute :: | |
--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0059 ]-- |