You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

124 lines
2.9 KiB
JavaScript

8 years ago
'use strict';
var async = require('async');
8 years ago
var db = require('../database');
var plugins = require('../plugins');
var rewards = module.exports;
rewards.checkConditionAndRewardUser = function (uid, condition, method, callback) {
8 years ago
callback = callback || function () {};
async.waterfall([
function (next) {
8 years ago
isConditionActive(condition, next);
},
8 years ago
function (isActive, next) {
if (!isActive) {
return callback();
}
getIDsByCondition(condition, next);
},
function (ids, next) {
getRewardDataByIDs(ids, next);
},
function (rewards, next) {
8 years ago
filterCompletedRewards(uid, rewards, next);
},
function (rewards, next) {
8 years ago
if (!rewards || !rewards.length) {
return callback();
}
async.filter(rewards, function (reward, next) {
10 years ago
if (!reward) {
8 years ago
return next(null, false);
10 years ago
}
8 years ago
checkCondition(reward, method, next);
8 years ago
}, function (err, eligible) {
if (err || !eligible) {
10 years ago
return next(false);
}
giveRewards(uid, eligible, next);
});
},
8 years ago
], callback);
};
function isConditionActive(condition, callback) {
db.isSetMember('conditions:active', condition, callback);
}
function getIDsByCondition(condition, callback) {
10 years ago
db.getSetMembers('condition:' + condition + ':rewards', callback);
}
function filterCompletedRewards(uid, rewards, callback) {
8 years ago
async.waterfall([
function (next) {
db.getSortedSetRangeByScoreWithScores('uid:' + uid + ':rewards', 0, -1, 1, '+inf', next);
},
function (data, next) {
var userRewards = {};
8 years ago
data.forEach(function (obj) {
userRewards[obj.value] = parseInt(obj.score, 10);
});
8 years ago
rewards = rewards.filter(function (reward) {
if (!reward) {
return false;
}
8 years ago
var claimable = parseInt(reward.claimable, 10);
return claimable === 0 || (!userRewards[reward.id] || userRewards[reward.id] < reward.claimable);
8 years ago
});
8 years ago
next(null, rewards);
},
], callback);
}
function getRewardDataByIDs(ids, callback) {
db.getObjects(ids.map(function (id) {
return 'rewards:id:' + id;
}), callback);
}
function getRewardsByRewardData(rewards, callback) {
db.getObjects(rewards.map(function (reward) {
return 'rewards:id:' + reward.id + ':rewards';
}), callback);
}
function checkCondition(reward, method, callback) {
8 years ago
async.waterfall([
function (next) {
method(next);
},
function (value, next) {
plugins.fireHook('filter:rewards.checkConditional:' + reward.conditional, { left: value, right: reward.value }, next);
},
function (bool, next) {
next(null, bool);
},
], callback);
}
function giveRewards(uid, rewards, callback) {
8 years ago
async.waterfall([
function (next) {
getRewardsByRewardData(rewards, next);
},
function (rewardData, next) {
async.each(rewards, function (reward, next) {
plugins.fireHook('action:rewards.award:' + reward.rid, { uid: uid, reward: rewardData[rewards.indexOf(reward)] });
db.sortedSetIncrBy('uid:' + uid + ':rewards', 1, reward.id, next);
}, next);
},
], callback);
}