mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
86 lines
1.7 KiB
JavaScript
86 lines
1.7 KiB
JavaScript
const bcrypt = require('bcrypt');
|
|
|
|
const Errors = {
|
|
USER_NOT_FOUND: {
|
|
userNotFound: 'User not found',
|
|
},
|
|
INVALID_CURRENT_PASSWORD: {
|
|
invalidCurrentPassword: 'Invalid current password',
|
|
},
|
|
};
|
|
|
|
module.exports = {
|
|
inputs: {
|
|
id: {
|
|
type: 'string',
|
|
regex: /^[0-9]+$/,
|
|
required: true,
|
|
},
|
|
password: {
|
|
type: 'string',
|
|
minLength: 6,
|
|
regex: /^(?=.*[A-Za-z])(?=.*\d).+$/,
|
|
required: true,
|
|
},
|
|
currentPassword: {
|
|
type: 'string',
|
|
isNotEmptyString: true,
|
|
},
|
|
},
|
|
|
|
exits: {
|
|
userNotFound: {
|
|
responseType: 'notFound',
|
|
},
|
|
invalidCurrentPassword: {
|
|
responseType: 'forbidden',
|
|
},
|
|
},
|
|
|
|
async fn(inputs) {
|
|
const { currentUser } = this.req;
|
|
|
|
if (inputs.id === currentUser.id) {
|
|
if (!inputs.currentPassword) {
|
|
throw Errors.INVALID_CURRENT_PASSWORD;
|
|
}
|
|
} else if (!currentUser.isAdmin) {
|
|
throw Errors.USER_NOT_FOUND; // Forbidden
|
|
}
|
|
|
|
let user = await sails.helpers.users.getOne(inputs.id);
|
|
|
|
if (!user) {
|
|
throw Errors.USER_NOT_FOUND;
|
|
}
|
|
|
|
if (
|
|
inputs.id === currentUser.id &&
|
|
!bcrypt.compareSync(inputs.currentPassword, user.password)
|
|
) {
|
|
throw Errors.INVALID_CURRENT_PASSWORD;
|
|
}
|
|
|
|
const values = _.pick(inputs, ['password']);
|
|
user = await sails.helpers.users.updateOne(user, values, currentUser, this.req);
|
|
|
|
if (!user) {
|
|
throw Errors.USER_NOT_FOUND;
|
|
}
|
|
|
|
if (user.id === currentUser.id) {
|
|
const accessToken = sails.helpers.utils.createToken(user.id, user.passwordUpdatedAt);
|
|
|
|
return {
|
|
item: user,
|
|
included: {
|
|
accessTokens: [accessToken],
|
|
},
|
|
};
|
|
}
|
|
|
|
return {
|
|
item: user,
|
|
};
|
|
},
|
|
};
|