-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (35 loc) · 1.03 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
'use strict';
module.exports = (options) => {
const defaultOptions = {
algorithm: 'aes-256-gcm',
fields: [],
aesKey: options.aesKey || process.env.ENC_ROOT_KEY
}
options = {...defaultOptions, ...options};
const crypto = require('./crypto')(options.aesKey, options.algorithm);
return Model => {
return class extends Model {
$beforeInsert(context) {
super.$beforeInsert(context);
this.mutateOptionFields(crypto.encrypt);
}
$beforeUpdate(context) {
super.$beforeInsert(context);
this.mutateOptionFields(crypto.encrypt);
}
$afterFind(context) {
super.$afterFind(context);
this.mutateOptionFields(crypto.decrypt);
}
mutateOptionFields(mutator) {
const fields = Object.keys(this);
for (let i = 0; i < fields.length; i++) {
if(options.fields.includes(fields[i])) {
const toMutate = this[fields[i]];
this[fields[i]] = mutator(toMutate);
}
}
}
}
}
};