2017-12-08 15:57:58 +02:00
|
|
|
import $ from 'cafy';
|
|
|
|
import * as speakeasy from 'speakeasy';
|
2018-11-02 06:47:44 +02:00
|
|
|
import define from '../../../define';
|
2019-04-10 09:04:27 +03:00
|
|
|
import { UserProfiles } from '../../../../../models';
|
2017-12-08 15:57:58 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
|
|
|
requireCredential: true,
|
2018-11-02 05:49:08 +02:00
|
|
|
|
|
|
|
secure: true,
|
|
|
|
|
|
|
|
params: {
|
|
|
|
token: {
|
|
|
|
validator: $.str
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 22:36:44 +03:00
|
|
|
};
|
|
|
|
|
2019-02-22 04:46:58 +02:00
|
|
|
export default define(meta, async (ps, user) => {
|
2019-04-10 09:04:27 +03:00
|
|
|
const token = ps.token.replace(/\s/g, '');
|
2017-12-08 15:57:58 +02:00
|
|
|
|
2019-04-10 09:04:27 +03:00
|
|
|
const profile = await UserProfiles.findOne({ userId: user.id });
|
|
|
|
|
|
|
|
if (profile.twoFactorTempSecret == null) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('二段階認証の設定が開始されていません');
|
2017-12-08 15:57:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const verified = (speakeasy as any).totp.verify({
|
2019-04-10 09:04:27 +03:00
|
|
|
secret: profile.twoFactorTempSecret,
|
2017-12-08 15:57:58 +02:00
|
|
|
encoding: 'base32',
|
2019-04-10 09:04:27 +03:00
|
|
|
token: token
|
2017-12-08 15:57:58 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
if (!verified) {
|
2019-02-22 04:46:58 +02:00
|
|
|
throw new Error('not verified');
|
2017-12-08 15:57:58 +02:00
|
|
|
}
|
|
|
|
|
2019-04-10 09:04:27 +03:00
|
|
|
await UserProfiles.update({ userId: user.id }, {
|
|
|
|
twoFactorSecret: profile.twoFactorTempSecret,
|
2019-04-07 15:50:36 +03:00
|
|
|
twoFactorEnabled: true
|
2017-12-08 15:57:58 +02:00
|
|
|
});
|
2019-02-22 04:46:58 +02:00
|
|
|
});
|