Files
misskey/src/api/endpoints/i/2fa/unregister.ts
syuilo d0cfe112e1 #973
2017-12-10 02:45:32 +09:00

29 lines
613 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().$;
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: {
two_factor_secret: null,
two_factor_enabled: false
}
});
res();
});