2017-12-09 18:45:32 +01: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-12-09 18:45:32 +01:00
|
|
|
|
|
|
|
module.exports = async (params, user) => new Promise(async (res, rej) => {
|
|
|
|
// Get 'password' parameter
|
|
|
|
const [password, passwordErr] = $(params.password).string().$;
|
|
|
|
if (passwordErr) return rej('invalid password param');
|
|
|
|
|
|
|
|
// Compare password
|
2018-04-07 20:58:11 +02:00
|
|
|
const same = await bcrypt.compare(password, user.password);
|
2017-12-09 18:45:32 +01:00
|
|
|
|
|
|
|
if (!same) {
|
|
|
|
return rej('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-04-07 20:58:11 +02:00
|
|
|
'twoFactorSecret': null,
|
|
|
|
'twoFactorEnabled': false
|
2017-12-09 18:45:32 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
res();
|
|
|
|
});
|