forked from bookshelf/bookshelf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheager.js
109 lines (94 loc) · 4.19 KB
/
eager.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
// EagerRelation
// ---------------
var _ = require('lodash');
var inherits = require('inherits');
var Helpers = require('./helpers');
var Promise = require('./base/promise');
var EagerBase = require('./base/eager');
// An `EagerRelation` object temporarily stores the models from an eager load,
// and handles matching eager loaded objects with their parent(s). The `tempModel`
// is only used to retrieve the value of the relation method, to know the constrains
// for the eager query.
function EagerRelation() {
EagerBase.apply(this, arguments);
}
inherits(EagerRelation, EagerBase);
_.extend(EagerRelation.prototype, {
// Handles an eager loaded fetch, passing the name of the item we're fetching for,
// and any options needed for the current fetch.
eagerFetch: Promise.method(function(relationName, handled, options) {
var relatedData = handled.relatedData;
// skip eager loading for rows where the foreign key isn't set
if (relatedData.parentFk === null) return;
if (relatedData.type === 'morphTo') return this.morphToFetch(relationName, relatedData, options);
// Call the function, if one exists, to constrain the eager loaded query.
options.beforeFn.call(handled, handled.query());
return handled
.sync(_.extend(options, {parentResponse: this.parentResponse}))
.select()
.bind(this)
.tap(function(response) {
return this._eagerLoadHelper(response, relationName, handled, _.omit(options, 'parentResponse'));
});
}),
// Special handler for the eager loaded morph-to relations, this handles
// the fact that there are several potential models that we need to be fetching against.
// pairing them up onto a single response for the eager loading.
morphToFetch: Promise.method(function(relationName, relatedData, options) {
var groups = _.groupBy(this.parent, function(m) {
return m.get(relatedData.morphName + '_type');
});
var pending = _.reduce(groups, function(memo, val, group) {
var Target = Helpers.morphCandidate(relatedData.candidates, group);
var target = new Target();
memo.push(target
.query('whereIn',
_.result(target, 'idAttribute'),
_.uniq(_.invoke(groups[group], 'get', relatedData.morphName + '_id'))
)
.sync(options)
.select()
.bind(this)
.tap(function(response) {
return this._eagerLoadHelper(response, relationName, {
relatedData: relatedData.instance('morphTo', Target, {morphName: relatedData.morphName})
}, options);
}));
return memo;
}, [], this);
return Promise.all(pending).then(function(resps) {
return _.flatten(resps);
});
}),
// Handles the eager load for both the `morphTo` and regular cases.
_eagerLoadHelper: function(response, relationName, handled, options) {
var relatedModels = this.pushModels(relationName, handled, response);
var relatedData = handled.relatedData;
// If there is a response, fetch additional nested eager relations, if any.
if (response.length > 0 && options.withRelated) {
var relatedModel = relatedData.createModel();
// If this is a `morphTo` relation, we need to do additional processing
// to ensure we don't try to load any relations that don't look to exist.
if (relatedData.type === 'morphTo') {
var withRelated = this._filterRelated(relatedModel, options);
if (withRelated.length === 0) return;
options = _.extend({}, options, {withRelated: withRelated});
}
return new EagerRelation(relatedModels, response, relatedModel).fetch(options).return(response);
}
},
// Filters the `withRelated` on a `morphTo` relation, to ensure that only valid
// relations are attempted for loading.
_filterRelated: function(relatedModel, options) {
// By this point, all withRelated should be turned into a hash, so it should
// be fairly simple to process by splitting on the dots.
return _.reduce(options.withRelated, function(memo, val) {
for (var key in val) {
var seg = key.split('.')[0];
if (_.isFunction(relatedModel[seg])) memo.push(val);
}
return memo;
}, []);
}
});
module.exports = EagerRelation;