2023-07-27 00:31:52 -05:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-02-26 20:07:39 -06:00
|
|
|
import bcrypt from 'bcryptjs';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2023-09-15 00:28:29 -05:00
|
|
|
import type { UserProfilesRepository } from '@/models/_.js';
|
2022-09-17 13:27:08 -05:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-09-22 00:12:33 -05:00
|
|
|
import { UserAuthService } from '@/core/UserAuthService.js';
|
2017-08-28 10:20:47 -05:00
|
|
|
|
2018-07-16 14:36:44 -05:00
|
|
|
export const meta = {
|
2022-01-18 07:27:10 -06:00
|
|
|
requireCredential: true,
|
2018-11-01 22:49:08 -05:00
|
|
|
|
|
|
|
secure: true,
|
2022-02-18 23:05:32 -06:00
|
|
|
} as const;
|
2018-11-01 22:49:08 -05:00
|
|
|
|
2022-02-19 22:15:40 -06:00
|
|
|
export const paramDef = {
|
2022-02-18 23:05:32 -06:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
currentPassword: { type: 'string' },
|
|
|
|
newPassword: { type: 'string', minLength: 1 },
|
2023-09-22 00:12:33 -05:00
|
|
|
token: { type: 'string', nullable: true },
|
2021-12-09 08:58:30 -06:00
|
|
|
},
|
2022-02-18 23:05:32 -06:00
|
|
|
required: ['currentPassword', 'newPassword'],
|
2022-01-18 07:27:10 -06:00
|
|
|
} as const;
|
2018-07-16 14:36:44 -05:00
|
|
|
|
2022-09-17 13:27:08 -05:00
|
|
|
@Injectable()
|
2023-08-17 07:20:58 -05:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 13:27:08 -05:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
2023-09-22 00:12:33 -05:00
|
|
|
|
|
|
|
private userAuthService: UserAuthService,
|
2022-09-17 13:27:08 -05:00
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
2023-09-22 00:12:33 -05:00
|
|
|
const token = ps.token;
|
2022-09-17 13:27:08 -05:00
|
|
|
const profile = await this.userProfilesRepository.findOneByOrFail({ userId: me.id });
|
|
|
|
|
2023-09-22 00:12:33 -05:00
|
|
|
if (profile.twoFactorEnabled) {
|
|
|
|
if (token == null) {
|
|
|
|
throw new Error('authentication failed');
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
await this.userAuthService.twoFactorAuthenticate(profile, token);
|
|
|
|
} catch (e) {
|
|
|
|
throw new Error('authentication failed');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const passwordMatched = await bcrypt.compare(ps.currentPassword, profile.password!);
|
2022-09-17 13:27:08 -05:00
|
|
|
|
2023-09-22 00:12:33 -05:00
|
|
|
if (!passwordMatched) {
|
2022-09-17 13:27:08 -05:00
|
|
|
throw new Error('incorrect password');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Generate hash of password
|
|
|
|
const salt = await bcrypt.genSalt(8);
|
|
|
|
const hash = await bcrypt.hash(ps.newPassword, salt);
|
|
|
|
|
|
|
|
await this.userProfilesRepository.update(me.id, {
|
|
|
|
password: hash,
|
|
|
|
});
|
|
|
|
});
|
2017-08-28 10:20:47 -05:00
|
|
|
}
|
2022-09-17 13:27:08 -05:00
|
|
|
}
|