-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpublish_cache_server.js
51 lines (40 loc) · 1.11 KB
/
publish_cache_server.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
var isCursor = function (c) {
return c && c._publishCursor;
};
Meteor.publishCache = function (name, func, options) {
var methodName = '/cache/' + name;
var methods = {};
methods[methodName] = function () {
if (options && options.unblock)
this.unblock();
try {
var returnCursors = func.apply(this, arguments);
var results = {};
var returnCursors = _.isArray(returnCursors) ? returnCursors : [returnCursors];
if (_.isEmpty(returnCursors))
return;
returnCursors.forEach(function (cursor) {
if (! isCursor(cursor)) {
if (! _.isObject(cursor)) {
Meteor._debug('Return ');
return;
}
_.extend(results, cursor);
return;
}
if (_.isEmpty(cursor)) {
Meteor._debug('Cursor is empty.');
return;
}
var collection = cursor._cursorDescription.collectionName;
cursor.rewind();
var docs = cursor.fetch();
results[collection] = docs;
});
return results;
} catch (e) {
throw e;
}
};
Meteor.methods(methods);
};