-
Notifications
You must be signed in to change notification settings - Fork 1
/
client.js
274 lines (222 loc) · 9.56 KB
/
client.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
var templateId = '000000000000000000000000';
var templateCache = {};
// merge linked templates
function mergeTemplates (templates, callback) {
var self = this;
for (var i = 0, l = templates.length, template; i < l; ++i) {
for (var link in templates[i].linked) {
template = templates[i].linked[link].link;
if (templateCache[template]) {
// hide link field
templates[i].schema[link].hidden = true;
templates[i].schema[link].noSearch = true;
// compute the field policies which defaults to:
// - overwrite fields (only the specified)
// - merge field (merge field propertis)
var mergeFields = templates[i].schema[link].mergeFields = templates[i].schema[link].mergeFields || false;
var overwriteField = templates[i].schema[link].overwriteField = templates[i].schema[link].overwriteField || false;
// TODO Since fields containing dots cannot be stored in mongo, we save them with comma instead.
// Here we change back from comma to dot.
if (templates[i].schema[link].fields) {
for (var linkedField in templates[i].schema[link].fields) {
if (linkedField.indexOf(',') > -1) {
templates[i].schema[link].fields[linkedField.replace(/,/g, '.')] = templates[i].schema[link].fields[linkedField];
delete templates[i].schema[link].fields[linkedField];
}
}
}
// MERGE fields
if (mergeFields) {
// copy linked schema
for (var field in templateCache[template].schema) {
if (field[0] !== '_') {
// we have to clone this because otherwise we change the original template
templates[i].schema[link + '.' + field] = JSON.parse(JSON.stringify(templateCache[template].schema[field]));
}
}
if (templates[i].schema[link].fields) {
for (var linkedField in templates[i].schema[link].fields) {
// OVERWRITE field
if (overwriteField) {
templates[i].schema[link + '.' + linkedField] = templates[i].schema[link].fields[linkedField];
}
// MERGE field
else {
for (var option in templates[i].schema[link].fields[linkedField]) {
templates[i].schema[link + '.' + linkedField][option] = templates[i].schema[link].fields[linkedField][option];
}
}
}
}
}
// OVERWRITE fields
else {
if (templates[i].schema[link].fields) {
// OVERWRITE field
if (overwriteField) {
for (var linkedField in templates[i].schema[link].fields) {
// do not accept fields that do not exist in the original linked schema
if (!templateCache[template].schema[linkedField]) {
continue;
}
// just copy the original field schema
templates[i].schema[link + '.' + linkedField] = templateCache[template].schema[field];
}
}
// MERGE field
else {
for (var linkedField in templates[i].schema[link].fields) {
// do not accept fields that do not exist in the original linked schema
if (!templateCache[template].schema[linkedField]) {
continue;
}
// get the original schema only for the wanted fields
// we have to clone this because otherwise we change the original template
templates[i].schema[link + '.' + linkedField] = JSON.parse(JSON.stringify(templateCache[template].schema[linkedField]))
// merge/extend the field with the link schema options
for (var option in templates[i].schema[link].fields[linkedField]) {
templates[i].schema[link + '.' + linkedField][option] = templates[i].schema[link].fields[linkedField][option];
}
}
}
}
}
} else {
return callback(new Error(self.miid + '|crud: Template ' + template + ' not in cache.'));
}
}
}
callback(null, templates);
}
function templateHandler (templates, callback, ignoreLinks) {
var self = this;
// check callback
if (typeof callback !== 'function') {
return;
}
// collect templates from linked schema fields
var linkedTemplates = [];
for (var i = 0, l = templates.length, _id; i < l; ++i) {
_id = templates[i]._id;
if (!templateCache[_id]) {
// save template in cache
templateCache[_id] = templates[i];
}
if (!ignoreLinks) {
templates[i].linked = {};
for (var field in templates[i].schema) {
// collect linked templates
if (templates[i].schema[field].link) {
templates[i].linked[field] = templates[i].schema[field];
linkedTemplates.push(templates[i].schema[field].link);
}
}
}
}
// fetch linked templates
if (linkedTemplates.length > 0) {
fetchTemplates.call(self, linkedTemplates, function (err) {
if (err) {
return callback(err);
}
mergeTemplates(templates, callback);
// ignore fetching linked templates on linked templates (only 1 level)
}, true);
} else {
callback(null, templates);
}
}
// TODO callback buffering
function fetchTemplates (data, callback, ignoreLinks) {
var self = this;
if (!data) {
return callback(new Error(self.miid + '|crud: Crud object is needed to fetch tempaltes'));
}
if (data instanceof Array) {
data = {
t: templateId,
q: {
_id: {
$in: data
}
}
};
}
// handle cached templates
if (data.q && data.q._id && data.q._id.$in) {
var cached = [];
var query = [];
for (var i = 0, l = data.q._id.$in.length; i < l; ++i) {
if (templateCache[data.q._id.$in[i]]) {
cached[i] = templateCache[data.q._id.$in[i]];
} else {
cached[i] = data.q._id.$in[i];
query.push(data.q._id.$in[i]);
}
}
if (query.length === 0) {
return templateHandler.call(self, cached, callback, ignoreLinks);
} else {
data.q._id.$in = query;
}
}
self.link('read', {data: data}, function (err, templates) {
if (err || data.noMerge) {
return callback(err, templates);
}
// add fetched templates to cached
if (data.q && data.q._id && data.q._id.$in) {
for (var i = 0, l = templates.length; i < l; ++i) {
for (var ii = 0, ll = cached.length; ii < ll; ++ii) {
if (typeof cached[ii] === 'string' && cached[ii] === templates[i]._id) {
cached[ii] = templates[i];
}
}
}
templates = cached;
}
templateHandler.call(self, templates, callback, ignoreLinks);
});
}
function setTemplateHandler (template, noRefresh) {
var self = this;
// save current template
self.template = templates[0];
if (!noRefresh) {
self.emit('refresh');
}
self.emit('templateSet', self.template);
}
function setTemplate (template, noRefresh) {
var self = this;
// check cache
if (templateCache[template]) {
return setTemplateHandler.call(self, [templateCache[template]], noRefresh);
}
// fetch template
self.emit('read', [template], function (err, templates) {
if (err || !templates || !templates[0]) {
return self.emit('crudError', err || new Error(self.miid + '|crud: Template not found.'));
}
setTemplateHandler.call(self, templates, noRefresh);
});
}
function handler (method, data, callback) {
var self = this;
// check query data
if (!data) {
return self.emit('crudError', new Error(self.miid + '|crud: No data for query.'));
}
// check if a template id is available
if (!data.t && (!self.template || !self.template._id)) {
return callback(new Error(self.miid + '|crud: No template id for query.'));
}
// get template id for request
data.t = data.t || self.template._id;
// do request
self.link(method, {data: data}, callback);
}
exports.handler = handler;
exports.fetchTemplates = fetchTemplates;
exports.setTemplate = setTemplate;
exports.templateId = templateId;