gx
chenyc
2025-06-12 7b72ac13a83764a662159d4a49b7fffb90476ecb
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
'use strict';
 
const MongoError = require('../core').MongoError;
const FindAndModifyOperation = require('./find_and_modify');
const hasAtomicOperators = require('../utils').hasAtomicOperators;
 
class FindOneAndUpdateOperation extends FindAndModifyOperation {
  constructor(collection, filter, update, options) {
    if ('returnDocument' in options && 'returnOriginal' in options) {
      throw new MongoError(
        'findOneAndUpdate option returnOriginal is deprecated in favor of returnDocument and cannot be combined'
      );
    }
    // Final options
    const finalOptions = Object.assign({}, options);
    finalOptions.fields = options.projection;
    finalOptions.update = true;
    finalOptions.new = options.returnDocument === 'after' || options.returnOriginal === false;
    finalOptions.upsert = options.upsert === true;
 
    if (filter == null || typeof filter !== 'object') {
      throw new TypeError('Filter parameter must be an object');
    }
 
    if (update == null || typeof update !== 'object') {
      throw new TypeError('Update parameter must be an object');
    }
 
    if (!hasAtomicOperators(update)) {
      throw new TypeError('Update document requires atomic operators');
    }
 
    super(collection, filter, finalOptions.sort, update, finalOptions);
  }
}
 
module.exports = FindOneAndUpdateOperation;