@@ -152,6 +152,7 @@ function deserializeObject(
152
152
// If are at the end of the buffer there is a problem with the document
153
153
if ( i >= buffer . byteLength ) throw new Error ( 'Bad BSON Document: illegal CString' ) ;
154
154
const name = isArray ? arrayIndex ++ : buffer . toString ( 'utf8' , index , i ) ;
155
+ let value ;
155
156
156
157
index = i + 1 ;
157
158
@@ -172,30 +173,29 @@ function deserializeObject(
172
173
throw new Error ( 'Invalid UTF-8 string in BSON document' ) ;
173
174
}
174
175
175
- const s = buffer . toString ( 'utf8' , index , index + stringSize - 1 ) ;
176
+ value = buffer . toString ( 'utf8' , index , index + stringSize - 1 ) ;
176
177
177
- object [ name ] = s ;
178
178
index = index + stringSize ;
179
179
} else if ( elementType === constants . BSON_DATA_OID ) {
180
180
const oid = Buffer . alloc ( 12 ) ;
181
181
buffer . copy ( oid , 0 , index , index + 12 ) ;
182
- object [ name ] = new ObjectId ( oid ) ;
182
+ value = new ObjectId ( oid ) ;
183
183
index = index + 12 ;
184
184
} else if ( elementType === constants . BSON_DATA_INT && promoteValues === false ) {
185
- object [ name ] = new Int32 (
185
+ value = new Int32 (
186
186
buffer [ index ++ ] | ( buffer [ index ++ ] << 8 ) | ( buffer [ index ++ ] << 16 ) | ( buffer [ index ++ ] << 24 )
187
187
) ;
188
188
} else if ( elementType === constants . BSON_DATA_INT ) {
189
- object [ name ] =
189
+ value =
190
190
buffer [ index ++ ] |
191
191
( buffer [ index ++ ] << 8 ) |
192
192
( buffer [ index ++ ] << 16 ) |
193
193
( buffer [ index ++ ] << 24 ) ;
194
194
} else if ( elementType === constants . BSON_DATA_NUMBER && promoteValues === false ) {
195
- object [ name ] = new Double ( buffer . readDoubleLE ( index ) ) ;
195
+ value = new Double ( buffer . readDoubleLE ( index ) ) ;
196
196
index = index + 8 ;
197
197
} else if ( elementType === constants . BSON_DATA_NUMBER ) {
198
- object [ name ] = buffer . readDoubleLE ( index ) ;
198
+ value = buffer . readDoubleLE ( index ) ;
199
199
index = index + 8 ;
200
200
} else if ( elementType === constants . BSON_DATA_DATE ) {
201
201
const lowBits =
@@ -208,10 +208,10 @@ function deserializeObject(
208
208
( buffer [ index ++ ] << 8 ) |
209
209
( buffer [ index ++ ] << 16 ) |
210
210
( buffer [ index ++ ] << 24 ) ;
211
- object [ name ] = new Date ( new Long ( lowBits , highBits ) . toNumber ( ) ) ;
211
+ value = new Date ( new Long ( lowBits , highBits ) . toNumber ( ) ) ;
212
212
} else if ( elementType === constants . BSON_DATA_BOOLEAN ) {
213
213
if ( buffer [ index ] !== 0 && buffer [ index ] !== 1 ) throw new Error ( 'illegal boolean type value' ) ;
214
- object [ name ] = buffer [ index ++ ] === 1 ;
214
+ value = buffer [ index ++ ] === 1 ;
215
215
} else if ( elementType === constants . BSON_DATA_OBJECT ) {
216
216
const _index = index ;
217
217
const objectSize =
@@ -224,9 +224,9 @@ function deserializeObject(
224
224
225
225
// We have a raw value
226
226
if ( raw ) {
227
- object [ name ] = buffer . slice ( index , index + objectSize ) ;
227
+ value = buffer . slice ( index , index + objectSize ) ;
228
228
} else {
229
- object [ name ] = deserializeObject ( buffer , _index , options , false ) ;
229
+ value = deserializeObject ( buffer , _index , options , false ) ;
230
230
}
231
231
232
232
index = index + objectSize ;
@@ -253,15 +253,15 @@ function deserializeObject(
253
253
arrayOptions [ 'raw' ] = true ;
254
254
}
255
255
256
- object [ name ] = deserializeObject ( buffer , _index , arrayOptions , true ) ;
256
+ value = deserializeObject ( buffer , _index , arrayOptions , true ) ;
257
257
index = index + objectSize ;
258
258
259
259
if ( buffer [ index - 1 ] !== 0 ) throw new Error ( 'invalid array terminator byte' ) ;
260
260
if ( index !== stopIndex ) throw new Error ( 'corrupted array bson' ) ;
261
261
} else if ( elementType === constants . BSON_DATA_UNDEFINED ) {
262
- object [ name ] = undefined ;
262
+ value = undefined ;
263
263
} else if ( elementType === constants . BSON_DATA_NULL ) {
264
- object [ name ] = null ;
264
+ value = null ;
265
265
} else if ( elementType === constants . BSON_DATA_LONG ) {
266
266
// Unpack the low and high bits
267
267
const lowBits =
@@ -277,12 +277,12 @@ function deserializeObject(
277
277
const long = new Long ( lowBits , highBits ) ;
278
278
// Promote the long if possible
279
279
if ( promoteLongs && promoteValues === true ) {
280
- object [ name ] =
280
+ value =
281
281
long . lessThanOrEqual ( JS_INT_MAX_LONG ) && long . greaterThanOrEqual ( JS_INT_MIN_LONG )
282
282
? long . toNumber ( )
283
283
: long ;
284
284
} else {
285
- object [ name ] = long ;
285
+ value = long ;
286
286
}
287
287
} else if ( elementType === constants . BSON_DATA_DECIMAL128 ) {
288
288
// Buffer to contain the decimal bytes
@@ -295,9 +295,9 @@ function deserializeObject(
295
295
const decimal128 = new Decimal128 ( bytes ) as Decimal128 | { toObject ( ) : unknown } ;
296
296
// If we have an alternative mapper use that
297
297
if ( 'toObject' in decimal128 && typeof decimal128 . toObject === 'function' ) {
298
- object [ name ] = decimal128 . toObject ( ) ;
298
+ value = decimal128 . toObject ( ) ;
299
299
} else {
300
- object [ name ] = decimal128 ;
300
+ value = decimal128 ;
301
301
}
302
302
} else if ( elementType === constants . BSON_DATA_BINARY ) {
303
303
let binarySize =
@@ -333,9 +333,9 @@ function deserializeObject(
333
333
}
334
334
335
335
if ( promoteBuffers && promoteValues ) {
336
- object [ name ] = buffer . slice ( index , index + binarySize ) ;
336
+ value = buffer . slice ( index , index + binarySize ) ;
337
337
} else {
338
- object [ name ] = new Binary ( buffer . slice ( index , index + binarySize ) , subType ) ;
338
+ value = new Binary ( buffer . slice ( index , index + binarySize ) , subType ) ;
339
339
}
340
340
} else {
341
341
const _buffer = Buffer . alloc ( binarySize ) ;
@@ -360,9 +360,9 @@ function deserializeObject(
360
360
}
361
361
362
362
if ( promoteBuffers && promoteValues ) {
363
- object [ name ] = _buffer ;
363
+ value = _buffer ;
364
364
} else {
365
- object [ name ] = new Binary ( _buffer , subType ) ;
365
+ value = new Binary ( _buffer , subType ) ;
366
366
}
367
367
}
368
368
@@ -412,7 +412,7 @@ function deserializeObject(
412
412
}
413
413
}
414
414
415
- object [ name ] = new RegExp ( source , optionsArray . join ( '' ) ) ;
415
+ value = new RegExp ( source , optionsArray . join ( '' ) ) ;
416
416
} else if ( elementType === constants . BSON_DATA_REGEXP && bsonRegExp === true ) {
417
417
// Get the start search index
418
418
i = index ;
@@ -439,7 +439,7 @@ function deserializeObject(
439
439
index = i + 1 ;
440
440
441
441
// Set the object
442
- object [ name ] = new BSONRegExp ( source , regExpOptions ) ;
442
+ value = new BSONRegExp ( source , regExpOptions ) ;
443
443
} else if ( elementType === constants . BSON_DATA_SYMBOL ) {
444
444
const stringSize =
445
445
buffer [ index ++ ] |
@@ -453,7 +453,7 @@ function deserializeObject(
453
453
)
454
454
throw new Error ( 'bad string length in bson' ) ;
455
455
const symbol = buffer . toString ( 'utf8' , index , index + stringSize - 1 ) ;
456
- object [ name ] = promoteValues ? symbol : new BSONSymbol ( symbol ) ;
456
+ value = promoteValues ? symbol : new BSONSymbol ( symbol ) ;
457
457
index = index + stringSize ;
458
458
} else if ( elementType === constants . BSON_DATA_TIMESTAMP ) {
459
459
const lowBits =
@@ -467,11 +467,11 @@ function deserializeObject(
467
467
( buffer [ index ++ ] << 16 ) |
468
468
( buffer [ index ++ ] << 24 ) ;
469
469
470
- object [ name ] = new Timestamp ( lowBits , highBits ) ;
470
+ value = new Timestamp ( lowBits , highBits ) ;
471
471
} else if ( elementType === constants . BSON_DATA_MIN_KEY ) {
472
- object [ name ] = new MinKey ( ) ;
472
+ value = new MinKey ( ) ;
473
473
} else if ( elementType === constants . BSON_DATA_MAX_KEY ) {
474
- object [ name ] = new MaxKey ( ) ;
474
+ value = new MaxKey ( ) ;
475
475
} else if ( elementType === constants . BSON_DATA_CODE ) {
476
476
const stringSize =
477
477
buffer [ index ++ ] |
@@ -491,12 +491,12 @@ function deserializeObject(
491
491
// If we have cache enabled let's look for the md5 of the function in the cache
492
492
if ( cacheFunctions ) {
493
493
// Got to do this to avoid V8 deoptimizing the call due to finding eval
494
- object [ name ] = isolateEval ( functionString , functionCache , object ) ;
494
+ value = isolateEval ( functionString , functionCache , object ) ;
495
495
} else {
496
- object [ name ] = isolateEval ( functionString ) ;
496
+ value = isolateEval ( functionString ) ;
497
497
}
498
498
} else {
499
- object [ name ] = new Code ( functionString ) ;
499
+ value = new Code ( functionString ) ;
500
500
}
501
501
502
502
// Update parse index position
@@ -559,14 +559,14 @@ function deserializeObject(
559
559
// If we have cache enabled let's look for the md5 of the function in the cache
560
560
if ( cacheFunctions ) {
561
561
// Got to do this to avoid V8 deoptimizing the call due to finding eval
562
- object [ name ] = isolateEval ( functionString , functionCache , object ) ;
562
+ value = isolateEval ( functionString , functionCache , object ) ;
563
563
} else {
564
- object [ name ] = isolateEval ( functionString ) ;
564
+ value = isolateEval ( functionString ) ;
565
565
}
566
566
567
- object [ name ] . scope = scopeObject ;
567
+ value . scope = scopeObject ;
568
568
} else {
569
- object [ name ] = new Code ( functionString , scopeObject ) ;
569
+ value = new Code ( functionString , scopeObject ) ;
570
570
}
571
571
} else if ( elementType === constants . BSON_DATA_DBPOINTER ) {
572
572
// Get the code string size
@@ -599,12 +599,22 @@ function deserializeObject(
599
599
index = index + 12 ;
600
600
601
601
// Upgrade to DBRef type
602
- object [ name ] = new DBRef ( namespace , oid ) ;
602
+ value = new DBRef ( namespace , oid ) ;
603
603
} else {
604
604
throw new Error (
605
605
'Detected unknown BSON type ' + elementType . toString ( 16 ) + ' for fieldname "' + name + '"'
606
606
) ;
607
607
}
608
+ if ( name === '__proto__' ) {
609
+ Object . defineProperty ( object , name , {
610
+ value,
611
+ writable : true ,
612
+ enumerable : true ,
613
+ configurable : true
614
+ } ) ;
615
+ } else {
616
+ object [ name ] = value ;
617
+ }
608
618
}
609
619
610
620
// Check if the deserialization was against a valid array/object
0 commit comments