feat: allow multiple cids for getActiveUsers

This commit is contained in:
Barış Soner Uşaklı
2019-03-25 12:06:32 -04:00
parent b6440eed7a
commit 81306fff3c

View File

@@ -7,10 +7,13 @@ var posts = require('../posts');
var db = require('../database');
module.exports = function (Categories) {
Categories.getActiveUsers = function (cid, callback) {
Categories.getActiveUsers = function (cids, callback) {
if (!Array.isArray(cids)) {
cids = [cids];
}
async.waterfall([
function (next) {
db.getSortedSetRevRange('cid:' + cid + ':pids', 0, 24, next);
db.getSortedSetRevRange(cids.map(cid => 'cid:' + cid + ':pids'), 0, 24, next);
},
function (pids, next) {
posts.getPostsFields(pids, ['uid'], next);