mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 14:47:53 +01:00
* move translatable string to apiMessages * use apiMessages instead of res.t for groupIdRequired / keepOrRemove * move pageMustBeNumber to apiMessages * change apimessages * move missingKeyParam to apiMessages * move more strings to apiMessages * fix lint * revert lodash imports to fix tests * fix webhook test * fix test * rollback key change of `keepOrRemove` * remove unneeded `req.language` param * extract more messages from i18n * add missing `missingTypeParam` message
46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
import get from 'lodash/get';
|
|
import {
|
|
ATTRIBUTES,
|
|
} from '../../constants';
|
|
import {
|
|
BadRequest,
|
|
NotAuthorized,
|
|
} from '../../libs/errors';
|
|
import i18n from '../../i18n';
|
|
import apiMessages from '../../../../server/libs/apiMessages';
|
|
|
|
module.exports = function allocateBulk (user, req = {}) {
|
|
const stats = get(req, 'body.stats');
|
|
if (!stats) throw new BadRequest(apiMessages('statsObjectRequired'));
|
|
|
|
const statKeys = Object.keys(stats);
|
|
const invalidStats = statKeys.filter(statKey => {
|
|
return ATTRIBUTES.indexOf(statKey) === -1;
|
|
});
|
|
if (invalidStats.length > 0) {
|
|
throw new BadRequest(apiMessages('invalidAttribute', {attr: invalidStats.join(',')}));
|
|
}
|
|
|
|
if (user.stats.points <= 0) {
|
|
throw new NotAuthorized(i18n.t('notEnoughAttrPoints', req.language));
|
|
}
|
|
|
|
const newStatValues = Object.values(stats);
|
|
const totalPointsToAllocate = newStatValues.reduce((sum, value) => {
|
|
return sum + value;
|
|
}, 0);
|
|
if (user.stats.points < totalPointsToAllocate) {
|
|
throw new NotAuthorized(i18n.t('notEnoughAttrPoints', req.language));
|
|
}
|
|
|
|
for (let [stat, value] of Object.entries(stats)) {
|
|
user.stats[stat] += value;
|
|
user.stats.points -= value;
|
|
if (stat === 'int') user.stats.mp += value;
|
|
}
|
|
|
|
return [
|
|
user.stats,
|
|
];
|
|
};
|