-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathindex.js
401 lines (325 loc) · 11.8 KB
/
index.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
let JsonDiffPatch = require('jsondiffpatch'),
semver = require('semver');
let historyPlugin = (options = {}) => {
let pluginOptions = {
mongoose: false, // A mongoose instance
connection: undefined, // DB connection to use instead of default connection
modelName: '__histories', // Name of the collection for the histories
embeddedDocument: false, // Is this a sub document
embeddedModelName: '', // Name of model if used with embedded document
userCollection: 'users', // Collection to ref when you pass an user id
userCollectionIdType: false, // Type for user collection ref id, defaults to ObjectId
accountCollection: 'accounts', // Collection to ref when you pass an account id or the item has an account property
accountCollectionIdType: false, // Type for account collection ref id, defaults to ObjectId
userFieldName: 'user', // Name of the property for the user
accountFieldName: 'account', // Name of the property of the account if any
timestampFieldName: 'timestamp', // Name of the property of the timestamp
methodFieldName: 'method', // Name of the property of the method
collectionIdType: false, // Cast type for _id (support for other binary types like uuid)
ignore: [], // List of fields to ignore when compare changes
noDiffSave: false, // Save event even if there are no changes
noDiffSaveOnMethods: [], // Save event even if there are no changes if method matches
noEventSave: true, // If false save only when __history property is passed
startingVersion: '0.0.0', // Default starting version
// If true save only the _id of the populated fields
// If false save the whole object of the populated fields
// If false and a populated field property changes it triggers a new history
// You need to populate the field after a change is made on the original document or it will not catch the differences
ignorePopulatedFields: true
};
Object.assign(pluginOptions, options);
if (pluginOptions.mongoose === false) {
throw new Error('You need to pass a mongoose instance');
}
let mongoose = pluginOptions.mongoose;
const collectionIdType = options.collectionIdType || mongoose.Schema.Types.ObjectId;
const userCollectionIdType = options.userCollectionIdType || mongoose.Schema.Types.ObjectId;
const accountCollectionIdType = options.accountCollectionIdType || mongoose.Schema.Types.ObjectId;
let Schema = new mongoose.Schema(
{
collectionName: String,
collectionId: { type: collectionIdType },
diff: {},
event: String,
reason: String,
data: { type: mongoose.Schema.Types.Mixed },
[pluginOptions.userFieldName]: {
type: userCollectionIdType,
ref: pluginOptions.userCollection
},
[pluginOptions.accountFieldName]: {
type: accountCollectionIdType,
ref: pluginOptions.accountCollection
},
version: { type: String, default: pluginOptions.startingVersion },
[pluginOptions.timestampFieldName]: Date,
[pluginOptions.methodFieldName]: String
},
{
collection: pluginOptions.modelName
}
);
Schema.set('minimize', false);
Schema.set('versionKey', false);
Schema.set('strict', true);
Schema.pre('save', function (next) {
this[pluginOptions.timestampFieldName] = new Date();
next();
});
const connection = pluginOptions.connection || mongoose.connection;
let Model = connection.model(pluginOptions.modelName, Schema);
let getModelName = (defaultName) => {
return pluginOptions.embeddedDocument ? pluginOptions.embeddedModelName : defaultName;
};
let jdf = JsonDiffPatch.create({
objectHash: function (obj, index) {
if (obj !== undefined) {
return (
(obj._id && obj._id.toString()) ||
obj.id ||
obj.key ||
'$$index:' + index
);
}
return '$$index:' + index;
},
arrays: {
detectMove: true
}
});
let query = (method = 'find', options = {}) => {
let query = Model[method](options.find || {});
if (options.select !== undefined) {
Object.assign(options.select, {
_id: 0,
collectionId: 0,
collectionName: 0
});
query.select(options.select);
}
options.sort && query.sort(options.sort);
options.populate && query.populate(options.populate);
options.limit && query.limit(options.limit);
return query.lean();
};
let getPreviousVersion = async (document) => {
// get the oldest version from the history collection
let versions = await document.getVersions();
return versions[versions.length - 1] ?
versions[versions.length - 1].object :
{};
};
let getPopulatedFields = (document) => {
let populatedFields = [];
// we only depopulate the first depth of fields
for (let field in document) {
if (document.populated(field)) {
populatedFields.push(field);
}
}
return populatedFields;
};
let depopulate = (document, populatedFields) => {
// we only depopulate the first depth of fields
for (let field of populatedFields) {
document.depopulate(field);
}
};
let repopulate = async (document, populatedFields) => {
for (let field of populatedFields) {
await document.populate(field).execPopulate();
}
};
let cloneObjectByJson = (object) => object
? JSON.parse(JSON.stringify(object))
: {};
let cleanFields = (object) => {
delete object.__history;
delete object.__v;
for (let i in pluginOptions.ignore) {
delete object[pluginOptions.ignore[i]];
}
return object;
};
let getDiff = ({ prev, current, document, forceSave }) => {
let diff = jdf.diff(prev, current);
let saveWithoutDiff = false;
if (document.__history && pluginOptions.noDiffSaveOnMethods.length) {
let method = document.__history[pluginOptions.methodFieldName];
if (pluginOptions.noDiffSaveOnMethods.includes(method)) {
saveWithoutDiff = true;
if (forceSave) {
diff = prev;
}
}
}
return {
diff,
saveWithoutDiff
};
};
let saveHistory = async ({ document, diff }) => {
let lastHistory = await Model.findOne({
collectionName: getModelName(document.constructor.modelName),
collectionId: document._id
})
.sort('-' + pluginOptions.timestampFieldName)
.select({ version: 1 });
let obj = {};
obj.collectionName = getModelName(document.constructor.modelName);
obj.collectionId = document._id;
obj.diff = diff || {};
if (document.__history) {
obj.event = document.__history.event;
obj[pluginOptions.userFieldName] = document.__history[
pluginOptions.userFieldName
];
obj[pluginOptions.accountFieldName] =
document[pluginOptions.accountFieldName] ||
document.__history[pluginOptions.accountFieldName];
obj.reason = document.__history.reason;
obj.data = document.__history.data;
obj[pluginOptions.methodFieldName] = document.__history[
pluginOptions.methodFieldName
];
}
let version;
if (lastHistory) {
let type =
document.__history && document.__history.type
? document.__history.type
: 'major';
version = semver.inc(lastHistory.version, type);
}
obj.version = version || pluginOptions.startingVersion;
for (let i in obj) {
if (obj[i] === undefined) {
delete obj[i];
}
}
let history = new Model(obj);
document.__history = undefined;
await history.save();
};
return function (schema) {
schema.add({
__history: { type: mongoose.Schema.Types.Mixed }
});
let preSave = function (forceSave) {
return async function (next) {
let currentDocument = this;
if (currentDocument.__history !== undefined || pluginOptions.noEventSave) {
try {
let previousVersion = await getPreviousVersion(currentDocument);
let populatedFields = getPopulatedFields(currentDocument);
if (pluginOptions.ignorePopulatedFields) {
depopulate(currentDocument, populatedFields);
}
let currentObject = cleanFields(cloneObjectByJson(currentDocument));
let previousObject = cleanFields(cloneObjectByJson(previousVersion));
if (pluginOptions.ignorePopulatedFields) {
await repopulate(currentDocument, populatedFields);
}
let { diff, saveWithoutDiff } = getDiff({
current: currentObject,
prev: previousObject,
document: currentDocument,
forceSave
});
if (diff || pluginOptions.noDiffSave || saveWithoutDiff) {
await saveHistory({ document: currentDocument, diff });
}
return next();
} catch (error) {
return next(error);
}
}
next();
};
};
schema.pre('save', preSave(false));
schema.pre('remove', preSave(true));
// diff.find
schema.methods.getDiffs = function (options = {}) {
options.find = options.find || {};
Object.assign(options.find, {
collectionName: getModelName(this.constructor.modelName),
collectionId: this._id
});
options.sort = options.sort || '-' + pluginOptions.timestampFieldName;
return query('find', options);
};
// diff.get
schema.methods.getDiff = function (version, options = {}) {
options.find = options.find || {};
Object.assign(options.find, {
collectionName: getModelName(this.constructor.modelName),
collectionId: this._id,
version: version
});
options.sort = options.sort || '-' + pluginOptions.timestampFieldName;
return query('findOne', options);
};
// versions.get
schema.methods.getVersion = async function (version2get, includeObject = true) {
let histories = await this.getDiffs({
sort: pluginOptions.timestampFieldName
});
let lastVersion = histories[histories.length - 1],
firstVersion = histories[0],
history,
version = {};
if (semver.gt(version2get, lastVersion.version)) {
version2get = lastVersion.version;
}
if (semver.lt(version2get, firstVersion.version)) {
version2get = firstVersion.version;
}
histories.map((item) => {
if (item.version === version2get) {
history = item;
}
});
if (!includeObject) {
return history;
}
histories.map((item) => {
if (
semver.lt(item.version, version2get) ||
item.version === version2get
) {
version = jdf.patch(version, item.diff);
}
});
delete history.diff;
history.object = version;
return history;
};
// versions.compare
schema.methods.compareVersions = async function (versionLeft, versionRight) {
let versionLeftDocument = await this.getVersion(versionLeft);
let versionRightDocument = await this.getVersion(versionRight);
return {
diff: jdf.diff(versionLeftDocument.object, versionRightDocument.object),
left: versionLeftDocument.object,
right: versionRightDocument.object
};
};
// versions.find
schema.methods.getVersions = async function (options = {}, includeObject = true) {
options.sort = options.sort || pluginOptions.timestampFieldName;
let histories = await this.getDiffs(options);
if (!includeObject) {
return histories;
}
let version = {};
for (let i = 0; i < histories.length; i++) {
version = jdf.patch(version, histories[i].diff);
histories[i].object = jdf.clone(version);
delete histories[i].diff;
}
return histories;
};
};
};
module.exports = historyPlugin;