forked from JamesJansson/sequelize-temporalize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
358 lines (324 loc) · 9.6 KB
/
index.ts
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
import _ from 'lodash';
const temporalizeDefaultOptions = {
// runs the insert within the sequelize hook chain, disable
// for increased performance
blocking: true,
modelSuffix: 'History',
indexSuffix: '_history',
allowTransactions: true,
logTransactionId: true,
logEventId: true,
eventIdColumnName: 'eventId'
};
export function Temporalize({
model,
modelHistory,
sequelize,
temporalizeOptions
}: {
model;
modelHistory?;
sequelize;
temporalizeOptions;
}) {
temporalizeOptions = _.extend(
{},
temporalizeDefaultOptions,
temporalizeOptions
);
if (
temporalizeOptions.logTransactionId &&
!temporalizeOptions.allowTransactions
) {
throw new Error(
'If temporalizeOptions.logTransactionId===true, temporalizeOptions.allowTransactions must also be true'
);
}
const Sequelize = sequelize.Sequelize;
const Op = Sequelize.Op;
const historyName = model.name + temporalizeOptions.modelSuffix;
const transactionIdAttr = temporalizeOptions.logTransactionId
? {
type: Sequelize.STRING,
allowNull: true
}
: undefined;
const eventIdAttr = temporalizeOptions.logEventId
? {
type: Sequelize.STRING,
allowNull: true
}
: undefined;
const historyOwnAttrs = {
hid: {
type: Sequelize.DataTypes.UUID,
defaultValue: Sequelize.DataTypes.UUIDV4,
primaryKey: true,
// autoIncrement: true,
unique: true
},
archivedAt: {
type: Sequelize.DATE,
allowNull: false,
defaultValue: Sequelize.NOW
},
deletion: {
type: Sequelize.BOOLEAN,
allowNull: true
},
transactionId: transactionIdAttr,
[temporalizeOptions.eventIdColumnName]: eventIdAttr
};
const excludedAttributes = [
'Model',
'unique',
'primaryKey',
'autoIncrement',
'set',
'get',
'_modelAttribute',
'references',
'onDelete',
'onUpdate'
];
const historyAttributes = _(model.rawAttributes)
.mapValues(function(v) {
v = _.omit(v, excludedAttributes);
// remove the "NOW" defaultValue for the default timestamps
// we want to save them, but just a copy from our master record
if (v.fieldName == 'createdAt' || v.fieldName == 'updatedAt') {
v.type = Sequelize.DATE;
}
return v;
})
.assign(historyOwnAttrs)
.value();
// If the order matters, use this:
//historyAttributes = _.assign({}, historyOwnAttrs, historyAttributes);
const historyOwnOptions = {
timestamps: false
};
const excludedNames = [
'name',
'tableName',
'sequelize',
'uniqueKeys',
'hasPrimaryKey',
'hooks',
'scopes',
'instanceMethods',
'defaultScope'
];
const modelOptions = _.omit(model.options, excludedNames);
const historyOptions: any = _.assign({}, modelOptions, historyOwnOptions);
historyOptions.indexes = [];
if (model.rawAttributes.id) {
historyOptions.indexes.push({
fields: ['id'],
})
}
let modelHistoryOutput;
if (modelHistory) {
const historyClassOptions = {
...historyOptions,
sequelize,
tableName: historyName
};
modelHistory.init(historyAttributes, historyClassOptions);
modelHistoryOutput = modelHistory;
} else {
modelHistoryOutput = sequelize.define(
historyName,
historyAttributes,
historyOptions
);
}
modelHistoryOutput.originModel = model;
function transformToHistoryEntry(
instance,
options,
{
destroyOperation,
restoreOperation
}: { destroyOperation?: Boolean; restoreOperation?: Boolean }
) {
const dataValues = _.cloneDeep(instance.dataValues);
dataValues.archivedAt = instance.dataValues.updatedAt || Date.now(); // Date.now() if options.timestamps = false
if (restoreOperation) {
dataValues.archivedAt = Date.now(); // There may be a better time to use, but we are yet to find it
}
if (destroyOperation) {
// If paranoid is true, use the deleted value
dataValues.archivedAt = instance.dataValues.deletedAt || Date.now();
dataValues.deletion = true;
}
if (temporalizeOptions.logTransactionId && options.transaction) {
dataValues.transactionId = getTransactionId(options.transaction);
}
if (temporalizeOptions.logEventId && options.eventId) {
dataValues[temporalizeOptions.eventIdColumnName] = options.eventId;
}
return dataValues;
}
async function createHistoryEntry(
instance,
options,
{
destroyOperation,
restoreOperation
}: { destroyOperation?: Boolean; restoreOperation?: Boolean }
) {
const dataValues = transformToHistoryEntry(instance, options, {
destroyOperation,
restoreOperation
});
const historyRecordPromise = modelHistoryOutput.create(dataValues, {
transaction: temporalizeOptions.allowTransactions
? options.transaction
: null
});
if (temporalizeOptions.blocking) {
return historyRecordPromise;
}
}
async function createHistoryEntryBulk(
instances,
options,
{
destroyOperation,
restoreOperation
}: { destroyOperation?: Boolean; restoreOperation?: Boolean }
) {
const dataValuesArr = instances.map(instance => {
return transformToHistoryEntry(instance, options, {
destroyOperation,
restoreOperation
});
});
const historyRecordPromise = modelHistoryOutput.bulkCreate(dataValuesArr, {
transaction: temporalizeOptions.allowTransactions
? options.transaction
: null
});
if (temporalizeOptions.blocking) {
return historyRecordPromise;
}
}
async function storeBulkPrimaryKeys(options) {
const instances = await model.findAll({
attributes: model.primaryKeyAttributes,
where: options.where,
transaction: options.transaction,
paranoid: options.paranoid
});
options._sequelizeTemporalizeIdStore = instances.map(
i => i[model.primaryKeyAttributes[0]]
);
}
const afterCreateHook = async function(obj, options) {
return model
.findOne({
where: { id: obj.id },
transaction: options.transaction,
paranoid: false
})
.then(function(instance) {
return createHistoryEntry(instance, options, {});
});
};
const afterBulkCreateHook = async function(instances, options) {
if (!options.individualHooks) {
return createHistoryEntryBulk(instances, options, {});
}
};
const afterUpdateHook = async (instance, options) => {
return createHistoryEntry(instance, options, {});
};
const beforeBulkUpdateHook = async options => {
if (!options.individualHooks) {
await storeBulkPrimaryKeys(options);
}
};
const afterBulkUpdateHook = async options => {
if (!options.individualHooks) {
const primaryKeyValues = options._sequelizeTemporalizeIdStore;
const instances = await model.findAll({
where: {
[model.primaryKeyAttributes[0]]: { [Op.in]: primaryKeyValues }
},
transaction: options.transaction,
paranoid: options.paranoid
});
return createHistoryEntryBulk(instances, options, {});
}
};
const afterDestroyHook = async (instance, options) => {
return createHistoryEntry(instance, options, { destroyOperation: true });
};
const beforeBulkDestroyHook = async options => {
if (!options.individualHooks) {
const instances = await model.findAll({
where: options.where,
transaction: options.transaction,
paranoid: false
});
return createHistoryEntryBulk(instances, options, {
destroyOperation: true
}); // Set date is implied by options.paranoid === false
}
};
const afterBulkDestroyHook = async options => {};
const afterRestoreHook = async (instance, options) => {
return createHistoryEntry(instance, options, { restoreOperation: true });
};
const beforeBulkRestoreHook = async options => {
throw new Error('beforeBulkRestoreHook not working');
if (!options.individualHooks) {
await storeBulkPrimaryKeys(options);
}
};
const afterBulkRestoreHook = async options => {
options.restoreOperation = true;
if (!options.individualHooks) {
await model
.findAll({
where: options.where,
transaction: options.transaction,
paranoid: false
})
.then(function(instances) {
return createHistoryEntryBulk(instances, options, {
restoreOperation: true
});
});
}
};
model.addHook('afterCreate', afterCreateHook);
model.addHook('afterBulkCreate', afterBulkCreateHook);
model.addHook('afterUpdate', afterUpdateHook);
model.addHook('beforeBulkUpdate', beforeBulkUpdateHook);
model.addHook('afterBulkUpdate', afterBulkUpdateHook);
model.addHook('afterDestroy', afterDestroyHook);
model.addHook('beforeBulkDestroy', beforeBulkDestroyHook);
model.addHook('afterBulkDestroy', afterBulkDestroyHook);
model.addHook('afterRestore', afterRestoreHook);
model.addHook('beforeBulkRestore', beforeBulkRestoreHook);
model.addHook('afterBulkRestore', afterBulkRestoreHook);
const readOnlyHook = function() {
throw new Error(
"This is a read-only history database. You aren't allowed to modify it."
);
};
modelHistoryOutput.addHook('beforeUpdate', readOnlyHook);
modelHistoryOutput.addHook('beforeDestroy', readOnlyHook);
const beforeSync = function() {};
modelHistoryOutput.addHook('beforeSync', 'HistoricalSyncHook', beforeSync);
return modelHistoryOutput;
}
export function getTransactionId(transaction) {
function getId() {
return this.id;
}
const boundGetId = getId.bind(transaction);
return boundGetId();
}