var RDB = require('./redis.js'), posts = require('./posts.js'), utils = require('./utils.js'), user = require('./user.js'); (function(Topics) { Topics.get_by_category = function(callback, category, start, end) { } Topics.get = function(callback, category_id, start, end) { if (start == null) start = 0; if (end == null) end = start + 10; //build a proper wrapper for this and move it into above function later var range_var = (category_id) ? 'categories:' + category_id + ':tid' : 'topics:tid'; RDB.lrange(range_var, start, end, function(tids) { var title = [], uid = [], timestamp = [], slug = [], postcount = []; for (var i=0, ii=tids.length; i 0) { RDB.multi() .mget(title) .mget(uid) .mget(timestamp) .mget(slug) .mget(postcount) .exec(function(err, replies) { title = replies[0]; uid = replies[1]; timestamp = replies[2]; slug = replies[3]; postcount = replies[4]; user.get_usernames_by_uids(uid, function(userNames) { var topics = []; for (var i=0, ii=title.length; i 0) RDB.lpush('tid:' + tid + ':posts', pid); }); // User Details - move this out later RDB.lpush('uid:' + uid + ':topics', tid); socket.emit('event:alert', { title: 'Thank you for posting', message: 'You have successfully posted. Click here to view your post.', type: 'notify', timeout: 2000 }); }); }; }(exports));