'use strict'; var async = require('async'), winston = require('winston'), _ = require('underscore'), db = require('../database'), posts = require('../posts'), topics = require('../topics'); module.exports = function(Categories) { Categories.getRecentReplies = function(cid, uid, count, callback) { if (!parseInt(count, 10)) { return callback(null, []); } db.getSortedSetRevRange('categories:recent_posts:cid:' + cid, 0, count - 1, function(err, pids) { if (err || !pids || !pids.length) { return callback(err, []); } posts.getPostSummaryByPids(pids, uid, {stripTags: true}, callback); }); }; Categories.getRecentTopicReplies = function(categoryData, uid, callback) { async.map(categoryData, getRecentTopicPids, function(err, results) { var pids = _.flatten(results); pids = pids.filter(function(pid, index, array) { return !!pid && array.indexOf(pid) === index; }); posts.getPostSummaryByPids(pids, uid, {stripTags: true}, function(err, posts) { if (err) { return callback(err); } async.each(categoryData, function(category, next) { assignPostsToCategory(category, posts, next); }, callback); }); }); }; function assignPostsToCategory(category, posts, next) { category.posts = posts.filter(function(post) { return parseInt(post.category.cid, 10) === parseInt(category.cid, 10); }).sort(function(a, b) { return b.timestamp - a.timestamp; }).slice(0, parseInt(category.numRecentReplies, 10)); next(); } function getRecentTopicPids(category, callback) { var count = parseInt(category.numRecentReplies, 10); if (!count) { return callback(null, []); } db.getSortedSetRevRange('categories:recent_posts:cid:' + category.cid, 0, 0, function(err, pids) { if (err || !Array.isArray(pids) || !pids.length) { return callback(err, []); } if (count === 1) { return callback(null, pids); } async.parallel({ pinnedTids: function(next) { db.getSortedSetRevRangeByScore('categories:' + category.cid + ':tid', 0, -1, Infinity, Date.now(), next); }, tids: function(next) { db.getSortedSetRevRangeByScore('categories:' + category.cid + ':tid', 0, Math.max(0, count), Date.now(), 0, next); } }, function(err, results) { if (err) { return callback(err); } results.tids = results.tids.concat(results.pinnedTids); async.map(results.tids, topics.getLatestUndeletedPid, function(err, topicPids) { if (err) { return callback(err); } pids = pids.concat(topicPids).filter(function(pid, index, array) { return !!pid && array.indexOf(pid) === index; }); callback(null, pids); }); }); }); } Categories.moveRecentReplies = function(tid, oldCid, cid) { function movePost(postData, next) { async.parallel([ function(next) { db.sortedSetRemove('categories:recent_posts:cid:' + oldCid, postData.pid, next); }, function(next) { db.sortedSetAdd('categories:recent_posts:cid:' + cid, postData.timestamp, postData.pid, next); } ], next); } updatePostCount(tid, oldCid, cid); topics.getPids(tid, function(err, pids) { if (err) { return winston.error(err.message); } if (pids && !pids.length) { return; } var keys = pids.map(function(pid) { return 'post:' + pid; }); db.getObjectsFields(keys, ['pid', 'timestamp'], function(err, postData) { if (err) { return winston.error(err.message); } async.each(postData, movePost, function(err) { if (err) { winston.error(err.message); } }); }); }); }; function updatePostCount(tid, oldCid, newCid) { topics.getTopicField(tid, 'postcount', function(err, postCount) { if (err) { return winston.error(err.message); } async.parallel([ function(next) { db.incrObjectFieldBy('category:' + oldCid, 'post_count', -postCount, next); }, function(next) { db.incrObjectFieldBy('category:' + newCid, 'post_count', postCount, next); } ], function(err) { if (err) { winston.error(err.message); } }); }); } };