var async = require('async'), winston = require('winston'), db = require('./database'), posts = require('./posts'), user = require('./user'), plugins = require('./plugins'), meta = require('./meta'); (function (Favourites) { "use strict"; function vote(type, unvote, pid, uid, callback) { uid = parseInt(uid, 10); if (uid === 0) { return callback(new Error('[[error:not-logged-in]]')); } posts.getPostFields(pid, ['pid', 'uid', 'timestamp'], function (err, postData) { if (err) { return callback(err); } if (uid === parseInt(postData.uid, 10)) { return callback(new Error('[[error:cant-vote-self-post]]')); } if(type === 'upvote' && !unvote) { db.sortedSetAdd('uid:' + uid + ':upvote', postData.timestamp, pid); } else { db.sortedSetRemove('uid:' + uid + ':upvote', pid); } if(type === 'upvote' || unvote) { db.sortedSetRemove('uid:' + uid + ':downvote', pid); } else { db.sortedSetAdd('uid:' + uid + ':downvote', postData.timestamp, pid); } user[type === 'upvote' ? 'incrementUserFieldBy' : 'decrementUserFieldBy'](postData.uid, 'reputation', 1, function (err, newreputation) { if (err) { return callback(err); } db.sortedSetAdd('users:reputation', newreputation, postData.uid); if (type === 'downvote') { banUserForLowReputation(postData.uid, newreputation); } adjustPostVotes(pid, uid, type, unvote, function(err, votes) { postData.votes = votes; callback(err, { user: { reputation: newreputation }, post: postData, upvote: type === 'upvote' && !unvote, downvote: type === 'downvote' && !unvote }); }); }); }); } function banUserForLowReputation(uid, newreputation) { if (parseInt(meta.config['autoban:downvote'], 10) === 1 && newreputation < parseInt(meta.config['autoban:downvote:threshold'], 10)) { user.getUserField(uid, 'banned', function(err, banned) { if (err || parseInt(banned, 10) === 1) { return; } var adminUser = require('./socket.io/admin/user'); adminUser.banUser(uid, function(err) { if (err) { return winston.error(err.message); } winston.info('uid ' + uid + ' was banned for reaching ' + newreputation + ' reputation'); }); }); } } function adjustPostVotes(pid, uid, type, unvote, callback) { var notType = (type === 'upvote' ? 'downvote' : 'upvote'); async.series([ function(next) { if (unvote) { db.setRemove('pid:' + pid + ':' + type, uid, next); } else { db.setAdd('pid:' + pid + ':' + type, uid, next); } }, function(next) { db.setRemove('pid:' + pid + ':' + notType, uid, next); } ], function(err) { if (err) { return callback(err); } async.parallel({ upvotes: function(next) { db.setCount('pid:' + pid + ':upvote', next); }, downvotes: function(next) { db.setCount('pid:' + pid + ':downvote', next); } }, function(err, results) { if (err) { return callback(err); } var voteCount = parseInt(results.upvotes, 10) - parseInt(results.downvotes, 10); posts.updatePostVoteCount(pid, voteCount, function(err) { callback(err, voteCount); }); }); }); } Favourites.upvote = function(pid, uid, callback) { if (parseInt(meta.config['reputation:disabled'], 10) === 1) { return callback(new Error('[[error:reputation-system-disabled]]')); } toggleVote('upvote', pid, uid, function(err, votes) { if (err) { return callback(err); } plugins.fireHook('action:post.upvote', { pid: pid, uid: uid }); callback(null, votes); }); }; Favourites.downvote = function(pid, uid, callback) { if (parseInt(meta.config['reputation:disabled'], 10) === 1) { return callback(new Error('[[error:reputation-system-disabled]]')); } if (parseInt(meta.config['downvote:disabled'], 10) === 1) { return callback(new Error('[[error:downvoting-disabled]]')); } user.getUserField(uid, 'reputation', function(err, reputation) { if (err) { return callback(err); } if (reputation < parseInt(meta.config['privileges:downvote'], 10)) { return callback(new Error('[[error:not-enough-reputation-to-downvote]]')); } toggleVote('downvote', pid, uid, function(err, votes) { if (err) { return callback(err); } plugins.fireHook('action:post.downvote', { pid: pid, uid: uid }); callback(null, votes); }); }); }; function toggleVote(type, pid, uid, callback) { Favourites.unvote(pid, uid, function(err) { if (err) { return callback(err); } vote(type, false, pid, uid, callback); }); } Favourites.unvote = function(pid, uid, callback) { Favourites.hasVoted(pid, uid, function(err, voteStatus) { if (err) { return callback(err); } if (!voteStatus || (!voteStatus.upvoted && !voteStatus.downvoted)) { return callback(); } vote(voteStatus.upvoted ? 'downvote' : 'upvote', true, pid, uid, callback); }); }; Favourites.hasVoted = function(pid, uid, callback) { db.isMemberOfSets(['pid:' + pid + ':upvote', 'pid:' + pid + ':downvote'], uid, function(err, hasVoted) { if (err) { return callback(err); } callback (null, {upvoted: hasVoted[0], downvoted: hasVoted[1]}); }); }; Favourites.getVoteStatusByPostIDs = function(pids, uid, callback) { var upvoteSets = [], downvoteSets = []; for (var i=0; i