mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-15 21:57:22 +01:00
38 lines
865 B
JavaScript
38 lines
865 B
JavaScript
import get from 'lodash/get';
|
|
import {
|
|
ATTRIBUTES,
|
|
} from '../../constants';
|
|
import {
|
|
BadRequest,
|
|
NotAuthorized,
|
|
} from '../../libs/errors';
|
|
import i18n from '../../i18n';
|
|
import errorMessage from '../../libs/errorMessage';
|
|
import hasClass from '../../libs/hasClass';
|
|
|
|
export default function allocate (user, req = {}) {
|
|
const stat = get(req, 'query.stat', 'str');
|
|
|
|
if (ATTRIBUTES.indexOf(stat) === -1) {
|
|
throw new BadRequest(errorMessage('invalidAttribute', { attr: stat }));
|
|
}
|
|
|
|
if (!hasClass(user)) {
|
|
throw new NotAuthorized(i18n.t('classNotSelected', req.language));
|
|
}
|
|
|
|
if (user.stats.points > 0) {
|
|
user.stats[stat] += 1;
|
|
user.stats.points -= 1;
|
|
if (stat === 'int') {
|
|
user.stats.mp += 1;
|
|
}
|
|
} else {
|
|
throw new NotAuthorized(i18n.t('notEnoughAttrPoints', req.language));
|
|
}
|
|
|
|
return [
|
|
user.stats,
|
|
];
|
|
}
|