You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
601 B
JavaScript
30 lines
601 B
JavaScript
10 months ago
|
'use strict';
|
||
|
|
||
|
const isBsonType = require('../helpers/isBsonType');
|
||
|
const ObjectId = require('../types/objectid');
|
||
|
|
||
|
module.exports = function castObjectId(value) {
|
||
|
if (value == null) {
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
if (isBsonType(value, 'ObjectId')) {
|
||
|
return value;
|
||
|
}
|
||
|
|
||
|
if (value._id) {
|
||
|
if (isBsonType(value._id, 'ObjectId')) {
|
||
|
return value._id;
|
||
|
}
|
||
|
if (value._id.toString instanceof Function) {
|
||
|
return new ObjectId(value._id.toString());
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (value.toString instanceof Function) {
|
||
|
return new ObjectId(value.toString());
|
||
|
}
|
||
|
|
||
|
return new ObjectId(value);
|
||
|
};
|