2022-09-18 03:27:08 +09:00
|
|
|
import { Inject, Injectable } from '@nestjs/common';
|
|
|
|
import { Endpoint } from '@/server/api/endpoint-base.js';
|
|
|
|
import { ModerationLogService } from '@/core/ModerationLogService.js';
|
|
|
|
import { UsersRepository } from '@/models/index.js';
|
|
|
|
import { GlobalEventService } from '@/core/GlobalEventService.js';
|
|
|
|
import { DI } from '@/di-symbols.js';
|
2019-01-30 17:25:56 +09:00
|
|
|
|
|
|
|
export const meta = {
|
2019-02-23 11:20:58 +09:00
|
|
|
tags: ['admin'],
|
|
|
|
|
2022-01-18 22:27:10 +09:00
|
|
|
requireCredential: true,
|
2019-01-30 17:25:56 +09:00
|
|
|
requireModerator: true,
|
2022-02-19 14:05:32 +09:00
|
|
|
} as const;
|
2019-01-30 17:25:56 +09:00
|
|
|
|
2022-02-20 13:15:40 +09:00
|
|
|
export const paramDef = {
|
2022-02-19 14:05:32 +09:00
|
|
|
type: 'object',
|
|
|
|
properties: {
|
|
|
|
userId: { type: 'string', format: 'misskey:id' },
|
2021-12-09 23:58:30 +09:00
|
|
|
},
|
2022-02-19 14:05:32 +09:00
|
|
|
required: ['userId'],
|
2022-01-18 22:27:10 +09:00
|
|
|
} as const;
|
2019-01-30 17:25:56 +09:00
|
|
|
|
2022-01-03 02:12:50 +09:00
|
|
|
// eslint-disable-next-line import/no-default-export
|
2022-09-18 03:27:08 +09:00
|
|
|
@Injectable()
|
|
|
|
export default class extends Endpoint<typeof meta, typeof paramDef> {
|
|
|
|
constructor(
|
|
|
|
@Inject(DI.usersRepository)
|
|
|
|
private usersRepository: UsersRepository,
|
|
|
|
|
|
|
|
private moderationLogService: ModerationLogService,
|
|
|
|
private globalEventService: GlobalEventService,
|
|
|
|
) {
|
|
|
|
super(meta, paramDef, async (ps, me) => {
|
|
|
|
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 silence admin');
|
|
|
|
}
|
|
|
|
|
|
|
|
await this.usersRepository.update(user.id, {
|
|
|
|
isSilenced: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
this.globalEventService.publishInternalEvent('userChangeSilencedState', { id: user.id, isSilenced: true });
|
|
|
|
|
|
|
|
this.moderationLogService.insertModerationLog(me, 'silence', {
|
|
|
|
targetId: user.id,
|
|
|
|
});
|
|
|
|
});
|
2019-01-30 17:25:56 +09:00
|
|
|
}
|
2022-09-18 03:27:08 +09:00
|
|
|
}
|