49 lines
1.1 KiB
TypeScript
49 lines
1.1 KiB
TypeScript
|
/**
|
||
|
* Module dependencies
|
||
|
*/
|
||
|
import $ from 'cafy';
|
||
|
import * as bcrypt from 'bcryptjs';
|
||
|
import * as speakeasy from 'speakeasy';
|
||
|
import * as QRCode from 'qrcode';
|
||
|
import User from '../../../models/user';
|
||
|
import config from '../../../../conf';
|
||
|
|
||
|
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');
|
||
|
}
|
||
|
|
||
|
// Generate user's secret key
|
||
|
const secret = speakeasy.generateSecret({
|
||
|
length: 32
|
||
|
});
|
||
|
|
||
|
await User.update(user._id, {
|
||
|
$set: {
|
||
|
two_factor_temp_secret: secret.base32
|
||
|
}
|
||
|
});
|
||
|
|
||
|
// 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
|
||
|
});
|
||
|
});
|
||
|
});
|