2017-12-08 13:57:58 +00:00
|
|
|
/**
|
|
|
|
* Module dependencies
|
|
|
|
*/
|
|
|
|
import $ from 'cafy';
|
|
|
|
import * as bcrypt from 'bcryptjs';
|
|
|
|
import * as speakeasy from 'speakeasy';
|
|
|
|
import * as QRCode from 'qrcode';
|
2018-03-29 11:32:18 +00:00
|
|
|
import User from '../../../../../models/user';
|
2018-03-28 16:20:40 +00:00
|
|
|
import config from '../../../../../conf';
|
2017-12-08 13:57:58 +00: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-03-25 15:19:07 +00:00
|
|
|
const same = await bcrypt.compare(password, user.account.password);
|
2017-12-08 13:57:58 +00:00
|
|
|
|
|
|
|
if (!same) {
|
|
|
|
return rej('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate user's secret key
|
|
|
|
const secret = speakeasy.generateSecret({
|
|
|
|
length: 32
|
|
|
|
});
|
|
|
|
|
|
|
|
await User.update(user._id, {
|
|
|
|
$set: {
|
2018-03-29 05:48:47 +00:00
|
|
|
twoFactorTempSecret: secret.base32
|
2017-12-08 13:57:58 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
// Get the data URL of the authenticator URL
|
|
|
|
QRCode.toDataURL(speakeasy.otpauthURL({
|
|
|
|
secret: secret.base32,
|
|
|
|
encoding: 'base32',
|
|
|
|
label: user.username,
|
|
|
|
issuer: config.host
|
|
|
|
}), (err, data_url) => {
|
|
|
|
res({
|
|
|
|
qr: data_url,
|
|
|
|
secret: secret.base32,
|
|
|
|
label: user.username,
|
|
|
|
issuer: config.host
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|