monkeeShark/src/server/api/endpoints/i/2fa/unregister.ts
2018-04-27 19:12:15 +09:00

28 lines
623 B
TypeScript

/**
* Module dependencies
*/
import $ from 'cafy';
import * as bcrypt from 'bcryptjs';
import User from '../../../../../models/user';
module.exports = async (params, user) => new Promise(async (res, rej) => {
// Get 'password' parameter
const [password, passwordErr] = $(params.password).string().get();
if (passwordErr) return rej('invalid password param');
// Compare password
const same = await bcrypt.compare(password, user.password);
if (!same) {
return rej('incorrect password');
}
await User.update(user._id, {
$set: {
'twoFactorSecret': null,
'twoFactorEnabled': false
}
});
res();
});