deno.land / x / mongoose@6.7.5 / lib / helpers / query / castUpdate.js

نووسراو ببینە
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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
'use strict';
const CastError = require('../../error/cast');const MongooseError = require('../../error/mongooseError');const StrictModeError = require('../../error/strict');const ValidationError = require('../../error/validation');const castNumber = require('../../cast/number');const cast = require('../../cast');const getConstructorName = require('../getConstructorName');const getEmbeddedDiscriminatorPath = require('./getEmbeddedDiscriminatorPath');const handleImmutable = require('./handleImmutable');const moveImmutableProperties = require('../update/moveImmutableProperties');const schemaMixedSymbol = require('../../schema/symbols').schemaMixedSymbol;const setDottedPath = require('../path/setDottedPath');const utils = require('../../utils');
/** * Casts an update op based on the given schema * * @param {Schema} schema * @param {Object} obj * @param {Object} [options] * @param {Boolean} [options.overwrite] defaults to false * @param {Boolean|String} [options.strict] defaults to true * @param {Query} context passed to setters * @return {Boolean} true iff the update is non-empty * @api private */module.exports = function castUpdate(schema, obj, options, context, filter) { if (obj == null) { return undefined; } options = options || {}; // Update pipeline if (Array.isArray(obj)) { const len = obj.length; for (let i = 0; i < len; ++i) { const ops = Object.keys(obj[i]); for (const op of ops) { obj[i][op] = castPipelineOperator(op, obj[i][op]); } } return obj; }
if (options.upsert && !options.overwrite) { moveImmutableProperties(schema, obj, context); }
const ops = Object.keys(obj); let i = ops.length; const ret = {}; let val; let hasDollarKey = false; const overwrite = options.overwrite;
filter = filter || {}; while (i--) { const op = ops[i]; // if overwrite is set, don't do any of the special $set stuff if (op[0] !== '$' && !overwrite) { // fix up $set sugar if (!ret.$set) { if (obj.$set) { ret.$set = obj.$set; } else { ret.$set = {}; } } ret.$set[op] = obj[op]; ops.splice(i, 1); if (!~ops.indexOf('$set')) ops.push('$set'); } else if (op === '$set') { if (!ret.$set) { ret[op] = obj[op]; } } else { ret[op] = obj[op]; } } // cast each value i = ops.length; while (i--) { const op = ops[i]; val = ret[op]; hasDollarKey = hasDollarKey || op.startsWith('$');
if (val && typeof val === 'object' && !Buffer.isBuffer(val) && (!overwrite || hasDollarKey)) { walkUpdatePath(schema, val, op, options, context, filter); } else if (overwrite && ret && typeof ret === 'object') { walkUpdatePath(schema, ret, '$set', options, context, filter); } else { const msg = 'Invalid atomic update value for ' + op + '. ' + 'Expected an object, received ' + typeof val; throw new Error(msg); }
if (op.startsWith('$') && utils.isEmptyObject(val)) { delete ret[op]; } }
if (Object.keys(ret).length === 0 && options.upsert && Object.keys(filter).length > 0) { // Trick the driver into allowing empty upserts to work around // https://github.com/mongodb/node-mongodb-native/pull/2490 return { $setOnInsert: filter }; } return ret;};
/*! * ignore */
function castPipelineOperator(op, val) { if (op === '$unset') { if (typeof val !== 'string' && (!Array.isArray(val) || val.find(v => typeof v !== 'string'))) { throw new MongooseError('Invalid $unset in pipeline, must be ' + ' a string or an array of strings'); } return val; } if (op === '$project') { if (val == null || typeof val !== 'object') { throw new MongooseError('Invalid $project in pipeline, must be an object'); } return val; } if (op === '$addFields' || op === '$set') { if (val == null || typeof val !== 'object') { throw new MongooseError('Invalid ' + op + ' in pipeline, must be an object'); } return val; } else if (op === '$replaceRoot' || op === '$replaceWith') { if (val == null || typeof val !== 'object') { throw new MongooseError('Invalid ' + op + ' in pipeline, must be an object'); } return val; }
throw new MongooseError('Invalid update pipeline operator: "' + op + '"');}
/** * Walk each path of obj and cast its values * according to its schema. * * @param {Schema} schema * @param {Object} obj part of a query * @param {String} op the atomic operator ($pull, $set, etc) * @param {Object} [options] * @param {Boolean|String} [options.strict] * @param {Query} context * @param {Object} filter * @param {String} pref path prefix (internal only) * @return {Bool} true if this path has keys to update * @api private */
function walkUpdatePath(schema, obj, op, options, context, filter, pref) { const strict = options.strict; const prefix = pref ? pref + '.' : ''; const keys = Object.keys(obj); let i = keys.length; let hasKeys = false; let schematype; let key; let val;
let aggregatedError = null;
const strictMode = strict != null ? strict : schema.options.strict;
while (i--) { key = keys[i]; val = obj[key];
// `$pull` is special because we need to cast the RHS as a query, not as // an update. if (op === '$pull') { schematype = schema._getSchema(prefix + key); if (schematype != null && schematype.schema != null) { obj[key] = cast(schematype.schema, obj[key], options, context); hasKeys = true; continue; } }
const discriminatorKey = (prefix ? prefix + key : key); if ( schema.discriminatorMapping != null && discriminatorKey === schema.options.discriminatorKey && !options.overwriteDiscriminatorKey ) { if (strictMode === 'throw') { const err = new Error('Can\'t modify discriminator key "' + discriminatorKey + '" on discriminator model'); aggregatedError = _appendError(err, context, discriminatorKey, aggregatedError); continue; } else if (strictMode) { delete obj[key]; continue; } }
if (getConstructorName(val) === 'Object') { // watch for embedded doc schemas schematype = schema._getSchema(prefix + key);
if (schematype == null) { const _res = getEmbeddedDiscriminatorPath(schema, obj, filter, prefix + key, options); if (_res.schematype != null) { schematype = _res.schematype; } }
if (op !== '$setOnInsert' && !options.overwrite && handleImmutable(schematype, strict, obj, key, prefix + key, context)) { continue; }
if (schematype && schematype.caster && op in castOps) { // embedded doc schema if ('$each' in val) { hasKeys = true; try { obj[key] = { $each: castUpdateVal(schematype, val.$each, op, key, context, prefix + key) }; } catch (error) { aggregatedError = _appendError(error, context, key, aggregatedError); }
if (val.$slice != null) { obj[key].$slice = val.$slice | 0; }
if (val.$sort) { obj[key].$sort = val.$sort; }
if (val.$position != null) { obj[key].$position = castNumber(val.$position); } } else { if (schematype != null && schematype.$isSingleNested) { const _strict = strict == null ? schematype.schema.options.strict : strict; try { obj[key] = schematype.castForQuery(val, context, { strict: _strict }); } catch (error) { aggregatedError = _appendError(error, context, key, aggregatedError); } } else { try { obj[key] = castUpdateVal(schematype, val, op, key, context, prefix + key); } catch (error) { aggregatedError = _appendError(error, context, key, aggregatedError); } }
if (obj[key] === void 0) { delete obj[key]; continue; }
hasKeys = true; } } else if ((op === '$currentDate') || (op in castOps && schematype)) { // $currentDate can take an object try { obj[key] = castUpdateVal(schematype, val, op, key, context, prefix + key); } catch (error) { aggregatedError = _appendError(error, context, key, aggregatedError); }
if (obj[key] === void 0) { delete obj[key]; continue; }
hasKeys = true; } else { const pathToCheck = (prefix + key); const v = schema._getPathType(pathToCheck); let _strict = strict; if (v && v.schema && _strict == null) { _strict = v.schema.options.strict; }
if (v.pathType === 'undefined') { if (_strict === 'throw') { throw new StrictModeError(pathToCheck); } else if (_strict) { delete obj[key]; continue; } }
// gh-2314 // we should be able to set a schema-less field // to an empty object literal hasKeys |= walkUpdatePath(schema, val, op, options, context, filter, prefix + key) || (utils.isObject(val) && Object.keys(val).length === 0); } } else { const checkPath = (key === '$each' || key === '$or' || key === '$and' || key === '$in') ? pref : prefix + key; schematype = schema._getSchema(checkPath);
// You can use `$setOnInsert` with immutable keys if (op !== '$setOnInsert' && !options.overwrite && handleImmutable(schematype, strict, obj, key, prefix + key, context)) { continue; }
let pathDetails = schema._getPathType(checkPath);
// If no schema type, check for embedded discriminators because the // filter or update may imply an embedded discriminator type. See #8378 if (schematype == null) { const _res = getEmbeddedDiscriminatorPath(schema, obj, filter, checkPath, options); if (_res.schematype != null) { schematype = _res.schematype; pathDetails = _res.type; } }
let isStrict = strict; if (pathDetails && pathDetails.schema && strict == null) { isStrict = pathDetails.schema.options.strict; }
const skip = isStrict && !schematype && !/real|nested/.test(pathDetails.pathType);
if (skip) { // Even if strict is `throw`, avoid throwing an error because of // virtuals because of #6731 if (isStrict === 'throw' && schema.virtuals[checkPath] == null) { throw new StrictModeError(prefix + key); } else { delete obj[key]; } } else { // gh-1845 temporary fix: ignore $rename. See gh-3027 for tracking // improving this. if (op === '$rename') { hasKeys = true; continue; }
try { if (prefix.length === 0 || key.indexOf('.') === -1) { obj[key] = castUpdateVal(schematype, val, op, key, context, prefix + key); } else { // Setting a nested dotted path that's in the schema. We don't allow paths with '.' in // a schema, so replace the dotted path with a nested object to avoid ending up with // dotted properties in the updated object. See (gh-10200) setDottedPath(obj, key, castUpdateVal(schematype, val, op, key, context, prefix + key)); delete obj[key]; } } catch (error) { aggregatedError = _appendError(error, context, key, aggregatedError); }
if (Array.isArray(obj[key]) && (op === '$addToSet' || op === '$push') && key !== '$each') { if (schematype && schematype.caster && !schematype.caster.$isMongooseArray && !schematype.caster[schemaMixedSymbol]) { obj[key] = { $each: obj[key] }; } }
if (obj[key] === void 0) { delete obj[key]; continue; }
hasKeys = true; } } }
if (aggregatedError != null) { throw aggregatedError; }
return hasKeys;}
/*! * ignore */
function _appendError(error, query, key, aggregatedError) { if (typeof query !== 'object' || !query.options.multipleCastError) { throw error; } aggregatedError = aggregatedError || new ValidationError(); aggregatedError.addError(key, error); return aggregatedError;}
/** * These operators should be cast to numbers instead * of their path schema type. * @api private */
const numberOps = { $pop: 1, $inc: 1};
/** * These ops require no casting because the RHS doesn't do anything. * @api private */
const noCastOps = { $unset: 1};
/** * These operators require casting docs * to real Documents for Update operations. * @api private */
const castOps = { $push: 1, $addToSet: 1, $set: 1, $setOnInsert: 1};
/*! * ignore */
const overwriteOps = { $set: 1, $setOnInsert: 1};
/** * Casts `val` according to `schema` and atomic `op`. * * @param {SchemaType} schema * @param {Object} val * @param {String} op the atomic operator ($pull, $set, etc) * @param {String} $conditional * @param {Query} context * @param {String} path * @api private */
function castUpdateVal(schema, val, op, $conditional, context, path) { if (!schema) { // non-existing schema path if (op in numberOps) { try { return castNumber(val); } catch (err) { throw new CastError('number', val, path); } } return val; }
// console.log('CastUpdateVal', path, op, val, schema);
const cond = schema.caster && op in castOps && (utils.isObject(val) || Array.isArray(val)); if (cond && !overwriteOps[op]) { // Cast values for ops that add data to MongoDB. // Ensures embedded documents get ObjectIds etc. let schemaArrayDepth = 0; let cur = schema; while (cur.$isMongooseArray) { ++schemaArrayDepth; cur = cur.caster; } let arrayDepth = 0; let _val = val; while (Array.isArray(_val)) { ++arrayDepth; _val = _val[0]; }
const additionalNesting = schemaArrayDepth - arrayDepth; while (arrayDepth < schemaArrayDepth) { val = [val]; ++arrayDepth; }
let tmp = schema.applySetters(Array.isArray(val) ? val : [val], context);
for (let i = 0; i < additionalNesting; ++i) { tmp = tmp[0]; } return tmp; }
if (op in noCastOps) { return val; } if (op in numberOps) { // Null and undefined not allowed for $pop, $inc if (val == null) { throw new CastError('number', val, schema.path); } if (op === '$inc') { // Support `$inc` with long, int32, etc. (gh-4283) return schema.castForQueryWrapper({ val: val, context: context }); } try { return castNumber(val); } catch (error) { throw new CastError('number', val, schema.path); } } if (op === '$currentDate') { if (typeof val === 'object') { return { $type: val.$type }; } return Boolean(val); }
if (/^\$/.test($conditional)) { return schema.castForQueryWrapper({ $conditional: $conditional, val: val, context: context }); }
if (overwriteOps[op]) { return schema.castForQueryWrapper({ val: val, context: context, $skipQueryCastForUpdate: val != null && schema.$isMongooseArray && schema.$fullPath != null && !schema.$fullPath.match(/\d+$/), $applySetters: schema[schemaMixedSymbol] != null }); }
return schema.castForQueryWrapper({ val: val, context: context });}
mongoose

Version Info

Tagged at
a year ago