73 lines
1.6 KiB
TypeScript
73 lines
1.6 KiB
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import bcrypt from 'bcryptjs';
|
|
import rndstr from 'rndstr';
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
import { UsersRepository, UserProfilesRepository } from '@/models/index.js';
|
|
import { DI } from '@/di-symbols.js';
|
|
|
|
export const meta = {
|
|
tags: ['admin'],
|
|
|
|
requireCredential: true,
|
|
requireModerator: true,
|
|
|
|
res: {
|
|
type: 'object',
|
|
optional: false, nullable: false,
|
|
properties: {
|
|
password: {
|
|
type: 'string',
|
|
optional: false, nullable: false,
|
|
minLength: 8,
|
|
maxLength: 8,
|
|
},
|
|
},
|
|
},
|
|
} as const;
|
|
|
|
export const paramDef = {
|
|
type: 'object',
|
|
properties: {
|
|
userId: { type: 'string', format: 'misskey:id' },
|
|
},
|
|
required: ['userId'],
|
|
} as const;
|
|
|
|
// eslint-disable-next-line import/no-default-export
|
|
@Injectable()
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
constructor(
|
|
@Inject(DI.usersRepository)
|
|
private usersRepository: UsersRepository,
|
|
|
|
@Inject(DI.userProfilesRepository)
|
|
private userProfilesRepository: UserProfilesRepository,
|
|
) {
|
|
super(meta, paramDef, async (ps) => {
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
if (user == null) {
|
|
throw new Error('user not found');
|
|
}
|
|
|
|
if (user.isAdmin) {
|
|
throw new Error('cannot reset password of admin');
|
|
}
|
|
|
|
const passwd = rndstr('a-zA-Z0-9', 8);
|
|
|
|
// Generate hash of password
|
|
const hash = bcrypt.hashSync(passwd);
|
|
|
|
await this.userProfilesRepository.update({
|
|
userId: user.id,
|
|
}, {
|
|
password: hash,
|
|
});
|
|
|
|
return {
|
|
password: passwd,
|
|
};
|
|
});
|
|
}
|
|
}
|