87 lines
2.1 KiB
TypeScript
87 lines
2.1 KiB
TypeScript
/*
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
import bcrypt from 'bcryptjs';
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import type { UserProfilesRepository } from '@/models/index.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
import { WebAuthnService } from '@/core/WebAuthnService.js';
|
|
import { ApiError } from '@/server/api/error.js';
|
|
|
|
export const meta = {
|
|
requireCredential: true,
|
|
|
|
secure: true,
|
|
|
|
errors: {
|
|
userNotFound: {
|
|
message: 'User not found.',
|
|
code: 'USER_NOT_FOUND',
|
|
id: '652f899f-66d4-490e-993e-6606c8ec04c3',
|
|
},
|
|
|
|
incorrectPassword: {
|
|
message: 'Incorrect password.',
|
|
code: 'INCORRECT_PASSWORD',
|
|
id: '38769596-efe2-4faf-9bec-abbb3f2cd9ba',
|
|
},
|
|
|
|
twoFactorNotEnabled: {
|
|
message: '2fa not enabled.',
|
|
code: 'TWO_FACTOR_NOT_ENABLED',
|
|
id: 'bf32b864-449b-47b8-974e-f9a5468546f1',
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
password: { type: 'string' },
|
|
},
|
|
required: ['password'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.userProfilesRepository)
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
private webAuthnService: WebAuthnService,
|
|
) {
|
|
super(meta, paramDef, async (ps, me) => {
|
|
const profile = await this.userProfilesRepository.findOne({
|
|
where: {
|
|
userId: me.id,
|
|
},
|
|
relations: ['user'],
|
|
});
|
|
|
|
if (profile == null) {
|
|
throw new ApiError(meta.errors.userNotFound);
|
|
}
|
|
|
|
// Compare password
|
|
const same = await bcrypt.compare(ps.password, profile.password ?? '');
|
|
|
|
if (!same) {
|
|
throw new ApiError(meta.errors.incorrectPassword);
|
|
}
|
|
|
|
if (!profile.twoFactorEnabled) {
|
|
throw new ApiError(meta.errors.twoFactorNotEnabled);
|
|
}
|
|
|
|
return await this.webAuthnService.initiateRegistration(
|
|
me.id,
|
|
profile.user?.username ?? me.id,
|
|
profile.user?.name ?? undefined,
|
|
);
|
|
});
|
|
}
|
|
}
|