2017-08-28 17:20:47 +02:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
2018-03-29 13:32:18 +02:00
|
|
|
import User from '../../../../models/user';
|
2017-08-28 17:20:47 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Change password
|
|
|
|
*
|
|
|
|
* @param {any} params
|
|
|
|
* @param {any} user
|
|
|
|
* @return {Promise<any>}
|
|
|
|
*/
|
|
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'currentPasword' parameter
|
|
|
|
const [currentPassword, currentPasswordErr] = $(params.currentPasword).string().$;
|
|
|
|
if (currentPasswordErr) return rej('invalid currentPasword param');
|
2017-08-28 17:20:47 +02:00
|
|
|
|
2018-03-29 07:48:47 +02:00
|
|
|
// Get 'newPassword' parameter
|
|
|
|
const [newPassword, newPasswordErr] = $(params.newPassword).string().$;
|
|
|
|
if (newPasswordErr) return rej('invalid newPassword param');
|
2017-08-28 17:20:47 +02:00
|
|
|
|
|
|
|
// Compare password
|
2018-03-25 17:19:07 +02:00
|
|
|
const same = await bcrypt.compare(currentPassword, user.account.password);
|
2017-08-28 17:20:47 +02:00
|
|
|
|
|
|
|
if (!same) {
|
|
|
|
return rej('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate hash of password
|
2017-11-08 06:58:48 +01:00
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(newPassword, salt);
|
2017-08-28 17:20:47 +02:00
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-03-25 17:19:07 +02:00
|
|
|
'account.password': hash
|
2017-08-28 17:20:47 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|