2023-07-27 05:31:52 +00:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
*/
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
2022-02-27 02:07:39 +00:00
|
|
|
import bcrypt from 'bcryptjs';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2022-09-20 20:33:11 +00:00
|
|
|
import type { UsersRepository, UserProfilesRepository } from '@/models/index.js';
|
2022-09-17 18:27:08 +00:00
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-06-25 02:04:33 +00:00
|
|
|
import { secureRndstr } from '@/misc/secure-rndstr.js';
|
2018-11-22 23:01:14 +00:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 02:20:58 +00:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 13:27:10 +00:00
|
|
|
requireCredential: true,
|
2018-11-22 23:01:14 +00:00
|
|
|
requireModerator: true,
|
|
|
|
|
2021-03-06 13:34:11 +00:00
|
|
|
res: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'object',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
properties: {
|
|
|
|
password: {
|
2022-01-18 13:27:10 +00:00
|
|
|
type: 'string',
|
|
|
|
optional: false, nullable: false,
|
2021-03-06 13:34:11 +00:00
|
|
|
minLength: 8,
|
2021-12-09 14:58:30 +00:00
|
|
|
maxLength: 8,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2022-01-18 13:27:10 +00:00
|
|
|
} as const;
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-02-20 04:15:40 +00:00
|
|
|
export const paramDef = {
|
2022-02-19 05:05:32 +00:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
|
|
},
|
|
|
|
required: ['userId'],
|
|
|
|
} as const;
|
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Injectable()
|
2023-08-17 12:20:58 +00:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 18:27:08 +00:00
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
@Inject(DI.userProfilesRepository)
|
|
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps) => {
|
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
if (user == null) {
|
|
|
|
throw new Error('user not found');
|
|
|
|
}
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2023-01-12 12:02:26 +00:00
|
|
|
if (user.isRoot) {
|
|
|
|
throw new Error('cannot reset password of root');
|
2022-09-17 18:27:08 +00:00
|
|
|
}
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2023-06-25 02:04:33 +00:00
|
|
|
const passwd = secureRndstr(8);
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
// Generate hash of password
|
|
|
|
const hash = bcrypt.hashSync(passwd);
|
2018-11-22 23:01:14 +00:00
|
|
|
|
2022-09-17 18:27:08 +00:00
|
|
|
await this.userProfilesRepository.update({
|
|
|
|
userId: user.id,
|
|
|
|
}, {
|
|
|
|
password: hash,
|
|
|
|
});
|
|
|
|
|
|
|
|
return {
|
|
|
|
password: passwd,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|