normalize-mongoose
Version:
Normalize Mongoose JSON output
49 lines (39 loc) • 887 B
JavaScript
const normalizeMongoose = schema => {
const {
toJSON,
normalizeId,
removeVersion,
removePrivatePaths,
toJSON: {transform} = {},
} = schema.options;
const json = {
transform(doc, returnValue, options) {
if (!removePrivatePaths) {
const {paths} = schema;
for (const path in paths) {
if (paths[path].options && paths[path].options.private && returnValue[path]) {
delete returnValue[path];
}
}
}
if (!removeVersion) {
const {__v} = returnValue;
if (!__v) {
delete returnValue.__v;
}
}
if (!normalizeId) {
const {_id, id} = returnValue;
if (_id && !id) {
returnValue.id = _id.toString();
delete returnValue._id;
}
}
if (transform) {
return transform(doc, returnValue, options);
}
},
};
schema.options.toJSON = {...toJSON, ...json};
};
export default normalizeMongoose;