-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
127 lines (102 loc) · 4.05 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
const
_ = require('lodash'),
async = require('async');
module.exports = function mongoosePopulateHelper(schema, configs) {
if (configs.constructor.name === 'Object')
configs = [configs];
_.each(configs, function (config) {
//default
config.targetSchema = config.targetSchema || schema;
const type = getType(config);
const newField = {
[config.targetField.name]: _.omit(config.targetField, 'name')
};
addFieldToSchema({
newField: newField,
type: type,
localSchema: schema,
foreignSchema: config.targetSchema
});
schema.post('save', function (document, done) {
let sourceFieldValue = get(config.sourceField),
targetFieldValue = get(config.targetField.name);
//document reference change detector
let documentProxy = new Proxy({ document }, {
set: (target, property, value) => {
document = value;
sourceFieldValue = get(config.sourceField);
targetFieldValue = get(config.targetField.name);
/* return true; */ //validates set
}
});
async.waterfall([
selectSourceField,
populateSourceField,
assignTargetField
], done);
function selectSourceField(next) {
if (!_.isNil(sourceFieldValue))
return next(null, document);
document.constructor
.findById(document.id)
.select(
[config.sourceField]
.concat(Object.keys(document.toObject()))
.join(' ')
)
.exec(next);
//Model.exec returns new instance of document => Not the same reference used
//document.populate returns same instance of document
}
function populateSourceField(selectedDocument, next) {
documentProxy.document = selectedDocument;
if (document === null)
return done();
if (sourceFieldValue && sourceFieldValue.constructor.name === 'ObjectID')
return document.populate(config.sourceField, next)
return next(null, document);
}
function assignTargetField(document, next) {
documentProxy.document = document;
if (_.isNil(sourceFieldValue))
return done();
targetFieldValue = config.map ? config.map(sourceFieldValue) : sourceFieldValue;
if (type === 'foreign')
document.populate(config.referenceField, (err, document) => err ? next(err) : updateDocument(document[config.referenceField]))
else
updateDocument(document);
/* ASSIGNTARGETFIELD LOCAL HELPER */
function updateDocument(model) {
try {
model.collection
.update({ _id: model._id }, { $set: { [config.targetField.name]: targetFieldValue } })
.then(() => next())
.catch(next);
}
catch (e) {
next();
}
}
}
/* HOOK LOCAL HELPER */
function get(path) {
return _.get(document, path);
}
function set(path) {
return _.set(document, path);
}
});
});
}
/* GLOBAL HELPERS */
function getType(config) {
if (['referenceField', 'targetSchema'].every(key => key in config))
return 'foreign';
return 'local';
}
function addFieldToSchema(options) {
if (options.type === 'foreign')
options.foreignSchema.add(options.newField);
else
options.localSchema.add(options.newField);
}