mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 17:03:09 +02:00
42 lines
1 KiB
TypeScript
42 lines
1 KiB
TypeScript
/**
|
|
* Module dependencies
|
|
*/
|
|
import $ from 'cafy';
|
|
import * as bcrypt from 'bcryptjs';
|
|
import User from '../../../../models/user';
|
|
|
|
/**
|
|
* Change password
|
|
*
|
|
* @param {any} params
|
|
* @param {any} user
|
|
* @return {Promise<any>}
|
|
*/
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
|
// Get 'currentPasword' parameter
|
|
const [currentPassword, currentPasswordErr] = $(params.currentPasword).string().$;
|
|
if (currentPasswordErr) return rej('invalid currentPasword param');
|
|
|
|
// Get 'newPassword' parameter
|
|
const [newPassword, newPasswordErr] = $(params.newPassword).string().$;
|
|
if (newPasswordErr) return rej('invalid newPassword param');
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(currentPassword, user.account.password);
|
|
|
|
if (!same) {
|
|
return rej('incorrect password');
|
|
}
|
|
|
|
// Generate hash of password
|
|
const salt = await bcrypt.genSalt(8);
|
|
const hash = await bcrypt.hash(newPassword, salt);
|
|
|
|
await User.update(user._id, {
|
|
$set: {
|
|
'account.password': hash
|
|
}
|
|
});
|
|
|
|
res();
|
|
});
|