2017-12-08 15:57:58 +02:00
|
|
|
import * as speakeasy from 'speakeasy';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 23:33:11 +03:00
|
|
|
import type { UserProfilesRepository } from '@/models/index.js';
|
2022-09-17 21:27:08 +03:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2017-12-08 15:57:58 +02:00
|
|
|
|
2018-07-16 22:36:44 +03:00
|
|
|
export const meta = {
|
2022-01-18 15:27:10 +02:00
|
|
|
requireCredential: true,
|
2018-11-02 05:49:08 +02:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-19 07:05:32 +02:00
|
|
|
} as const;
|
2018-11-02 05:49:08 +02:00
|
|
|
|
2022-02-20 06:15:40 +02:00
|
|
|
export const paramDef = {
|
2022-02-19 07:05:32 +02:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
token: { type: 'string' },
|
2021-12-09 16:58:30 +02:00
|
|
|
},
|
2022-02-19 07:05:32 +02:00
|
|
|
required: ['token'],
|
2022-01-18 15:27:10 +02:00
|
|
|
} as const;
|
2018-07-16 22:36:44 +03:00
|
|
|
|
2022-01-02 19:12:50 +02:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-17 21:27:08 +03:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
const token = ps.token.replace(/\s/g, '');
|
|
|
|
|
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: me.id });
|
|
|
|
|
|
|
|
if (profile.twoFactorTempSecret == null) {
|
|
|
|
throw new Error('二段階認証の設定が開始されていません');
|
|
|
|
}
|
|
|
|
|
|
|
|
const verified = (speakeasy as any).totp.verify({
|
|
|
|
secret: profile.twoFactorTempSecret,
|
|
|
|
encoding: 'base32',
|
|
|
|
token: token,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!verified) {
|
|
|
|
throw new Error('not verified');
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.userProfilesRepository.update(me.id, {
|
|
|
|
twoFactorSecret: profile.twoFactorTempSecret,
|
|
|
|
twoFactorEnabled: true,
|
|
|
|
});
|
|
|
|
});
|
2017-12-08 15:57:58 +02:00
|
|
|
}
|
2022-09-17 21:27:08 +03:00
|
|
|
}
|