mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-17 06:37:23 +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
33 lines
720 B
JavaScript
33 lines
720 B
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 allocate (user, req = {}) {
|
|
let stat = get(req, 'query.stat', 'str');
|
|
|
|
if (ATTRIBUTES.indexOf(stat) === -1) {
|
|
throw new BadRequest(apiMessages('invalidAttribute', {attr: stat}));
|
|
}
|
|
|
|
if (user.stats.points > 0) {
|
|
user.stats[stat]++;
|
|
user.stats.points--;
|
|
if (stat === 'int') {
|
|
user.stats.mp++;
|
|
}
|
|
} else {
|
|
throw new NotAuthorized(i18n.t('notEnoughAttrPoints', req.language));
|
|
}
|
|
|
|
return [
|
|
user.stats,
|
|
];
|
|
};
|