2023-07-27 07:31:52 +02:00
|
|
|
/*
|
2024-02-13 16:59:27 +01:00
|
|
|
* SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
2024-08-17 02:57:28 +02:00
|
|
|
import type { UsersRepository } from '@/models/_.js';
|
2022-09-17 20:27:08 +02:00
|
|
|
import { UserSuspendService } from '@/core/UserSuspendService.js';
|
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2023-01-12 13:02:26 +01:00
|
|
|
import { RoleService } from '@/core/RoleService.js';
|
2018-08-13 18:05:58 +02:00
|
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 03:20:58 +01:00
|
|
|
tags: ['admin'],
|
|
|
|
|
|
2022-01-18 14:27:10 +01:00
|
|
|
requireCredential: true,
|
2018-11-14 20:15:42 +01:00
|
|
|
requireModerator: true,
|
2023-12-27 07:08:59 +01:00
|
|
|
kind: 'write:admin:suspend-user',
|
2022-02-19 06:05:32 +01:00
|
|
|
} as const;
|
2018-08-17 12:17:23 +02:00
|
|
|
|
2022-02-20 05:15:40 +01:00
|
|
|
export const paramDef = {
|
2022-02-19 06:05:32 +01:00
|
|
|
type: 'object',
|
|
|
|
|
properties: {
|
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 15:58:30 +01:00
|
|
|
},
|
2022-02-19 06:05:32 +01:00
|
|
|
required: ['userId'],
|
2022-01-18 14:27:10 +01:00
|
|
|
} as const;
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2022-09-17 20:27:08 +02:00
|
|
|
@Injectable()
|
2023-08-17 14:20:58 +02:00
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> { // eslint-disable-line import/no-default-export
|
2022-09-17 20:27:08 +02:00
|
|
|
constructor(
|
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
|
|
private userSuspendService: UserSuspendService,
|
2023-01-12 13:02:26 +01:00
|
|
|
private roleService: RoleService,
|
2022-09-17 20:27:08 +02:00
|
|
|
) {
|
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
|
const user = await this.usersRepository.findOneBy({ id: ps.userId });
|
|
|
|
|
|
|
|
|
|
if (user == null) {
|
|
|
|
|
throw new Error('user not found');
|
|
|
|
|
}
|
|
|
|
|
|
2023-01-12 13:02:26 +01:00
|
|
|
if (await this.roleService.isModerator(user)) {
|
|
|
|
|
throw new Error('cannot suspend moderator account');
|
2022-09-17 20:27:08 +02:00
|
|
|
}
|
|
|
|
|
|
2024-08-17 02:57:28 +02:00
|
|
|
await this.userSuspendService.suspend(user, me);
|
2019-03-14 07:16:07 +01:00
|
|
|
});
|
|
|
|
|
}
|
2020-01-01 18:47:20 +01:00
|
|
|
}
|