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